Question: How do I solve using Newton's Method to calculate the root(3) to 6 decimal places. Consider the function f(x) = (x^2) - 3

To solve this, I got this far but am not sure where to go next?

 

f2 := x^2 - 3;
f2d := diff(f2, x);
                              2    
                             x  - 3
                              2 x

set value for x0, number precision

x0 := 3;
eps := 0.1*10^(-5);
                               3
                            0.000001
 

Please Wait...