Post Reply 
Newton's method
11-06-2019, 04:38 PM
Post: #6
RE: Newton's method
Hello,
the built in routine 'newton' (you find a complete description following Tim's advice) can be used to study the convergence of the iteration-method (may be that is what you want?) step by step
by looking at the result after only one iteration per function-call:
change to CAS , then
example:
f(x)= x^2-3
wanted: one root of f , estimated value could be 1.3
first input
newton(x^2-3,x,1.3,1)
enter key
output: 1.8038... (this is x_1 in the newton's series)
input
newton(x^2-3,x,Ans,1)
enter key
output: 1.73347958012 (this is x_2)
enter key
output: 1.73347958012 (this is x_3) and so on


hope that helps
Thomas
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Newton's method - hazimrassam - 11-05-2019, 09:09 PM
RE: Newton's method - Tim Wessman - 11-06-2019, 01:12 AM
RE: Newton's method - hazimrassam - 11-06-2019, 06:48 AM
RE: Newton's method - Wes Loewer - 11-06-2019, 04:42 PM
RE: Newton's method - CyberAngel - 11-06-2019, 06:29 PM
RE: Newton's method - Tim Wessman - 11-06-2019, 01:39 PM
RE: Newton's method - DrD - 11-06-2019, 04:14 PM
RE: Newton's method - ThomasA - 11-06-2019 04:38 PM



User(s) browsing this thread: 1 Guest(s)