1. Given the recurrence relation ak = 5ak - 1 + 1, kÎ Z, k ³ 3, a2 = 1.
2. Given the recurrence ak = (1/2)(ak - 1 + r / ak - 1), kÎ Z, k ³ 1, one can find the square root of any positive real number r by making an initial guess as to what ak - 1 might be. Say we want to find the square root of 12 and we make an initial guess of a0 = 3. (Known as the Newton-Raphson iterative method.)
|
Write out the next four terms of this sequence to determine the square
root of 12 | |
|
a0 = |
3 |
|
a1 = (1/2)(3 + 12 / 3) = |
|
|
a2 = = |
|
|
a3 = = |
|
|
a4 = = |
|