
ALi A.
asked 11/23/21Newton’s Method. The golden ratio
Newton’s Method. The golden ratio is the positive root of the equation
Starting with
use Newton’s method to calculate rational approximations
and
Write your estimates as rational numbers. How close to
is
1 Expert Answer

William W. answered 11/23/21
Experienced Tutor and Retired Engineer
Newton's method is really just taking a function and "pretending" it is really just a line instead of some sort of curved graph. As a line, it satisfies the format y - y1 = m(x - x1) which is the point-slope form of a line.
But so that we don't get confused, let's rename our points. Instead of calling the point (x1, y1), let's call it (x2, y2) and instead of using the point (x, y), let's call it (x1, y1). That turns the point-slope equation into:
y1 - y2 = m(x1 - x2)
Since we are trying to find the "zero", we can say that the y2 we are seeking is equal to zero, so set y2 = 0 so:
y1 - 0 = m(x1 - x2)
But y1 = f(x1) and m = f '(x1) so:
f(x1) = f '(x1)(x1 - x2)
f(x1)/f '(x1) = x1 - x2
We are trying to find the value of x when y = zero so we are looking for the x2 (since we made y2 = 0)
So solving for x2, we get:
x2 = x1 - f(x1)/f '(x1)
Now, we just arbitrarily pick a value (hopefully it's close to the zero) for x1 to start iterating. In this case we are told to start with our initial "x" as x = 1, so we set x1 = 1.
Since f(x) = x2 - x - 1, then f '(x) = 2x - 1
So for x1 = 1, f(1) = (1)2 - (1) - 1 = -1 and f '(1) = 2(1) - 1 = 1 and plugging those in gives:
x2 = x1 - f(x1)/f '(x1)
x2 = 1 - (-1)/(1) = 2
So, our second iteration of x (aka x2) is 2. To find our 3rd iteration of x, we tweak our equation a bit from:
x2 = x1 - f(x1)/f '(x1) into
x3 = x2 - f(x2)/f '(x2)
Using x2 = 2 we get f(x2) = f(2) = (2)2 - (2) - 1 = 1 and f '(2) = 2(2) - 1 = 3 and plugging those in gives:
x3 = 2 - 1/3 = 6/3 - 1/3 = 5/3
So, our third iteration of x (aka x3) is 5/3. To find our 4th iteration of x, we tweak our equation a bit from:
x3 = x2 - f(x2)/f '(x2) into
x4 = x3 - f(x3)/f '(x3)
Using x3 = 5/3 we get f(x3) = f(5/3) = (5/3)2 - (5/3) - 1 = 25/9 - 5/3 - 1 = 25/9 - 15/9 - 9/9 = 1/9 and f '(5/3) = 2(5/3) - 1 = 10/3 - 1 = 10/3 - 3/3 = 7/3 and plugging those in gives:
x4 = 5/3 - (1/9)/(7/3) = 5/3 - (1/9)(3/7) = 5/3 - 1/21 = 35/21 - 1/21 = 34/21
So, our fourth iteration of x (aka x4) is 34/21. To find our 5th iteration of x, we tweak our equation a bit from:
x4 = x3 - f(x3)/f '(x3) into
x5 = x4 - f(x4)/f '(x4)
Using x4 = 34/21 we get f(x4) = f(34/21) = (34/21)2 - (34/21) - 1 = 1156/441 - 34/21 - 1 = 1156/441 - 714/441 - 441/441 = 1/441 and f '(34/21) = 2(34/21) - 1 = 68/21 - 1 = 68/21 - 21/21 = 47/21 and plugging those in gives:
x5 = 34/21 - (1/441)/(47/21) = 34/21 - (1/441)(21/47) = 34/21 - 1/987 = 1598/987 - 1/987 = 1597/987
Comparing the "closeness" of x5: 1597/987 is 1.618034448 and (1 + √5)/2 = 1.618033989 so they are 4.59x10-7 off from each other or 2.84x10-9% so pretty close!!
Still looking for help? Get the right answer, fast.
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Doug C.
Take a look here. Hopefully you can follow along and do your own calculations: desmos.com/calculator/eykyjzlcuv11/23/21