Algebra · Iteration
1 / 9
Using an iterative formula
How x_{n+1} = g(x_n) feeds each estimate into the next, the full-precision discipline (never round mid-chain), and what the settling sequence tells you about the equation's root.
Algebra · Iteration
Using an iterative formula
How x_{n+1} = g(x_n) feeds each estimate into the next, the full-precision discipline (never round mid-chain), and what the settling sequence tells you about the equation's root.
Why it works
An iterative formula is a term-to-term rule for ESTIMATES:says: feed the current estimate in, get a better one out. Each pass through the machine:
So and to 3 decimal places. Note the discipline: the FULL calculator value feeds the next step — round only what you WRITE DOWN, never what you carry forward. (Feeding 2.224 back in gives a subtly wrong , and the error compounds.) On a calculator: type the seed, press =, then build the formula around ANS and press = repeatedly.
Read the subscripts as positions. means the third estimate — compute exactly as many steps as asked, feeding each NEW value in (an off-by-one, or re-feeding , is the standard slip).
Why does this find a root? If the sequence settles at some value , then feeding it in returns itself: — cubing, , i.e. . A settled iteration IS a solution of the matching equation. The values are closing in on the root of (which the sign-change test located between 2 and 3).
The iterates are estimates, not the exact answer. is close to the root, not equal to it — the true root is irrational. More iterations sharpen the estimate; a sign-change check at the appropriate interval certifies any rounded claim.