EuraStudy
Notes/Further Mathematics/Numerical methods
Notes · Further MathematicsUK · A-Levels

Numerical methods

Numerical methods give approximate answers when an exact one is unavailable. This topic extends the trapezium rule and Newton-Raphson method of A-Level Mathematics with the mid-ordinate and Simpson's rules for integration, Euler's step-by-step methods for differential equations, and iterative root-finding. Throughout, the emphasis is on applying a method carefully and commenting honestly on its accuracy.

4 sections·~12 min reading time·3 competencies·Level Standard 2 · Advanced 2

T·101010 / 13
Exam profile
AO1 · Apply numerical integration rules and iterative methods accuratelyAO2 · Justify the choice of method and comment on accuracy and errorAO3 · Use numerical methods to solve problems that have no closed-form solution
Operators:estimatefindshow thathenceusededuce

basic level

AS Further Mathematics covers the mid-ordinate rule and simple iterative root-finding.

higher level

The full A-Level adds Simpson's rule, Euler and improved-Euler methods for differential equations, and a fuller treatment of error and accuracy.

Depth

Reading depth: In depth

Text

Text size: Standard

Contents · 4 sections▾
  1. Numerical methods
    • 01Numerical integration: mid-ordinate and Simpson's rules◐
    • 02Accuracy and error of numerical integration●
    • 03Step-by-step solution of differential equations●
    • 04Numerical solution of equations◐
§ 01

Numerical integration: mid-ordinate and Simpson's rules#

●●○StandardLPAQA 7367 (Numerical methods)LPDfE Further Mathematics

Mid-ordinate heights under a curve

Function graph, y = 1/(1+x) = 1/(1 + x), 4 marked pointsGraph of y = 1/(1+x), y-intercept at y = 1, decreasing, on the interval x from 0 to 40.511.522.533.540.20.40.60.81y = 1/(1+x)yx
Fig. 1The mid-ordinate rule uses the heights of the curve at the strip midpoints (drop lines) as the rectangle heights.

Key points

When a definite integral cannot be evaluated exactly, its value is estimated by replacing the curve with simple shapes over each of nnn equal strips of width h=b−anh = \dfrac{b-a}{n}h=nb−a​. The trapezium rule (recap from A-Level Mathematics) joins the tops of the ordinates with straight lines; the mid-ordinate rule uses rectangles whose heights are the values of the function at the midpoints of the strips. The mid-ordinate rule is ∫aby dx≈h(y1/2+y3/2+⋯+yn−1/2)\displaystyle\int_a^b y\,\mathrm{d}x \approx h\big(y_{1/2} + y_{3/2} + \cdots + y_{n-1/2}\big)∫ab​ydx≈h(y1/2​+y3/2​+⋯+yn−1/2​), summing the mid-ordinates.
Simpson's rule is more accurate again: it fits a parabola through each consecutive triple of ordinates, which follows the curvature of the graph rather than approximating it by straight lines. It requires an even number of strips and weights the ordinates in the pattern 1,4,2,4,…,4,11, 4, 2, 4, \dots, 4, 11,4,2,4,…,4,1: ∫aby dx≈h3(y0+yn+4(y1+y3+⋯ )+2(y2+y4+⋯ ))\displaystyle\int_a^b y\,\mathrm{d}x \approx \dfrac{h}{3}\big(y_0 + y_n + 4(y_1 + y_3 + \cdots) + 2(y_2 + y_4 + \cdots)\big)∫ab​ydx≈3h​(y0​+yn​+4(y1​+y3​+⋯)+2(y2​+y4​+⋯)). The end ordinates carry weight 111, the odd-indexed ones weight 444, and the even interior ones weight 222.
Applying any of these rules is a matter of careful tabulation: compute the strip width hhh, list the ordinates in order, and combine them with the correct weights. The commonest arithmetic error is a miscount of ordinates or a misplacement of the 444s and 222s in Simpson's rule, so it is worth setting the values out in a table with the weights written above them.
Which rule to use depends on the accuracy required and the data available. Simpson's rule is far more accurate for a smooth curve and should be preferred when the number of strips is even; the mid-ordinate rule is simple and often better than the trapezium rule; the trapezium rule is the crudest. All three improve as nnn increases and hhh shrinks, and the choice, together with a comment on likely accuracy, is itself examined.
∫aby dx≈h(y1/2+y3/2+⋯+yn−1/2)(mid-ordinate rule)\int_a^b y\,\mathrm{d}x \approx h\big(y_{1/2} + y_{3/2} + \cdots + y_{n-1/2}\big) \quad (\text{mid-ordinate rule})∫ab​ydx≈h(y1/2​+y3/2​+⋯+yn−1/2​)(mid-ordinate rule)

Mid-ordinate rule

Rectangles with heights taken at the midpoints of the strips.

∫aby dx≈h3(y0+yn+4 ⁣∑oddyi+2 ⁣∑evenyi)(Simpson’s rule,n even)\int_a^b y\,\mathrm{d}x \approx \frac{h}{3}\Big(y_0 + y_n + 4\!\sum_{\text{odd}} y_i + 2\!\sum_{\text{even}} y_i\Big) \quad (\text{Simpson's rule}, n \text{ even})∫ab​ydx≈3h​(y0​+yn​+4odd∑​yi​+2even∑​yi​)(Simpson’s rule,n even)

Simpson's rule

Fits parabolas; requires an even number of strips.

Worked example

Simpson's rule with four strips

Estimate ∫021+x3 dx\displaystyle\int_0^2 \sqrt{1 + x^3}\,\mathrm{d}x∫02​1+x3​dx using Simpson's rule with four strips.

  1. 01Strip width and ordinates

    h=2−04=0.5h = \dfrac{2-0}{4} = 0.5h=42−0​=0.5; the ordinates at x=0,0.5,1,1.5,2x = 0, 0.5, 1, 1.5, 2x=0,0.5,1,1.5,2 are y0=1y_0 = 1y0​=1, y1=1.125=1.0607y_1 = \sqrt{1.125} = 1.0607y1​=1.125​=1.0607, y2=2=1.4142y_2 = \sqrt{2} = 1.4142y2​=2​=1.4142, y3=4.375=2.0917y_3 = \sqrt{4.375} = 2.0917y3​=4.375​=2.0917, y4=9=3y_4 = \sqrt{9} = 3y4​=9​=3.

  2. 02Apply the weights

    ∫≈0.53(y0+y4+4(y1+y3)+2y2)=16(1+3+4(1.0607+2.0917)+2(1.4142))\displaystyle\int \approx \frac{0.5}{3}\big(y_0 + y_4 + 4(y_1 + y_3) + 2y_2\big) = \frac{1}{6}\big(1 + 3 + 4(1.0607 + 2.0917) + 2(1.4142)\big)∫≈30.5​(y0​+y4​+4(y1​+y3​)+2y2​)=61​(1+3+4(1.0607+2.0917)+2(1.4142)).

    ∫≈16(4+4(3.1524)+2.8284)\int \approx \frac{1}{6}\big(4 + 4(3.1524) + 2.8284\big)∫≈61​(4+4(3.1524)+2.8284)
  3. 03Evaluate

    =16(4+12.6096+2.8284)=19.4386=3.2397= \dfrac{1}{6}\big(4 + 12.6096 + 2.8284\big) = \dfrac{19.438}{6} = 3.2397=61​(4+12.6096+2.8284)=619.438​=3.2397.

  4. 04State to 3 d.p.

    The estimate is 3.2403.2403.240 (3 d.p.).

Result: ∫021+x3 dx≈3.240\displaystyle\int_0^2 \sqrt{1 + x^3}\,\mathrm{d}x \approx 3.240∫02​1+x3​dx≈3.240.

Exam focus

  • Tabulate the ordinates and apply the rule's weights carefully; for Simpson's rule check that the number of strips is even.
  • State the strip width hhh explicitly and give the estimate to a sensible accuracy, commenting on which rule is more reliable.

Typical mistakes

  • Using Simpson's rule with an odd number of strips, or misplacing the 444 and 222 weights.
  • Confusing the number of strips with the number of ordinates (there is always one more ordinate than strips).

Active revision

Use Simpson's rule with four strips to estimate ∫021+x3 dx\displaystyle\int_0^2 \sqrt{1 + x^3}\,\mathrm{d}x∫02​1+x3​dx, giving your answer to three decimal places.

Active recall

Recall the key points — then reveal.

Sources: Further mathematics: AS and A level content (GCE subject content) (Department for Education)

§ 02

Accuracy and error of numerical integration#

●●●AdvancedLPAQA 7367 (Numerical methods)LPDfE Further Mathematics

Key points

Every numerical integration rule gives an approximation, and understanding the error is part of using it responsibly. As a general principle, halving the strip width improves the estimate, and the rules differ in how fast: the trapezium and mid-ordinate rules have errors that scale roughly with h2h^2h2, while Simpson's rule has an error scaling with h4h^4h4, so Simpson's rule improves dramatically faster as the strips are refined.
The sign of the error can often be predicted from the curvature. On a curve that is concave (bending downwards), the trapezium rule underestimates the area because its chords lie below the curve, while the mid-ordinate rule overestimates; on a convex (upward-bending) curve the signs reverse. Interestingly, the trapezium and mid-ordinate errors tend to be of opposite sign and roughly in the ratio 2:12:12:1, which is the fact that makes Simpson's rule — a weighted blend of the two — so accurate.
Simpson's rule is exact for any cubic (and hence for quadratics and linear functions), because a parabola through three points already reproduces a cubic's integral over a double strip. This is why it is the method of choice for smooth curves: for polynomials of degree three or less it makes no error at all, and for smoother functions its error is very small. Knowing this exactness result lets you argue about accuracy rather than merely quoting a number.
In an exam you may be asked to increase the number of strips and comment on how the estimate changes, or to state which rule is likely to be the most accurate and why. A good answer refers to the curvature of the graph and to the order of the error (h2h^2h2 versus h4h^4h4), and recognises that the true value lies between an over- and an under-estimate when one of each is available. Numerical answers should always be given to an accuracy consistent with the method — quoting ten digits from a four-strip estimate is dishonest.
errortrap, errormid∼h2,errorSimpson∼h4\text{error}_{\text{trap}},\ \text{error}_{\text{mid}} \sim h^2, \qquad \text{error}_{\text{Simpson}} \sim h^4errortrap​, errormid​∼h2,errorSimpson​∼h4

Orders of error

Simpson's rule improves far faster as the strips are refined.

Worked example

Trapezium and mid-ordinate as bounds

Estimate ∫0211+x dx\displaystyle\int_0^2 \frac{1}{1+x}\,\mathrm{d}x∫02​1+x1​dx using the trapezium rule with two strips, and comment (the exact value is ln⁡3=1.0986\ln 3 = 1.0986ln3=1.0986).

  1. 01Ordinates

    h=1h = 1h=1; ordinates at x=0,1,2x = 0, 1, 2x=0,1,2 are y0=1y_0 = 1y0​=1, y1=12y_1 = \tfrac12y1​=21​, y2=13y_2 = \tfrac13y2​=31​.

  2. 02Trapezium estimate

    ∫≈h2(y0+y2+2y1)=12(1+13+2⋅12)=12⋅73=76≈1.1667\displaystyle\int \approx \frac{h}{2}\big(y_0 + y_2 + 2y_1\big) = \frac{1}{2}\big(1 + \tfrac13 + 2\cdot\tfrac12\big) = \frac{1}{2}\cdot\frac{7}{3} = \frac{7}{6} \approx 1.1667∫≈2h​(y0​+y2​+2y1​)=21​(1+31​+2⋅21​)=21​⋅37​=67​≈1.1667.

    ∫≈76≈1.1667\int \approx \frac{7}{6} \approx 1.1667∫≈67​≈1.1667
  3. 03Compare with the exact value

    The curve y=11+xy = \tfrac{1}{1+x}y=1+x1​ is convex (bends upward), so the trapezium chords lie above the curve and the estimate 1.16671.16671.1667 is an overestimate of the true 1.09861.09861.0986.

  4. 04Comment

    A finer partition or Simpson's rule would reduce the error; the mid-ordinate rule would give an underestimate, bracketing the true value.

Result: Trapezium estimate 76≈1.167\tfrac{7}{6} \approx 1.16767​≈1.167, an overestimate of ln⁡3=1.099\ln 3 = 1.099ln3=1.099.

Exam focus

  • Comment on accuracy by referring to the curvature (over- or under-estimate) and the order of error (h2h^2h2 for trapezium/mid-ordinate, h4h^4h4 for Simpson's).
  • State that Simpson's rule is exact for cubics, and give estimates to an accuracy the method can support.

Typical mistakes

  • Claiming more accuracy than the method warrants by quoting too many decimal places.
  • Getting the direction of the trapezium error wrong by not considering whether the curve is concave or convex.

Active revision

For ∫01e−x2 dx\displaystyle\int_0^1 \mathrm{e}^{-x^2}\,\mathrm{d}x∫01​e−x2dx, estimate the integral with the trapezium rule and with the mid-ordinate rule using two strips, and explain why the true value lies between them.

Active recall

Recall the key points — then reveal.

Sources: AQA A-level Further Mathematics 7367 specification (AQA)

§ 03

Step-by-step solution of differential equations#

●●●AdvancedLPAQA 7367 (Numerical methods)LPDfE Further Mathematics

Euler's method drifts from the true curve

True solution versus Euler stepsGeometric figure, true y = e^x, start, Euler (h=0.5)true y = exstartEuler(h = 0.5)xy
Fig. 2For dydx=y\tfrac{\mathrm{d}y}{\mathrm{d}x}=ydxdy​=y, y(0)=1y(0)=1y(0)=1, the Euler polyline (step 0.50.50.5) falls below the true solution y=exy=\mathrm{e}^xy=ex.

Key points

When a first-order differential equation dydx=f(x,y)\dfrac{\mathrm{d}y}{\mathrm{d}x} = f(x,y)dxdy​=f(x,y) cannot be solved exactly, its solution can be built up numerically from a starting point. Euler's method uses the gradient at the current point to step forward a small distance hhh: yn+1=yn+h f(xn,yn)y_{n+1} = y_n + h\,f(x_n, y_n)yn+1​=yn​+hf(xn​,yn​), with xn+1=xn+hx_{n+1} = x_n + hxn+1​=xn​+h. Geometrically, it follows the tangent line for one step, then re-evaluates the gradient and repeats — approximating the solution curve by a chain of short straight segments.
Because Euler's method uses the gradient only at the start of each step, it systematically drifts away from the true curve, and the error accumulates as the steps proceed. The figure of the true curve against the Euler polyline shows this drift clearly: the polyline lies below a convex solution because each tangent step undershoots the curving path. Reducing the step size hhh reduces the error but requires more steps and more arithmetic.
The improved Euler (or mid-point) method is more accurate for the same step size. It first takes a trial half-step to estimate the gradient at the middle of the interval, then uses that better gradient to take the full step: yn+1=yn+h f ⁣(xn+h2, yn+h2f(xn,yn))y_{n+1} = y_n + h\,f\!\left(x_n + \tfrac{h}{2},\ y_n + \tfrac{h}{2}f(x_n, y_n)\right)yn+1​=yn​+hf(xn​+2h​, yn​+2h​f(xn​,yn​)). Sampling the gradient nearer the middle of the step captures the curvature better and roughly squares the accuracy gain, at the cost of two function evaluations per step.
Carrying out either method is a disciplined, repetitive calculation, and setting the work out in a table of xnx_nxn​, yny_nyn​ and f(xn,yn)f(x_n, y_n)f(xn​,yn​) keeps it accurate. The examinable understanding is that these are approximations whose error depends on the step size and on the method, and that a smaller hhh or the improved method buys more accuracy — a trade-off between effort and precision that mirrors the choice of integration rule in the earlier sections.
yn+1=yn+h f(xn,yn)(Euler)y_{n+1} = y_n + h\,f(x_n, y_n) \quad (\text{Euler})yn+1​=yn​+hf(xn​,yn​)(Euler)

Euler's method

Step forward along the tangent using the gradient at the current point.

yn+1=yn+h f ⁣(xn+h2, yn+h2f(xn,yn))(improved Euler)y_{n+1} = y_n + h\,f\!\left(x_n + \tfrac{h}{2},\ y_n + \tfrac{h}{2}f(x_n, y_n)\right) \quad (\text{improved Euler})yn+1​=yn​+hf(xn​+2h​, yn​+2h​f(xn​,yn​))(improved Euler)

Improved Euler (mid-point) method

Uses the gradient estimated at the middle of the step for greater accuracy.

Worked example

Three steps of Euler's method

For dydx=x+y\dfrac{\mathrm{d}y}{\mathrm{d}x} = x + ydxdy​=x+y with y(0)=1y(0) = 1y(0)=1, use h=0.1h = 0.1h=0.1 to estimate y(0.3)y(0.3)y(0.3).

  1. 01Step 1 (x = 0 to 0.1)

    f(0,1)=0+1=1f(0,1) = 0 + 1 = 1f(0,1)=0+1=1, so y1=1+0.1(1)=1.1y_1 = 1 + 0.1(1) = 1.1y1​=1+0.1(1)=1.1 at x=0.1x = 0.1x=0.1.

  2. 02Step 2 (x = 0.1 to 0.2)

    f(0.1,1.1)=0.1+1.1=1.2f(0.1, 1.1) = 0.1 + 1.1 = 1.2f(0.1,1.1)=0.1+1.1=1.2, so y2=1.1+0.1(1.2)=1.22y_2 = 1.1 + 0.1(1.2) = 1.22y2​=1.1+0.1(1.2)=1.22 at x=0.2x = 0.2x=0.2.

  3. 03Step 3 (x = 0.2 to 0.3)

    f(0.2,1.22)=0.2+1.22=1.42f(0.2, 1.22) = 0.2 + 1.22 = 1.42f(0.2,1.22)=0.2+1.22=1.42, so y3=1.22+0.1(1.42)=1.362y_3 = 1.22 + 0.1(1.42) = 1.362y3​=1.22+0.1(1.42)=1.362.

    y(0.3)≈1.362y(0.3) \approx 1.362y(0.3)≈1.362
  4. 04Comment

    The exact solution is y=2ex−x−1y = 2\mathrm{e}^x - x - 1y=2ex−x−1, giving y(0.3)=1.3997y(0.3) = 1.3997y(0.3)=1.3997; Euler underestimates, and a smaller hhh would close the gap.

Result: y(0.3)≈1.362y(0.3) \approx 1.362y(0.3)≈1.362 (exact 1.4001.4001.400).

Exam focus

  • Apply yn+1=yn+hf(xn,yn)y_{n+1} = y_n + h f(x_n, y_n)yn+1​=yn​+hf(xn​,yn​) step by step, tabulating the values; use the improved-Euler formula when greater accuracy is required.
  • Comment that Euler's method drifts from the true solution and that reducing hhh (or using the mid-point method) improves the estimate.

Typical mistakes

  • Using the gradient at the wrong point, or forgetting to update xnx_nxn​ as well as yny_nyn​ at each step.
  • In the improved-Euler method, using the initial gradient for the full step instead of the mid-point gradient.

Active revision

Given dydx=x+y\dfrac{\mathrm{d}y}{\mathrm{d}x} = x + ydxdy​=x+y with y=1y = 1y=1 at x=0x = 0x=0, use Euler's method with step h=0.1h = 0.1h=0.1 to estimate yyy at x=0.3x = 0.3x=0.3.

Active recall

Recall the key points — then reveal.

Sources: Further mathematics: AS and A level content (GCE subject content) (Department for Education)

§ 04

Numerical solution of equations#

●●○StandardLPAQA 7367 (Numerical methods)LPDfE Further Mathematics

Newton-Raphson: the tangent locates the next estimate

Function graph, y = x³ − 2x − 5 = x^3 - 2*x - 5, 1 marked pointsGraph of y = x³ − 2x − 5, roots at x = 2.095, increasing, on the interval x from 1.6 to 2.61.61.822.22.42.6−4−22468root ≈ 2.095tangent at x = 2y = x³ − 2x − 5yx
Fig. 3The tangent to y=x3−2x−5y = x^3 - 2x - 5y=x3−2x−5 at x=2x = 2x=2 meets the axis near the root x≈2.0946x \approx 2.0946x≈2.0946.

Key points

A root of f(x)=0f(x) = 0f(x)=0 that cannot be found algebraically is located numerically. The starting point is a change of sign: if fff is continuous and f(a)f(a)f(a) and f(b)f(b)f(b) have opposite signs, a root lies between aaa and bbb. Interval bisection then repeatedly halves the interval, keeping the half in which the sign change occurs, so the root is trapped in an ever-shorter interval — reliable but slow.
Linear interpolation improves on bisection by using the actual function values: it joins the points (a,f(a))(a, f(a))(a,f(a)) and (b,f(b))(b, f(b))(b,f(b)) with a straight line and takes the point where that line crosses the axis as the next estimate, which is usually closer to the root than the midpoint. It is a modest refinement of the sign-change idea, converging faster than bisection while remaining robust.
The Newton-Raphson method (recap and extension from A-Level Mathematics) is the fastest of the standard methods when it works. From an estimate xnx_nxn​ it follows the tangent to the curve down to the axis, giving xn+1=xn−f(xn)f′(xn)x_{n+1} = x_n - \dfrac{f(x_n)}{f'(x_n)}xn+1​=xn​−f′(xn​)f(xn​)​. Geometrically, the tangent at (xn,f(xn))(x_n, f(x_n))(xn​,f(xn​)) meets the xxx-axis at the next estimate; near a simple root the method roughly doubles the number of correct digits each step.
Newton-Raphson can fail, and knowing when is examinable. If the initial estimate is poor, if the tangent is nearly horizontal (f′(xn)≈0f'(x_n) \approx 0f′(xn​)≈0), or if there is a stationary point or discontinuity nearby, the iteration may diverge, oscillate, or converge to the wrong root. A good numerical answer states the method used, shows the iterations converging, and — where relevant — comments on the conditions needed for convergence. Comparing the robustness of bisection with the speed of Newton-Raphson is the kind of evaluation the paper rewards.
xn+1=xn−f(xn)f′(xn)(Newton-Raphson)x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)} \quad (\text{Newton-Raphson})xn+1​=xn​−f′(xn​)f(xn​)​(Newton-Raphson)

Newton-Raphson iteration

Follows the tangent at xnx_nxn​ to the axis; fast near a simple root.

Worked example

Newton-Raphson for a cubic root

Solve x3−2x−5=0x^3 - 2x - 5 = 0x3−2x−5=0 near x=2x = 2x=2 by Newton-Raphson, to three decimal places.

  1. 01Set up the iteration

    f(x)=x3−2x−5f(x) = x^3 - 2x - 5f(x)=x3−2x−5, f′(x)=3x2−2f'(x) = 3x^2 - 2f′(x)=3x2−2, so xn+1=xn−xn3−2xn−53xn2−2x_{n+1} = x_n - \dfrac{x_n^3 - 2x_n - 5}{3x_n^2 - 2}xn+1​=xn​−3xn2​−2xn3​−2xn​−5​.

  2. 02First iteration

    f(2)=8−4−5=−1f(2) = 8 - 4 - 5 = -1f(2)=8−4−5=−1, f′(2)=12−2=10f'(2) = 12 - 2 = 10f′(2)=12−2=10, so x1=2−−110=2.1x_1 = 2 - \dfrac{-1}{10} = 2.1x1​=2−10−1​=2.1.

  3. 03Second iteration

    f(2.1)=9.261−4.2−5=0.061f(2.1) = 9.261 - 4.2 - 5 = 0.061f(2.1)=9.261−4.2−5=0.061, f′(2.1)=13.23−2=11.23f'(2.1) = 13.23 - 2 = 11.23f′(2.1)=13.23−2=11.23, so x2=2.1−0.06111.23=2.09457x_2 = 2.1 - \dfrac{0.061}{11.23} = 2.09457x2​=2.1−11.230.061​=2.09457.

    x2=2.09457x_2 = 2.09457x2​=2.09457
  4. 04Converge

    A further iteration gives x3=2.09455x_3 = 2.09455x3​=2.09455; the value is stable to three decimal places.

Result: The root is x≈2.095x \approx 2.095x≈2.095 (3 d.p.).

Exam focus

  • Establish a root by a sign change, then apply bisection, linear interpolation or Newton-Raphson, showing each iteration.
  • State the Newton-Raphson formula, iterate to the required accuracy, and comment on when the method might fail to converge.

Typical mistakes

  • Forgetting to check for a sign change before iterating, or misreading which subinterval contains the root.
  • Dividing by a very small f′(xn)f'(x_n)f′(xn​) in Newton-Raphson and not recognising the resulting instability.

Active revision

The equation x3−2x−5=0x^3 - 2x - 5 = 0x3−2x−5=0 has a root near x=2x = 2x=2. Use the Newton-Raphson method with x0=2x_0 = 2x0​=2 to find the root correct to three decimal places.

Active recall

Recall the key points — then reveal.

Sources: AQA A-level Further Mathematics 7367 specification (AQA)

Contents

Section -- / 04

    • 01Numerical integration: mid-ordinate and Simpson's rules◐
    • 02Accuracy and error of numerical integration●
    • 03Step-by-step solution of differential equations●
    • 04Numerical solution of equations◐

0/4 Read

From notes into training

Numerical methods

Reinforce this topic with matching tasks from the question bank.

~12
min
3
Competencies
Practise

References & sources

Sources

Department for Education

  • Further mathematics: AS and A level content (GCE subject content)

AQA

  • AQA A-level Further Mathematics 7367 specification

Previous topic

Differential equations

Next topic

Optional application: Mechanics

EuraStudy·Notes T·10·MMXXVI

Carry on to the next topic — your learning path is kept.