📚 Year 13 WJEC Further Maths: Case Study Practical Exercises | Year 13 WJEC 进阶数学:案例分析实战演练
Welcome to a practical journey through the WJEC Year 13 Further Mathematics syllabus. In this article, we present a collection of real-world case studies, each carefully designed to strengthen your problem-solving skills and deepen your understanding of advanced pure topics. From complex numbers in AC circuits to eigenvalues in stability analysis, every example models authentic applications you may encounter in engineering, physics or computer science. Work through these cases to connect abstract theory with tangible scenarios, and build the fluency needed for high-band exam responses.
欢迎来到 WJEC 高年级进阶数学的实战之旅。本文汇集了一系列真实世界的案例学习,每个案例都旨在强化你的解题能力并加深对进阶纯数主题的理解。从交流电路中的复数到稳定性分析的特征值,每个例题都模拟了你在工程、物理或计算机科学中可能遇到的实际应用。通过这些案例将抽象理论与具体情境联系起来,培养高分答题所需的熟练度。
1. Complex Numbers in AC Circuit Analysis | 交流电路分析中的复数
In electrical engineering, complex numbers simplify the analysis of alternating current (AC) circuits. Consider a series RLC circuit with resistance R, inductance L and capacitance C driven by a voltage source of angular frequency ω. The impedance Z is expressed as Z = R + j(ωL – 1/(ωC)), where j is the imaginary unit (maths uses i, but engineers use j). This single complex number captures both magnitude and phase shift. For a given voltage phasor V = 230∠0° V, the current phasor is I = V/Z, obtained through complex division.
在电气工程中,复数简化了交流电路分析。考虑一个电阻为 R、电感为 L、电容为 C 的串联 RLC 电路,由角频率为 ω 的电压源驱动。阻抗 Z 表达为 Z = R + j(ωL – 1/(ωC)),其中 j 为虚数单位(数学家用 i,但工程领域惯用 j)。这个单一的复数同时捕捉了幅度和相位偏移。对于给定的电压相量 V = 230∠0° V,电流相量为 I = V/Z,通过复数除法求得。
Case step-by-step: Suppose R = 10 Ω, L = 0.1 H, C = 50 μF, and ω = 200 rad/s. First compute reactances: ωL = 0.1 × 200 = 20 Ω, 1/(ωC) = 1/(200 × 50 × 10-6) = 100 Ω. Thus Z = 10 + j(20 − 100) = 10 − 80j Ω. In mod- arg form, |Z| = √(102 + 802) ≈ 80.62 Ω, arg(Z) = tan-1(−80/10) ≈ −82.87°. So I = 230/(10 − 80j) = 230 × (10 + 80j)/(102+802) ≈ 0.354 + 2.83j A. The current leads the voltage by about 82.9°, confirming capacitive behaviour.
案例分步解析:设 R = 10 Ω,L = 0.1 H,C = 50 μF,ω = 200 rad/s。首先计算电抗:ωL = 0.1 × 200 = 20 Ω,1/(ωC) = 1/(200 × 50 × 10-6) = 100 Ω。因此 Z = 10 + j(20 − 100) = 10 − 80j Ω。化为模-辐角形式:|Z| = √(102 + 802) ≈ 80.62 Ω,arg(Z) = tan-1(−80/10) ≈ −82.87°。于是 I = 230/(10 − 80j) = 230 × (10 + 80j)/(102+802) ≈ 0.354 + 2.83j A。电流相位超前电压约 82.9°,确认了电容性行为。
This case reinforces complex arithmetic, mod-arg conversion and the physical interpretation of phase angle – all key WJEC requirements. Practice similar problems by varying component values and checking whether the circuit is inductive or capacitive.
该案例强化了复数运算、模-辐角转换以及相角的物理解释——所有这些都是WJEC考试的关键要求。通过改变元件数值并判断电路呈感性还是容性来练习类似题目。
2. Matrix Transformations for Rotations and Scaling | 旋转变换与缩放的矩阵
Computer graphics rely heavily on matrix transformations. A 2 × 2 rotation matrix R(θ) = [[cosθ, −sinθ], [sinθ, cosθ]] maps a position vector to its image after anticlockwise rotation by angle θ. Applying the matrix to a set of vertices transforms an entire shape. This case explores rotating a triangle with vertices A(1, 2), B(3, 4) and C(2, 5) by 30° about the origin.
计算机图形学大量依赖矩阵变换。2×2 旋转矩阵 R(θ) = [[cosθ, −sinθ], [sinθ, cosθ]] 将位置向量映射到逆时针旋转 θ 角度后的像。将矩阵作用于一组顶点即可变换整个图形。本案例探究将顶点为 A(1, 2)、B(3, 4)、C(2, 5) 的三角形绕原点旋转 30°。
Rotation matrix: R(30°) = [[√3/2, −½], [½, √3/2]]
For point A, the image is A′ = R(30°) × [1, 2]T = [ (√3/2)×1 + (−½)×2 , (½)×1 + (√3/2)×2 ] ≈ [−0.134, 2.232]. Similarly B′ ≈ [0.598, 4.964] and C′ ≈ [−0.768, 5.330]. Plotting the original and rotated triangles helps visualise the transformation as a rigid body motion preserving distances and angles.
对于点 A,像为 A′ = R(30°) × [1, 2]T = [ (√3/2)×1 + (−½)×2 , (½)×1 + (√3/2)×2 ] ≈ [−0.134, 2.232]。类似地 B′ ≈ [0.598, 4.964],C′ ≈ [−0.768, 5.330]。绘制原三角形与旋转后的三角形有助于将变换可视化为保持距离和角度的刚体运动。
Scaling transformations, e.g. [[2, 0], [0, 3]], stretch coordinates independently. Following WJEC A2 units, you should be able to combine transformations via matrix multiplication and determine the inverse transformation to recover original coordinates. This case also involves solving linear equations derived from unknown transformation matrices given image points – a frequent exam style.
缩放变换,例如 [[2, 0], [0, 3]],独立地拉伸坐标。按照WJEC A2单元要求,你应能通过矩阵乘法组合变换,并求出逆变换以恢复原始坐标。此案例还涉及解由已知像点推导未知变换矩阵所得的线性方程组——这是常见的考试题型。
3. First-Order Differential Equations: Newton’s Law of Cooling | 一阶微分方程:牛顿冷却定律
Newton’s law of cooling states that the rate of heat loss of a body is proportional to the difference between its temperature and the ambient temperature. Mathematically, dT/dt = −k(T − Tenv), where T is the object’s temperature, t time, and k a positive constant. This separable first-order ODE is a classic case study for modelling thermal behaviour in forensic science or engineering.
牛顿冷却定律指出,物体热量散失的速率正比于其温度与环境温度之差。数学表达为 dT/dt = −k(T − Tenv),其中 T 为物体温度,t 为时间,k 为正的常数。此可分离的一阶常微分方程是法医学或工程中模拟热行为的经典案例。
Solving: separate variables to get ∫ 1/(T − Tenv) dT = −k ∫ dt. Integration gives ln|T − Tenv| = −kt + C. Taking exponentials: T − Tenv = Ae−kt, where A = T0 − Tenv (initial condition at t=0). Therefore T(t) = Tenv + (T0 − Tenv)e−kt.
求解过程:分离变量得 ∫ 1/(T − Tenv) dT = −k ∫ dt。积分得 ln|T − Tenv| = −kt + C。取指数:T − Tenv = Ae−kt,其中 A = T0 − Tenv(初始条件 t=0)。因此 T(t) = Tenv + (T0 − Tenv)e−kt。
Application: A cup of coffee at 85°C is left in a room at 20°C. After 5 minutes it cools to 60°C. Find k. Using the model: 60 = 20 + (85−20)e−5k ⇒ 40 = 65e−5k ⇒ e−5k = 40/65 ⇒ k = −(1/5)ln(40/65) ≈ 0.0971 min−1. Then predict temperature after 10 minutes: T(10) = 20 + 65e−0.971 ≈ 44.6°C. This practical problem reinforces exponent manipulation and the use of logarithms to estimate physical constants.
应用实例:一杯 85°C 的咖啡置于 20°C 的房间中,5 分钟后冷却至 60°C。求 k。利用模型:60 = 20 + (85−20)e−5k ⇒ 40 = 65e−5k ⇒ e−5k = 40/65 ⇒ k = −(1/5)ln(40/65) ≈ 0.0971 min−1。接着预测 10 分钟后的温度:T(10) = 20 + 65e−0.971 ≈ 44.6°C。这个实际问题强化了指数变换与运用对数估计物理常数。
4. Second-Order Linear ODEs: Damped Harmonic Motion | 二阶线性常微分方程:阻尼谐振
Many mechanical systems, such as a mass–spring–damper, are governed by second-order linear differential equations: m d2x/dt
Published by TutorHao | Year 13 进阶数学 Revision Series | aleveler.com
更多咨询请联系16621398022(同微信)
屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导