2.6 Numerical solution of equations
- Syllabus
- 9709–2028–2029
- Topic
- 2.6
- Level
- AS
Rewrite the equation as f(x)=0 and locate where the graph y=f(x) crosses the x-axis, or plot the two sides separately and locate their intersection. The graph supplies an approximate root or a search interval.
If $f$ is continuous on $[a,b]$ and $f(a)f(b)<0$, then at least one root lies in $(a,b)$. Evaluate consecutive integers or progressively closer endpoints when requested.
For a continuous f, f(1)<0 and f(2)>0 locates at least one root between 1 and 2. State the function values or their signs, not just the interval.
A graph gives visual approximate evidence; a sign-change bracket gives endpoint evidence. A narrower bracket gives a tighter location but remains an interval, not the exact root.
A sign change guarantees at least one root under continuity, not uniqueness. A repeated/touching root may have no sign change, so graphical evidence can still matter.
Iteration replaces x by x_{n+1}=g(x_n). A fixed point α satisfies g(α)=α, corresponding to a root of the rearranged equation.
Choose a starting value in the stated interval, compute enough figures during iteration, and stop using a tolerance on successive values or the residual. Different rearrangements can converge differently.
For x=cos x, starting x₀=0 gives a sequence approaching about 0.739; starting values should remain in a region where g behaves stably.
A few stable-looking digits do not prove convergence, and iteration can diverge or enter a cycle even when the equation has a root.
For xn+1=F(xn), a convergent limit α must satisfy α=F(α). Rearrange that fixed-point equation to confirm it is the original equation whose root is required, including any domain restrictions.
Use the stated starting value, keep guard digits, tabulate n and xn, apply the same formula repeatedly, watch for settling/divergence/cycling, and continue until successive values justify the prescribed rounded answer.
To solve $x^3+x-1=0$, the given rearrangement $x_{n+1}=(1-x_n)^{1/3}$ has fixed-point equation $x^3=1-x$, hence $x^3+x-1=0$. Run it only from the given/appropriate start.
For a requested number of decimal places, obtain successive values that round consistently at that precision and substitute the reported approximation into the original equation as a residual sense-check when practical.
An algebraically related iteration may fail to converge or may approach a different root. The derivative condition for convergence is explicitly not required in this syllabus; judge only from the given task and observed sequence behaviour.