📚 PDF资源导航

AS AQA Further Maths: Unit Test Mock Paper Analysis | AS AQA 进阶数学:单元测试模拟卷解析

📚 AS AQA Further Maths: Unit Test Mock Paper Analysis | AS AQA 进阶数学:单元测试模拟卷解析

Mock papers are an essential checkpoint before real AS exams. This article walks through every question of a typical AQA FP1-style unit test, unpacking the methods, common pitfalls, and examiner expectations you need to know. Each section pairs a clear solution with targeted commentary, so you can strengthen both your technique and your understanding of the syllabus.

模拟卷是正式 AS 考试前必不可少的检验工具。本文逐题解析一份典型的 AQA FP1 风格单元测试,详细拆解解题方法、常见错误和考官关注点。每部分都配有清晰的解答和针对性点评,帮助你同时提升解题技巧和对考纲的把握。


1. Mock Paper Overview | 模拟卷概览

The mock paper is designed to mirror the structure of an actual AQA AS Further Maths unit test: 75 marks, 90 minutes, covering the core FP1 topics. Questions range from straightforward computations on complex numbers and matrices to multi-step problems on series, iterative methods, rational functions, and coordinate geometry with parabolas. A wise approach is to scan the paper first, allocate roughly 1.2 minutes per mark, and leave 10 minutes for checking.

这份模拟卷仿照真实 AQA AS 进阶数学单元测试的结构:满分 75 分,时间 90 分钟,覆盖 FP1 核心主题。题目涵盖复数和矩阵的直接计算,以及级数、迭代法、有理函数和抛物线坐标几何的多步问题。明智的做法是先快速浏览全卷,按每题 1.2 分钟分配时间,并预留 10 分钟检查。

The mark scheme rewards method marks generously even if the final answer contains a slip, so always show clear steps: write down the conjugate for complex division, state the induction hypothesis explicitly, and sketch a sign diagram for inequalities. Keep an eye on required precision—radian measures to 3 significant figures, iterative values to 4 decimal places unless stated otherwise.

评分方案对方法步骤给分很大方,即使最后答案有疏漏,所以一定要展示清晰的过程:复数除法写出共轭,明确陈述归纳假设,解不等式时画出符号表。注意精度要求——弧度保留 3 位有效数字,迭代值除非另有说明保留 4 位小数。


2. Complex Numbers & Argand Diagram | 复数与阿干特图

For z = 2 + 3i, the product zz* = (2+3i)(2-3i) = 4 + 9 = 13, a purely real number. This confirms that multiplying a complex number by its conjugate eliminates the imaginary part—a handy trick when rationalising denominators or finding moduli.

对于 z = 2 + 3i,乘积 zz* = (2+3i)(2-3i) = 4 + 9 = 13,是一个纯实数。这验证了复数乘以其共轭能消去虚部——在有理化分母或求模时非常实用。

To compute z/z*, multiply numerator and denominator by the conjugate of the denominator: (2+3i)/(2-3i) × (2+3i)/(2+3i) = (2+3i)² / 13 = (4 + 12i – 9)/13 = (-5 + 12i)/13. The modulus is √( (-5)² + 12² ) / 13 = √169 / 13 = 1. The argument lies in the second quadrant: arg = π – arctan(12/5) ≈ 1.176 rad. Remember that arctan gives a reference angle in quadrant IV, so adjust by π for negative real part and positive imaginary part.

计算 z/z* 时,将分子分母同乘以分母的共轭: (2+3i)/(2-3i) × (2+3i)/(2+3i) = (2+3i)² / 13 = (4 + 12i – 9)/13 = (-5 + 12i)/13。模长为 √( (-5)² + 12² ) / 13 = √169 / 13 = 1。辐角在第二象限:arg = π – arctan(12/5) ≈ 1.176 rad。注意 arctan 给出的是第四象限的参考角,因此当实部为负、虚部为正时要加上 π 调整。

For the quadratic z² – 4z + 13 = 0, the discriminant is 16 – 52 = -36, so the roots are z = (4 ± 6i)/2 = 2 ± 3i. These are complex conjugates, as expected for a real-coefficient polynomial. Always present your answer in the exact form a ± bi rather than decimal approximations; examiners deduct marks for rounding here.

对于二次方程 z² – 4z + 13 = 0,判别式为 16 – 52 = -36,因此根为 z = (4 ± 6i)/2 = 2 ± 3i。正如实系数多项式所预期的,这两个根互为共轭复数。始终以精确形式 a ± bi 给出答案,而非小数近似值;考官会因取整而扣分。


3. Matrix Algebra & Systems | 矩阵代数与方程组

Given A = [[2,1],[4,-1]] and B = [[1,3],[-2,1]], the product AB is calculated row by column: AB = [[2×1 + 1×(-2), 2×3 + 1×1], [4×1 + (-1)×(-2), 4×3 + (-1)×1]] = [[0,7],[6,11]]. Note the order matters—BA would be different and is not required here, but mixing up rows and columns is a common slip.

给定 A = [[2,1],[4,-1]] 和 B = [[1,3],[-2,1]],乘积 AB 按行乘列计算:AB = [[2×1 + 1×(-2), 2×3 + 1×1], [4×1 + (-1)×(-2), 4×3 + (-1)×1]] = [[0,7],[6,11]]。注意顺序重要——BA 会不同,这里虽不要求,但混淆行列是常见失误。

The inverse of A is found using 1/(ad-bc) times the adjugate: A⁻¹ = 1/(2×(-1) – 1×4) [[-1,-1],[-4,2]] = 1/(-6) [[-1,-1],[-4,2]] = [[1/6, 1/6], [4/6, -2/6]] = [[1/6, 1/6], [2/3, -1/3]]. To solve the system 2x+y=5, 4x-y=1, write it as A [x; y] = [5;1], so [x; y] = A⁻¹ [5;1] = [[1/6,1/6],[2/3,-1/3]] [5;1] = [5/6+1/6, 10/3-1/3] = [1,3]. Thus x=1, y=3. Always check by substitution back into the original equations.

A 的逆矩阵用 1/(ad-bc) 乘以伴随矩阵求得:A⁻¹ = 1/(2×(-1) – 1×4) [[-1,-1],[-4,2]] = 1/(-6) [[-1,-1],[-4,2]] = [[1/6, 1/6], [2/3, -1/3]]。为解方程组 2x+y=5, 4x-y=1,写成 A [x; y] = [5;1],于是 [x; y] = A⁻¹ [5;1] = [[1/6,1/6],[2/3,-1/3]] [5;1] = [5/6+1/6, 10/3-1/3] = [1,3]。因此 x=1, y=3。务必代回原方程检验。


4. Proof by Induction & Series Summation | 数学归纳法与级数求和

We prove P(n): Σ(r=1 to n) r(r+1) = n(n+1)(n+2)/3. Base case n=1: LHS = 1×2 = 2, RHS = 1×2×3/3 = 2. Inductive step: assume true for n = k, so Σ(r=1 to k) r(r+1) = k(k+1)(k+2)/3. Then for n = k+1, the sum becomes Σ(r=1 to k) r(r+1) + (k+1)(k+2) = k(k+1)(k+2)/3 + (k+1)(k+2). Factor (k+1)(k+2): = (k+1)(k+2)(k/3 + 1) = (k+1)(k+2)(k+3)/3, which matches the formula with n = k+1. Hence P(k) => P(k+1).

我们证明 P(n): Σ(r=1 to n) r(r+1) = n(n+1)(n+2)/3。基础情况 n=1:左边 = 1×2 = 2,右边 = 1×2×3/3 = 2。归纳步骤:假设 n=k 成立,即 Σ(r=1 to k) r(r+1) = k(k+1)(k+2)/3。那么 n=k+1 时,和为 Σ(r=1 to k) r(r+1) + (k+1)(k+2) = k(k+1)(k+2)/3 + (k+1)(k+2)。提取公因子 (k+1)(k+2):= (k+1)(k+2)(k/3 + 1) = (k+1)(k+2)(k+3)/3,恰好是 n=k+1 的公式。故 P(k) ⇒ P(k+1)。

Part (b) uses the closed form directly: Σ(r=10 to 50) r(r+1) = Σ(r=1 to 50) – Σ(r=1 to 9) = 50×51×52/3 – 9×10×11/3 = 44200 – 330 = 43870. The key trap is grabbing the wrong index: remember that Σ(r=1 to 9) covers r=1,…,9, so the term for r=9 is 9×10, and the formula works with n=9. Double-check that you subtract the sum up to 9, not 10, when the lower limit is 10.

第(b)部分直接使用闭合形式:Σ(r=10 to 50) r(r+1) = Σ(r=1 to 50) – Σ(r=1 to 9) = 50×51×52/3 – 9×10×11/3 = 44200 – 330 = 43870。关键陷阱是取错下标:记住 Σ(r=1 to 9) 覆盖 r=1,…,9,所以 r=9 的项是 9×10,公式中 n=9。务必检查当起始值为 10 时,减去的是直到 9 的和而非 10。


5. Newton-Raphson Iteration | 牛顿-拉弗森迭代法

For f(x) = x³ – 5x + 1, the derivative is f'(x) = 3x² – 5. Starting with x₀ = 0.5, we compute f(0.5) = 0.125 – 2.5 + 1 = -1.375, and f'(0.5) = 0.75 – 5 = -4.25. The first iterate: x₁ = 0.5 – (-1.375)/(-4.25) = 0.5

Published by TutorHao | AS 进阶数学 Revision Series | aleveler.com

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

Comments

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

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

Exit mobile version