I want to solve multivariable equation

5 vues (au cours des 30 derniers jours)
KWI MI KIM
KWI MI KIM le 21 Août 2019
I'd like to solve the expression below about x.
x/y*((1+(r-1)/2*y^2)/(1+(r-1)/2*x^2))^((r+1)/2*(r-1))=a/b
x = ...

Réponses (1)

Ted Shultz
Ted Shultz le 21 Août 2019
This is how you would sove this:
syms x y r a b
eqn =(x/y*((1+(r-1)/2*y^2)/(1+(r-1)/2*x^2))^((r+1)/2*(r-1))) == a/b
solve(eqn,x)
but I didn't find a solution...

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by