I want to solve multivariable equation

7 次查看(过去 30 天)
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 = ...

回答(1 个)

Ted Shultz
Ted Shultz 2019-8-21
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...

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by