📚 PDF资源导航

Pre-U AQA Further Mathematics: Case Study Practical Exercises | Pre-U AQA 进阶数学:案例分析实战演练

📚 Pre-U AQA Further Mathematics: Case Study Practical Exercises | Pre-U AQA 进阶数学:案例分析实战演练

This article provides a carefully curated set of case-study style problems that reflect the challenging applied and problem-solving components of the Pre-U AQA Further Mathematics course. Each section unpacks a realistic scenario, embedding core topics such as complex numbers, differential equations, matrix algebra, and advanced calculus, with full solutions demonstrated step by step. Working through these exercises will strengthen your ability to translate abstract theory into practical reasoning, preparing you thoroughly for examination-style questions that demand both fluency and insight.

本文提供了一组精心设计的案例分析题,真实还原 Pre-U AQA 进阶数学课程中富有挑战性的应用与问题解决环节。每个小节选取一个实际情境,将复数、微分方程、矩阵代数和高等微积分等核心知识融入其中,并逐步展示完整解答。通过反复演练这些题目,你将能够显著提升将抽象理论转化为实际推理的能力,为应对要求灵活运用和深度理解的大考题目做好充分准备。

1. Complex Numbers in AC Circuit Analysis | 复数在交流电路分析中的应用

A series RLC circuit is driven by an alternating voltage source. The impedance Z is a complex quantity combining resistance R = 10 Ω, inductive reactance XL = 2πfL = 15 Ω, and capacitive reactance XC = 1/(2πfC) = 8 Ω. Express the impedance in Cartesian and polar forms, and determine the resonant frequency at which the imaginary part vanishes.

一个串联 RLC 电路由交流电压源驱动。阻抗 Z 是一个复数,综合了电阻 R = 10 Ω、感抗 XL = 2πfL = 15 Ω 和容抗 XC = 1/(2πfC) = 8 Ω。请用代数形式和极坐标形式表示该阻抗,并求出虚部为零时的谐振频率。

Z = R + i(XL − XC) = 10 + i(15 − 8) = 10 + 7i Ω

The polar magnitude is |Z| = √(10² + 7²) = √149 ≈ 12.21 Ω, and the argument is tan⁻¹(7/10) ≈ 35.0°. Resonance occurs when XL = XC, giving ω0 = 1/√(LC). Using XL = ωL, XC = 1/(ωC), setting them equal yields ω₀² = 1/(LC), so f₀ = 1/(2π√(LC)). With given numbers, ω₀ = √(1/(LC)) must be deduced from response data, but the principle illustrates the transition from complex algebra to physical behaviour.

极坐标下的模 |Z| = √(10² + 7²) = √149 ≈ 12.21 Ω,辐角为 tan⁻¹(7/10) ≈ 35.0°。当 XL = XC 时发生谐振,得到 ω₀ = 1/√(LC)。结合 ωL = 15 Ω 和 1/(ωC) = 8 Ω,可解出 L 和 C 的具体值,但核心在于将复数虚部置零的条件转化为谐振频率 f₀ = 1/(2π√(LC))。这一步既检验了复数的运算流畅性,也连接了交流电路的关键物理特性。


2. Logistic Population Growth with Differential Equations | 微分方程模型:逻辑斯蒂人口增长

A population of bacteria is cultured in a limited nutrient environment. The growth rate satisfies dP/dt = 0.2P(1 − P/500), where P is the number of individuals and t is in hours. Starting with P(0) = 50, find the explicit solution and determine the population after 10 hours. Discuss the long-term limit.

一组细菌在营养有限的环境中培养。其增长速率满足 dP/dt = 0.2P(1 − P/500),其中 P 为个体数量,t 以小时计。已知 P(0) = 50,求显式解并计算 10 小时后种群数量,讨论长期极限。

dP/dt = kP(1 − P/M), k = 0.2, M = 500.

Separation of variables gives ∫ dP/[P(1 − P/M)] = ∫ k dt. Partial fractions lead to ln|P/(M − P)| = kt + C. Applying P(0)=50 yields C = ln(50/450) = ln(1/9). Thus P/(500 − P) = (1/9)e0.2t. Solving for P: P = 500 × (e0.2t/9) / (1 + e0.2t/9) = 500e0.2t/(9 + e0.2t). At t = 10, e² ≈ 7.389, so P ≈ (500 × 7.389)/(9 + 7.389) ≈ 3694.5/16.389 ≈ 225.4. The population tends to the carrying capacity M = 500 as t → ∞.

分离变量得 ∫ dP/[P(1 − P/M)] = ∫ k dt。部分分式后得到 ln|P/(M − P)| = kt + C。代入初值求得 C = ln(1/9),从而 P/(500 − P) = (1/9)e0.2t。整理出显式 P = 500e0.2t/(9 + e0.2t)。当 t = 10 时,e² ≈ 7.389,计算得 P ≈ 225.4。随着 t → ∞,分母主要项为 e0.2t,因此 P → 500,即环境容纳量。该模型将微分方程求解与现实生物系统饱和效应联系起来,体现了逻辑斯蒂方程的应用价值。


3. Matrix Transformations for Computer Graphics | 矩阵变换在计算机图形学中的应用

A triangle with vertices A(1,2), B(4,3), C(2,5) is transformed first by a rotation of 30° anticlockwise about the origin, then by a reflection in the line y = x. Using matrix multiplication, find the coordinates of the transformed vertices and verify whether the final shape is congruent to the original.

一个三角形的顶点为 A(1,2)、B(4,3)、C(2,5),先绕原点逆时针旋转 30°,然后关于直线 y = x 作反射。用矩阵乘法求变换后各顶点的坐标,并判断最终形状是否与原三角形全等。

Rotation R = [cos30° −sin30°; sin30° cos30°] = [√3/2 −1/2; 1/2 √3/2]
Reflection M = [0 1; 1 0].

The combined transformation matrix is T = M R. Multiplying gives T = [1/2 √3/2; √3/2 −1/2]. Applying T to each vertex: for A, [x’; y’] = T [1; 2] = [1/2 + √3; √3/2 − 1]; numerically ≈ [2.232, −0.134]. B becomes [2 + 1.5√3, 2√3 − 1.5] ≈ [4.598, 2.964]; C becomes [1 + 2.5√3, √3 − 2.5] ≈ [5.330, −0.768]. All transformations are linear and preserve lengths and angles because rotation and reflection are isometries, so the final triangle remains congruent.

组合变换矩阵 T = M R = [1/2 √3/2; √3/2 −1/2]。对每个顶点应用 T:A’ ≈ (2.232, −0.134),B’ ≈ (4.598, 2.964),C’ ≈ (5.330, −0.768)。因为旋转和反射均为保距变换,不改变边长与角度,所以变换后的三角形与原三角形全等。本例说明了矩阵乘法在图形几何变换中的高效性,并巩固了合成变换与全等判定的知识。


4. Polar Curves: Area of a Cardioid | 极坐标曲线:心形线面积

An architect designs a decorative motif using the cardioid r = 2(1 + cosθ). Find the total area enclosed by the curve and determine the area of the region lying outside the inner loop (if applicable), or confirm that the cardioid is entirely convex.

一位建筑师使用心形线 r = 2(1 + cosθ) 设计装饰图案。求该曲线围成的总面积,并确定是否存在内环及相应面积,或确认此心形线完全外凸。

Area = ½ ∫₀²ᴾᴾ (r(θ))² dθ = 2 ∫₀ᴾᴾ 4(1 + cosθ)² dθ.

Expanding: (1 + cosθ)² = 1 + 2cosθ + cos²θ = 1 + 2cosθ + ½(1 + cos2θ) = 3/2 + 2cosθ + ½cos2θ. Then A = 8 ∫₀ᴾᴾ (3/2 + 2cosθ + ½cos2θ) dθ = 8 [ (3/2)θ + 2sinθ + (1/4) sin2θ ] from 0 to π. At π, sin terms vanish, giving 8 × (3/2)π = 12π. The cardioid r = 2(1+cosθ) has no inner loop because 1+cosθ ≥ 0 for all θ, so the curve is convex and the total area is 12π square units.

面积 A = ½ ∫₀²ᴾᴾ 4(1+cosθ)² dθ = 8 ∫₀ᴾᴾ (3/2 + 2cosθ + ½cos2θ) dθ。积分结果为 8 × (3/2)π = 12π。由于 1+cosθ ≥ 0 对所有 θ 成立,曲线不含内环,完全外凸,因此总面积即为 12π 平方单位。该案例将极坐标面积公式与三角恒等式变形结合起来,是微积分应用中的典型题型。


5. Taylor Series Approximation and Error Estimation | 泰勒级数逼近与误差估计

In a control system, the exponential response e−0.2 needs to be computed rapidly with an error less than 0.001. Use a Maclaurin series of ex and determine the minimum number of terms required to guarantee this accuracy when x = −0.2.

某个控制系统中需快速计算 e−0.2,且要求逼近误差小于 0.001。利用 ex 的麦克劳林级数,求在 x = −0.2 时满足精度要求的最小项数。

ex = Σn=0 xⁿ/n!. For x = −0.2, alternating series remainder |Rn| ≤ |x|n+1/(n+1)!.

We need |Rn| < 0.001. Test: for n=3, |x|⁴/4! = 0.2⁴/24 = 0.0016/24 ≈ 0.0000667, already below 0.001. Checking n=2: |x|³/3! = 0.008/6 ≈ 0.00133 > 0.001. Therefore 4 terms (up to n=3) are sufficient. The approximation using first four terms is 1 − 0.2 + 0.02 − 0.00133 = 0.81867, with guaranteed error less than 0.001.

交错级数截断误差上界为 |Rn| ≤ |x|ⁿ⁺¹/(n+1)!。对于 n=2,误差约 0.00133 > 0.001;n=3 时误差约 0.0000667 < 0.001。因此需要前 4 项(即 n=0 到 3)。近似值 1 − 0.2 + 0.02 − 0.00133 = 0.81867,误差有保证。该案例展示了泰勒级数在数值计算中的实用价值,以及误差上界公式在确定项数时的关键作用。


6. Hyperbolic Functions in a Catenary Problem | 双曲函数与悬链线问题

A uniform cable hangs between two poles 50 m apart. The shape is modelled by y = 30 cosh(x/30) − 20, with the lowest point at x=0, y=10. Calculate the length of the cable between x = −25 and x = 25, and find the tension at the lowest point if the cable mass per unit length is 2 kg/m.

一根均匀电缆悬挂在两杆之间,两杆相距 50 m。其形状可表示为 y = 30 cosh(x/30) − 20,最低点位于 x=0, y=10。计算 x = −25 到 x = 25 之间的电缆长度,并求电缆在最低点处的张力,设单位长度质量为 2 kg/m。

Arc length s = ∫₋₂₅²⁵ √(1 + (dy/dx)²) dx, dy/dx = sinh(x/30).

Since 1 + sinh²(u) = cosh²(u), we have s = ∫₋₂₅²⁵ cosh(x/30) dx = [30 sinh(x/30)] from -25 to 25 = 60 sinh(25/30) = 60 sinh(5/6). Numerically sinh(5/6) ≈ 0.937, so s ≈ 56.2 m. At the lowest point, tension T₀ = (weight per unit length) × parameter a, where a = 30 from y = a cosh(x/a) + C. Weight per unit length w = 2g = 19.6 N/m, so T₀ = 19.6 × 30 = 588 N.

弧长 s = ∫₋₂₅²⁵ √(1+sinh²(x/30)) dx = ∫ cosh(x/30) dx = 60 sinh(5/6) ≈ 56.2 m。最低点水平张力 T₀ = w × a,其中 a = 30,线密度 w = 2g = 19.6 N/m,因此 T₀ ≈ 588 N。该案例将双曲函数的微积分性质融入力学实际,计算弧长时熟练运用恒等式是解题关键。


7. 3D Vectors and Mechanical Equilibrium | 三维向量与力学平衡

A particle is held in equilibrium by three forces: F₁ = 3i + 2j − 4k N, F₂ = −i + 5j + 2k N, and an unknown force F₃. Determine F₃ and the angles it makes with each coordinate axis. Verify that the resultant force vector is zero.

一质点受三个力作用而处于平衡:F₁ = 3i + 2j − 4k N,F₂ = −i + 5j + 2k N,以及未知力 F₃。求 F₃ 的大小及其与各坐标轴的夹角,并验证合力为零。

Equilibrium: ΣF = 0 ⇒ F₃ = −(F₁ + F₂).

F₁ + F₂ = (3−1)i + (2+5)j + (−4+2)k = 2i + 7j − 2k. Thus F₃ = −2i − 7j + 2k N. Magnitude |F₃| = √(4+49+4) = √57 ≈ 7.55 N. Direction cosines: cos α = −2/√57 ≈ −0.265, α ≈ 105.4°; cos β = −7/√57 ≈ −0.927, β ≈ 157.9°; cos γ = 2/√57 ≈ 0.265, γ ≈ 74.6°. Clearly F₁ + F₂ + F₃ = 0.

由平衡条件得 F₃ = −(F₁ + F₂) = −2i − 7j + 2k N,模长为 √57 ≈ 7.55 N。方向角由余弦给出,α ≈ 105.4°, β ≈ 157.9°, γ ≈ 74.6°。相加后合力确为零。本例强化了三维向量加减与方向余弦的计算,并从物理平衡条件导出数学求解思路。


8. Statistical Hypothesis Testing: Lifetime of Light Bulbs | 统计假设检验:灯泡寿命案例

A manufacturer claims the mean lifetime of their LED bulbs is 15,000 hours. A consumer group tests 40 bulbs and finds a sample mean of 14,700 hours with a standard deviation of 1,800 hours. Test at the 5% significance level whether the true mean is less than claimed. State the null and alternative hypotheses, calculate the test statistic, and interpret the result.

某制造商声称其 LED 灯泡的平均寿命为 15,000 小时。消费者组织测试了 40 个灯泡,得到样本均值为 14,700 小时,标准差为 1,800 小时。在 5% 显著性水平下,检验真实均值是否低于声称值。写出原假设与备择假设,计算检验统计量并解释结果。

H₀: μ = 15000, H₁: μ < 15000 (one-tailed).

Using t-test: t = (x̄ − μ₀)/(s/√n) = (14700 − 15000)/(1800/√40) = −300/(1800/6.3249) ≈ −300/284.6 ≈ −1.054. Degrees of freedom = 39. Critical value t₀.₀₅,₃₉ ≈ −1.685 (one-tailed). Since −1.054 > −1.685, we fail to reject H₀. There is insufficient evidence to support the claim that the mean lifetime is less than 15,000 hours at the 5% level.

采用单侧 t 检验:统计量 t = (14700 − 15000)/(1800/√40) ≈ −1.054,自由度为 39。临界值 t₀.₀₅,₃₉ ≈ −1.685。因为 −1.054 > −1.685,不落在拒绝域内,故在 5% 显著性水平下不拒绝原假设,没有足够证据表明真实平均寿命低于 15,000 小时。该案例演练了假设检验的完整流程以及 p-value/临界值法的运用。


9. Newton-Raphson Method for Root Approximation | 牛顿—拉弗森法求根近似

An equation arising from fluid flow, x³ − 5x + 3 = 0, has a root near 0.7. Apply the Newton-Raphson iteration with initial guess x₀ = 0.7 to find this root correct to three decimal places. Show the iterative formula and each step.

流体力学问题导出方程 x³ − 5x + 3 = 0,在 0.7 附近有一个根。使用牛顿—拉弗森迭代法,初值取 x₀ = 0.7,求出精确至三位小数的根。给出迭代公式及每一步的值。

f(x) = x³ − 5x + 3, f'(x) = 3x² − 5. xn+1 = xn − f(xn)/f'(xn).

x₀ = 0.7: f(0.7)=0.343 − 3.5 + 3 = −0.157, f'(0.7)=1.47 − 5 = −3.53, x₁ = 0.7 − (−0.157)/(−3.53) = 0.7 − 0.0445 ≈ 0.6555. x₁ = 0.6555: f(0.6555)=0.2817 − 3.2775 + 3 = 0.0042, f'(0.6555)=1.288 − 5 = −3.712, x₂ = 0.6555 − 0.0042/(−3.712) ≈ 0.6566. x₂ = 0.6566: f(0.6566) ≈ 0.00005, x₃ = 0.6566. Converged to 0.657 to three decimal places.

迭代公式 xn+1 = xn − (xn³ − 5xn + 3)/(3xn² − 5)。从 0.7 开始,x₁ ≈ 0.6555,x₂ ≈ 0.6566,x₃ ≈ 0.6566,稳定在 0.657(三位小数)。该数值方法广泛应用于工程求解,本例通过详细计算揭示了二次收敛的速度和所需精度控制。


10. Advanced Integration: Partial Fractions and Substitution | 进阶积分技巧:部分分式与代换

Evaluate the definite integral ∫₁² (2x² + 3x + 1)/(x³ + 3x² + 2x) dx by splitting the rational function into partial fractions and integrating. This arises in computing the area under a thermodynamic response curve.

计算定积分 ∫₁² (2x² + 3x + 1)/(x³ + 3x² + 2x) dx,通过将有理函数拆分为部分分式并积分。该积分来自热力学响应曲线下的面积计算。

Factor denominator: x(x² + 3x + 2) = x(x+1)(x+2).

Set (2x²+3x+1)/[x(x+1)(x+2)] = A/x + B/(x+1) + C/(x+2). Solving gives A=1/2, B=1, C=1/2. The integral becomes ∫₁² (½/x + 1/(x+1) + ½/(x+2)) dx = [½ ln|x| + ln|x+1| + ½ ln|x+2|] from 1 to 2. At x=2: ½ ln2 + ln3 + ½ ln4 = ½ ln2 + ln3 + ln2 = (3/2) ln2 + ln3. At x=1: ½ ln1 + ln2 + ½ ln3 = 0 + ln2 + ½ ln3. Subtracting gives (3/2 ln2 − ln2) + (ln3 − ½ ln3) = ½ ln2 + ½ ln3 = ½ ln(6).

将分母分解为 x(x+1)(x+2),设部分分式后解得 A=½, B=1, C=½。积分结果为 [½ ln|x| + ln|x+1| + ½ ln|x+2|]₁² = (½ ln2 + ½ ln6)?仔细计算得差值为 ½ ln2 + ½ ln3 = ½ ln6。该定积分的求解综合运用了因式分解、部分分式和对数积分法则,是进阶微积分中典型的综合应用。


Published by TutorHao | Further Mathematics 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