Hi!
I'm newbie with solve please help me what I doing wrong!
I do: (a,l,x) = var('a,l,x') solve(1/(a(x-1))==(sqrt(x^2+1^2)/2/l),x) --> [x == (sqrt(x^2 + 1)a + 2l)/(sqrt(x^2 + 1)a)]
Why x result contain x itself!? It's not ture for any x.
If I set a,l params (a,l,x) = var('a,l,x') a=24 l=1.28 solve(1/(a(x-1))==(sqrt(x^2+1^2)/2/l),x) --> [x == 1/75(75*sqrt(x^2 + 1) + 8)/sqrt(x^2 + 1)]
So result still contain x itself... I'm confused about it.
Thanks for help.