📚 PDF资源导航

GCSE AQA Maths: Numerical Methods Revision | GCSE AQA 数学:数值方法考点精讲

📚 GCSE AQA Maths: Numerical Methods Revision | GCSE AQA 数学:数值方法考点精讲

Numerical methods are techniques that allow you to find approximate solutions to equations that cannot be solved easily using algebraic methods. In the AQA GCSE Mathematics course, you are expected to understand trial and improvement, as well as iteration, and to use these processes to estimate roots to a required degree of accuracy. This revision guide covers all the key concepts, worked examples, and common exam pitfalls.

数值方法是一些用来求方程近似解的技术,当方程无法用代数方法轻松求解时特别有用。在 AQA GCSE 数学课程中,你需要理解试错改进法以及迭代法,并使用这些过程把根估计到指定的精确度。这份复习指南涵盖了所有关键概念、范例以及常见的考试失分点。

1. What Are Numerical Methods? | 什么是数值方法?

Numerical methods provide a systematic way of homing in on a solution by generating a sequence of improving approximations. Instead of solving an equation directly, you start with an initial guess and refine it step by step. The two main numerical methods covered at GCSE are trial and improvement (sometimes called trial and error) and iteration using an iterative formula.

数值方法提供了一种系统化的逼近解的方式,通过生成一系列越来越精确的近似值来靠近真实解。你不必直接解方程,而是从一个初始猜测出发,一步步地修正它。GCSE 阶段涵盖的两种主要数值方法是试错改进法(有时也叫尝试–纠错法)和使用迭代公式的迭代法。

2. Trial and Improvement Method | 试错改进法

The trial and improvement method involves substituting values of x into the equation and checking whether the left‑hand side (LHS) is greater than or less than the right‑hand side (RHS). You aim to find two x-values between which the sign of the difference changes, indicating that a root lies between them. You then try a value in the middle and repeat. The process continues until the two bounds give the same answer to the required number of decimal places.

试错改进法是把不同的 x 值代入方程,检查左边是否大于或小于右边。你的目标是找到两个 x 值,使得它们的差值符号发生变化,说明这两者之间存在一个根。接着你取一个中间值再试,不断重复。这一过程一直持续到上下界在要求的小数位数上给出相同的结果为止。

3. Using a Table to Find a Root | 用表格找根

A well‑organised table makes the trial and improvement process much clearer. Suppose we need to solve x² − 5x + 3 = 0 to one decimal place. You can set up columns for x, x², −5x, +3 and the total value of the expression. By identifying a sign change in the total, you narrow down the interval that contains the root.

一张清晰的表格可以让试错改进的过程更加明了。假设我们要把方程 x² − 5x + 3 = 0 解到一位小数。你可以设置几列:x、x²、−5x、+3 以及表达式的总值。通过找出总值符号的改变,你就能把包含根的区间缩小。

x −5x +3 Total
0 0 0 3 3
1 1 −5 3 −1
0.5 0.25 −2.5 3 0.75
0.7 0.49 −3.5 3 −0.01

Since the total changes from positive (0.75) to negative (−0.01) between x = 0.5 and x = 0.7, the root lies in this interval. Further trials will then determine it to one decimal place.

因为在 x = 0.5 和 x = 0.7 之间总值由正 (0.75) 变为负 (−0.01),所以根位于此区间内。进一步尝试就能把它精确到一位小数。


4. When to Stop: Accuracy and Decimal Places | 何时停止:精确度与小数位数

To show a root is correct to one decimal place, you need two consecutive trials that give a sign change with the x-values rounding to the same single decimal digit. For example, if you test x = 0.65 and x = 0.7, and both round to 0.7 (but one gives a negative total and the other positive), then 0.7 is correct to 1 d.p. For two decimal places, you check the interval to three decimal places and confirm the rounding.

要证明一个根精确到一位小数,你需要有两个连续的尝试值,它们的 x 值四舍五入后得到相同的一位小数,并且表达式符号发生改变。例如,你测试 x = 0.65 和 x = 0.7,两者都四舍五入到 0.7,但一个给出负值另一个给出正值,那么 0.7 就是精确到一位小数的解。如果要精确到两位小数,你需要把区间检查到三位小数并确认四舍五入结果。

5. Introduction to Iteration | 迭代法简介

Iteration uses a formula to generate a sequence of values that (hopefully) approach a solution. The equation f(x) = 0 is rewritten in the form x = g(x). An iterative formula is then written as xₙ₊₁ = g(xₙ). Starting from an initial value x₀, you repeatedly apply the formula to produce x₁, x₂, x₃, … until the values settle down to a fixed number of decimal places.

迭代法利用一个公式来生成一列数值,这些数值(有望)逐步逼近解。先把方程 f(x) = 0 改写成 x = g(x) 的形式。然后写出迭代公式 xₙ₊₁ = g(xₙ)。从一个初始值 x₀ 开始,你反复套用这个公式生成 x₁、x₂、x₃……,直到数值稳定在某个固定的小数位数。

6. Forming an Iterative Formula | 构造迭代公式

Given an equation like x³ + x − 1 = 0, you can rearrange it to make one of the x terms the subject. For example, x = ∛(1 − x) is one possible rearrangement. The iterative formula becomes:

给定一个方程如 x³ + x − 1 = 0,你可以把它重新排列,把其中一个 x 单独放在一边。例如,x = ∛(1 − x) 就是其中一种可能的变形。迭代公式便写成:

xₙ₊₁ = ∛(1 − xₙ)

Alternatively, you could have x = 1 − x³ or x = (1 − x) / x², but the choice affects whether the iteration converges. AQA often provides the rearranged formula.

另一种变形可以是 x = 1 − x³ 或 x = (1 − x) / x²,但选择哪一种会影响迭代是否收敛。AQA 通常会直接给出重新整理好的公式。

7. Using Iteration to Solve Equations | 用迭代法解方程

Start with a starting value x₀ (sometimes given). Substitute into the formula to find x₁, then use x₁ to find x₂, and so on. Keep at least one more decimal place than the required accuracy during calculations. When two consecutive answers are the same to the required number of decimal places, the value is your approximate solution.

从一个初始值 x₀ 开始(有时题目会给出)。代入公式求出 x₁,再用 x₁ 去求 x₂,依此类推。计算过程中,比要求的精确度多保留至少一位小数。当连续两次答案在要求的小数位数上相同时,该值就是你的近似解。

Example: Use xₙ₊₁ = √(5 − xₙ) starting with x₀ = 2 to find a solution to x² + x − 5 = 0 correct to 2 d.p. (AQA style)

示例:用 xₙ₊₁ = √(5 − xₙ) 从 x₀ = 2 出发,求方程 x² + x − 5 = 0 的近似解,精确到两位小数。(AQA 风格)

  • x₁ = √(5 − 2) = √3 ≈ 1.7320508x₁ ≈ 1.7320508
  • x₂ = √(5 − 1.7320508) = √3.2679492 ≈ 1.8077425
  • x₃ = √(5 − 1.8077425) = √3.1922575 ≈ 1.7866854
  • x₄ = √(5 − 1.7866854) = √3.2133146 ≈ 1.7926934
  • x₅ ≈ 1.7912063, x₆ ≈ 1.7916018

Values are converging to 1.79 to 2 d.p. so the solution is approximately 1.79.

数值正收敛到两位小数 1.79,因此近似解为 1.79。


8. Convergence and Divergence | 收敛与发散

An iterative formula converges if the sequence of approximations gets closer and closer to a fixed value. If the numbers spiral away or oscillate without settling, the method diverges. Choosing a suitable rearrangement is crucial. AQA may ask you to explain why a particular formula fails or to show that a given starting value leads to convergence by drawing a staircase or cobweb diagram, though the graphical approach is less heavily examined at GCSE.

如果近似值序列越来越接近某个固定值,该迭代公式就是收敛的。如果数值越来越远离或不停振荡、无法稳定,方法则是发散的。选择合适的公式变形至关重要。AQA 可能会要求你解释为什么某个公式会失效,或者通过画出阶梯图或蛛网图来展示给定初始值会导致收敛,不过在 GCSE 中图形方法考查得不多。

9. Checking Solutions and Substitution | 检验解与代入

Once you have an approximate solution, always check by substituting it back into the original equation. The left‑hand side and right‑hand side should be very close, ideally differing by less than the tolerance set by the required decimal places. This confirms that your iteration or trial and improvement has genuinely produced a valid root.

一旦得到近似解,务必把它代回原方程进行验证。左右两边应该非常接近,理想情况下差值应小于指定小数位数所设定的容许范围。这能够确认你的迭代或试错改进真正产生了一个有效的根。

10. Common Pitfalls and Exam Tips | 常见错误与考试技巧

  • Not keeping enough figures during iteration: always work to at least one more decimal place than the final answer, and round only at the end.
  • Misreading the required accuracy: 1 decimal place means you need two consecutive x-values that round to the same 1 d.p. and show a sign change.
  • Using the wrong formula: if an equation is given as f(x) = 0, make sure you use the correct rearrangement for iteration – often provided, but check.
  • Writing vague explanations: when asked why a value is the solution, quote the sign change and the two bounding values clearly.
  • Errors in substitution: take care with negative numbers and powers; use brackets when substituting into a calculator.
  • 迭代时保留位数不足:始终至少比最终答案多保留一位小数,只在最后才四舍五入。
  • 误读精度要求:精确到 1 位小数意味着需要找到两个连续的 x 值,它们四舍五入后得到相同的 1 位小数值,并且符号发生改变。
  • 使用错误的公式:如果方程以 f(x) = 0 给出,要确保你使用的是正确的迭代变形——题目通常会提供,但仍需检查。
  • 解释含糊不清:当被问到为什么某个值是解时,要清楚地指出符号变化和两个边界值。
  • 代入时出错:处理负数和幂时要格外小心;用计算器代入时记得使用括号。

A solid grasp of numerical methods gives you a powerful tool for tackling non‑algebraic equations. Practise plenty of past paper questions to gain confidence in both setting out tables for trial and improvement and carrying out accurate iteration.

扎实掌握数值方法能让你拥有解决非代数方程的有力工具。多做历年真题,你就能自信地应对试错改进法的表格呈现和精确的迭代计算。


Published by TutorHao | GCSE Mathematics Revision Series | aleveler.com

更多咨询请联系16621398022(同微信)

Comments

屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from aleveler.com

Subscribe now to keep reading and get access to the full archive.

Continue reading