Unexpected solve() result
Hi,
Let
f(x)=−12x+√x2+25+4
I would like to find the first derivative of f(x) and then the value of x when f′(x)=0.
This is what I did:
f(x)=(x^2+25)^(1/2)+(1/2)*(8-x)
ans=f(x).diff(x)==0
print ans.solve(x)
But that gives the answer:
x=12√x2+25
I had to change the last line to:
print ((ans.solve(x)[0]*2)^2).solve(x)
To give the correct answer:
x=−53√3,x=53√3
Why do I have to do that?