How do you find a one-decimal place approximation for root3 15315?

1 Answer
Oct 23, 2015

Find 2 < root(3)(15) < 32<315<3, then using 2.52.5 as a first approximation and one step of Newton's method, find that this is already good to one decimal place.

Explanation:

Note that 2^3 = 8 < 15 < 27 = 3^323=8<15<27=33

So 2 < root(3)(15) < 32<315<3

To find an approximation for the cube root of a number nn, choose a reasonable first approximation a_0a0 and apply the following formula (from Newton's method), repeatedly if necessary:

a_(i+1) = a_i + (n - a_i^3)/(3a_i^2)ai+1=ai+na3i3a2i

In our case n = 15n=15 and choose a_0 = 2.5a0=2.5 since the cube root is somewhere between 22 and 33.

Then:

a_1 = a_0 + (n - a_0^3)/(3a_0^2) = 2.5 + (15 - 2.5^3)/(3*2.5^2)a1=a0+na303a20=2.5+152.5332.52

=2.5 + (15-15.625)/18.75 = 2.5 - 0.625/18.75 = 2.4dot(6)dot(6)=2.5+1515.62518.75=2.50.62518.75=2.4.6.6

So our first approximation was already good to one decimal place.