Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
2

Unexpected solve() result

asked 14 years ago

trk gravatar image

updated 14 years ago

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=12x2+25

I had to change the last line to:

print ((ans.solve(x)[0]*2)^2).solve(x)

To give the correct answer:

x=533,x=533

Why do I have to do that?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 14 years ago

kcrisman gravatar image

Try

sage: ans.solve(x,to_poly_solve=True)
[x == 5/3*sqrt(3)]

Another reminder to make sure that the global solve? has the same information about this option as the local x.solve?. Though in this case,

sage: ans.solve?

would give you information about this option.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 14 years ago

Seen: 472 times

Last updated: Feb 21 '11