Finding roots (Iterations and Newton Raphson method) Flashcards
How do you show that roots lie between certain point?
sub in the values into the equation
a change in sign means a < root < b
What is the equation for finding the root? Iterations
1/2(xo + a/xo)
How do you find the root of an equation? Iterations
put a number in and set as the ans
put in the equation with x as ans
continue clicking = until the number stays constant
What is the equation for the Newton Raphson method?
Xn+1 = Xn - f(x)/fâ(x)
How do you calculate roots using Newton Raphson method?
rearrange f(x) to =0
differentiate to get fâ(x)
pick an initial solution for x
sub in
Does the Newton Raphson method work at stationary point?
No, is a guess for x is at a stationary point, Newton Raphson method fails