How do you approximate sqrt(17.02)17.02?

3 Answers
Nov 1, 2016

sqrt(17.02)~~color(green)4.12550817.024.125508

Explanation:

Possibly NOT the intended method since this was asked under "Using Newton's Method"
We could take 44 as a really gross estimate of sqrt(17.02)17.02 since 4^2=1642=16 is closer to 17.0217.02 than 5^2=2552=25

We know that 44 really is too small though,
so lets suppose our answer is 4+epsilon4+ε (with abs(epsilon) < 1|ε|<1)
color(white)("XXX")(4+epsilon)^2=17.02XXX(4+ε)2=17.02

color(white)("XXX")16+8epsilon+epsilon^2=17.02XXX16+8ε+ε2=17.02

color(white)("XXX")8epsilon =1.02-epsilon^2XXX8ε=1.02ε2

color(white)("XXX")epsilon = 1.02/8-epsilon^2/8XXXε=1.028ε28

Since abs(epsilon) < 1|ε|<1 then epsilon^2ε2 won't be very big and epsilon^2/8ε28 will be even smaller.
So as an initial estimate for epsilonε we could try using
color(white)("XXX")epsilon' = 1.01/8=0.12625
in place of epsilon on the right side of this equation.

color(white)("XXX")epsilon ~~(1.02-(0.12625)^2)/8

(I used a calculator from this point on)

color(white)("XXX")epsilon ~~0.125508

4+epsilon = 4.125508

Testing this value as the root of 17.02
color(white)("XXX")4.125508^2~~17.01981
which (to my mind) is close enough

Nov 1, 2016

sqrt(17.02)~~4.125531 (after 20 iterations using the Newton Method)

Explanation:

If you wanted the answer using Newton's Method; here it is
as the product of some iterative expressions in a spreadsheet:
enter image source here

Nov 1, 2016

4.1255302699 to 9 Decimal Places

Explanation:

sqrt(17.02) is a solution to the equation
x^2=17.02 => x^2-17.02 =0

Let f(x)=x^2-17.02 then f'(x)=2x and we can use Newton's method using the iterative formula;

x_n = x_(n-1) - f(x_(n-1)) / (f'(x_(n-1)))

If we start with x_0=4 , then we can tabulate the results as follows (in this case using Excel);

enter image source here

So we see that very rapidly the method converges to a solution 4.1255302699 to 9 Decimal Places