The Change of Sign Principle: For a continuous function , if and have opposite signs, at least one root exists in the interval . This is the foundation for verifying the accuracy of numerical approximations.
Linear Approximation: Methods like the Newton-Raphson method use the tangent line at a point to estimate where the function crosses the axis, assuming the curve is locally linear.
Summation of Parts: Numerical integration, such as the Trapezium Rule, works by dividing a complex area into simpler geometric shapes (trapezoids) whose areas are easily calculated and summed.
Newton-Raphson Iteration: Uses the formula to rapidly converge on a root. It requires the function to be differentiable and the initial guess to be sufficiently close to the root.
Fixed-Point Iteration: Involves rearranging into the form . The iterative formula is used to find the root, provided the gradient near the root.
Trapezium Rule: Approximates using strips of width . The formula is .
| Feature | Newton-Raphson | Fixed-Point Iteration () |
|---|---|---|
| Requirement | Requires derivative | Requires algebraic rearrangement |
| Convergence | Usually very fast (quadratic) | Depends on the gradient of |
| Failure Case | Fails if (stationary point) | Fails if the sequence diverges |
Check the Context: Always ensure your final answer makes sense in the real world. For example, if represents the number of people, round to the nearest whole number even if the numerical method gives a decimal.
Verification of Accuracy: To show a root is correct to decimal places, check for a sign change at the upper and lower bounds of that rounding interval (e.g., for , check and ).
Calculator Settings: When dealing with trigonometric functions in numerical methods, ensure your calculator is in Radians mode unless the problem explicitly specifies degrees.
Iteration History: Always write down each step of your iteration () to show the process of convergence and avoid losing marks for simple calculation errors.