Ask Your Question
1

Newton method for one variable

asked 8 years ago

logomath gravatar image

updated 8 years ago

I try to use 'solve' for nonlinear eauqtions in one variable, but the answer is tautological or "cannot evaluate symbolic expression numerically" if I add "explicit_solutions=True". Is Newton method (or any other, like secant method) implemented in Sage?

Ex: sage: x=var('x') sage: (x-cos(x)).solve(x)

[x == cos(x)]

while I would expect x= 0.739085

Preview: (hide)

Comments

1

You can find it with find_root(x-cos(x),0,1)

mforets gravatar imagemforets ( 8 years ago )

thank you!

logomath gravatar imagelogomath ( 8 years ago )

It appears that find_root doesn't allow arbitrary precision. Is there another way?

logomath gravatar imagelogomath ( 8 years ago )

You might try mpmath, see using mpmath.findroot.

mforets gravatar imagemforets ( 8 years ago )

Ok,thank you.

logomath gravatar imagelogomath ( 8 years ago )

1 Answer

Sort by » oldest newest most voted
1

answered 8 years ago

FrédéricC gravatar image

solve is for symbolic or algebraic solutions. Use that

sage: find_root(x-cos(x),0,1)
0.7390851332151559
Preview: (hide)
link

Comments

Oh, thank you!

logomath gravatar imagelogomath ( 8 years ago )

It appears that find_root doesn't allow arbitrary precision. Is there another way?

logomath gravatar imagelogomath ( 8 years ago )

Your Answer

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

Add Answer

Question Tools

1 follower

Stats

Asked: 8 years ago

Seen: 947 times

Last updated: Aug 22 '16