📚 PDF资源导航

Year 12 CAIE Further Mathematics: Interdisciplinary Applied Questions Training | 跨学科综合题型训练

📚 Year 12 CAIE Further Mathematics: Interdisciplinary Applied Questions Training | 跨学科综合题型训练

The Cambridge International AS & A Level Further Mathematics syllabus encourages students to apply pure mathematical techniques in a wide range of contexts. This article presents a collection of interdisciplinary problem-solving exercises that bridge advanced pure content with physics, economics, biology, engineering and finance. Working through these examples will deepen your understanding and prepare you for the style of applied questions that frequently appear in CAIE examinations.

剑桥国际 AS 与 A Level 进阶数学课程大纲倡导学生在广泛情境中运用纯数学方法。本文提供一系列跨学科解题训练,将高阶纯数内容与物理、经济学、生物学、工程学和金融学连接起来。通过这些例子练习,你既能加深理解,也能为 CAIE 考试中常见的应用题型做好准备。

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

In alternating current theory, voltages and currents are represented as complex numbers, with resistance replaced by impedance Z. A typical problem asks you to find the total impedance of a series RLC circuit: Z = R + iωL + 1/(iωC), where ω = 2πf. Simplifying using algebraic division and conjugates yields Z in the form a + ib, from which the phase angle φ = arctan(b/a) can be deduced.

在交流电理论中,电压和电流用复数表示,电阻被阻抗 Z 取代。典型问题要求计算串联 RLC 电路的总阻抗:Z = R + iωL + 1/(iωC),其中 ω = 2πf。通过代数除法与共轭化简,将 Z 写成 a + ib 的形式,进而可推得相位角 φ = arctan(b/a)。

Worked example: For R = 10 Ω, L = 0.1 H, C = 50 μF, and f = 50 Hz, first compute ω = 100π. Then Z = 10 + i10π + 1/(i5π). Multiply numerator and denominator of the last term by i: 1/(i5π) = -i/(5π) ≈ -i/(15.708) = -0.0637i. Thus Z = 10 + i(31.416 – 0.0637) = 10 + 31.352i. The magnitude |Z| = √(10² + 31.352²) ≈ 32.9 Ω, and the phase angle φ = tan⁻¹(31.352/10) ≈ 72.3°.

例题:设 R = 10 Ω,L = 0.1 H,C = 50 μF,f = 50 Hz,先求 ω = 100π。于是 Z = 10 + i10π + 1/(i5π)。将最后一项分子分母同乘以 i:1/(i5π) = -i/(5π) ≈ -i/15.708 = -0.0637i。故 Z = 10 + i(31.416 – 0.0637) = 10 + 31.352i。阻抗模 |Z| = √(10² + 31.352²) ≈ 32.9 Ω,相角 φ = tan⁻¹(31.352/10) ≈ 72.3°。

Linking complex arithmetic to physical quantities such as resonance (when Im(Z) = 0) provides a solid example of how pure mathematics underpins engineering design.

将复数运算与谐振(Im(Z) = 0 时)等物理量联系起来,清晰地展示了纯数学如何支撑工程设计。


2. Matrices and Economic Input-Output Models | 矩阵与经济投入产出模型

The Leontief input-output model uses matrices to describe how industries depend on each other. Given a technology matrix A and a demand vector d, the final output vector x must satisfy x = Ax + d, giving x = (I – A)⁻¹d. The inverse exists if the economy is productive, i.e., all principal minors of I – A are positive.

里昂惕夫投入产出模型利用矩阵刻画产业间的依赖关系。给定技术矩阵 A 和最终需求向量 d,总产出向量 x 满足 x = Ax + d,解得 x = (I – A)⁻¹d。若经济有生产力,即 I – A 的所有主子式为正,则逆矩阵存在。

Example: Consider two sectors. A = ⎛ 0.2 0.3 ⎞
⎝ 0.4 0.1 ⎠
, d = ( 50 )
( 30 )
. Then I – A = ⎛ 0.8 -0.3 ⎞
⎝ -0.4 0.9 ⎠
. Determinant Δ = 0.72 – 0.12 = 0.60. Hence (I – A)⁻¹ = (1/0.60) ⎛ 0.9 0.3 ⎞
⎝ 0.4 0.8 ⎠
= ⎛ 1.5 0.5 ⎞
⎝ 0.667 1.333 ⎠
. Multiplying by d gives x = ( 1.5×50 + 0.5×30 )
(0.667×50 + 1.333×30)
= ( 90 )
(73.35)
. Thus sector 1 must produce 90 units, sector 2 about 73.35 units.

例题:考虑两个部门。技术矩阵 A 与最终需求 d 如上,则 I – A 的行列式 Δ = 0.8×0.9 – (-0.3)×(-0.4) = 0.72 – 0.12 = 0.60。于是 (I – A)⁻¹ = (1/0.60) (0.9, 0.3; 0.4, 0.8) 计算得输出向量 x = (90, 73.35)ᵀ。因此部门 1 需生产 90 单位,部门 2 约 73.35 单位。

This purely mathematical procedure is widely used in national accounting and supply-chain planning, showing the power of matrix algebra beyond abstract theory.

这一纯数学方法广泛应用于国民经济核算和供应链规划,彰显了矩阵代数超越抽象理论的力量。


3. Differential Equations in Population Dynamics | 微分方程在种群动力学中的应用

The exponential model dP/dt = kP gives P(t) = P₀eᵏᵗ, but the logistic model dP/dt = rP(1 – P/K) is more realistic for limited resources. Solving this separable ODE yields P(t) = K / (1 + ((K – P₀)/P₀)e⁻ʳᵗ). Such equations arise frequently in ecology and epidemiology.

指数模型 dP/dt = kP 的解为 P(t) = P₀eᵏᵗ,但逻辑斯蒂模型 dP/dt = rP(1 – P/K) 在资源有限时更为现实。求解此可分离的一阶常微分方程得到 P(t) = K / (1 + ((K – P₀)/P₀)e⁻ʳᵗ)。这类方程在生态学与流行病学中经常出现。

Application: A bacteria culture initially has 100 cells and a carrying capacity of 1000. After 2 hours, the population is 300. Use the logistic model to find r. We have P(2) = 300, so 300 = 1000 / (1 + (900/100)e⁻²ʳ). Rearranging gives 1 + 9e⁻²ʳ = 1000/300 = 10/3. Hence 9e⁻²ʳ = 7/3, e⁻²ʳ = 7/27. Taking natural logs: -2r = ln(7/27), so r = (1/2)ln(27/7) ≈ 0.5 ln(3.857) ≈ 0.675 hour⁻¹.

应用:某细菌培养初始有 100 个细胞,环境容纳量 1000。2 小时后种群达到 300。利用逻辑斯蒂模型求 r。我们有 P(2) = 300,代入公式得 300 = 1000 / (1 + 9e⁻²ʳ),整理后 1 + 9e⁻²ʳ = 10/3,故 9e⁻²ʳ = 7/3,e⁻²ʳ = 7/27。取自然对数得 -2r = ln(7/27),解得 r = 0.5 ln(27/7) ≈ 0.675 小时⁻¹。

Connecting differential equations with real data refines students’ skills in both calculus and parameter estimation, vital for further statistics and modelling.

将微分方程与实际数据结合,可锻炼学生的微积分和参数估计能力,这对进阶统计和建模至关重要。


4. Vectors and Static Equilibrium of Forces | 向量与力系静态平衡

In mechanics, a particle is in equilibrium if the vector sum of all forces equals zero. This leads to solving simultaneous vector equations. For instance, a weight suspended by two strings in three dimensions: given the string tension directions and the weight W = -W k, find tensions T₁ and T₂.

在力学中,若质点所受合外力向量和为零,则质点平衡。这归结为求解向量方程组。例如,一个重物由两根三维空间中的绳子悬挂,已知绳拉力方向和重力 W = -W k,求拉力 T₁ 与 T₂。

Numerical case: A mass of 5 kg hangs where W = -5g k. Two strings pull along unit vectors u = (2i + 3j – 6k)/7 and v = (-i + 2j – 2k)/3. Let tensions be T₁ and T₂. Equilibrium: T₁u + T₂v + W = 0. Resolve into components: (2T₁/7 – T₂/3)i + (3T₁/7 + 2T₂/3)j + (-6T₁/7 – 2T₂/3 – 5g)k = 0. The i and j equations give: 2T₁/7 = T₂/3 → T₂ = (6/7)T₁. Substitute into j: 3T₁/7 + 2/3 × (6T₁/7) = 3T₁/7 + 12T₁/21 = 3T₁/7 + 4T₁/7 = T₁ = 0? Wait, that implies T₁ = 0, which is impossible. Let’s choose a consistent set: actually we need to ensure the vectors are correct. Let’s design a solvable system. Better: u = (2i + 3j – 6k)/7, v = (-i + 3j – 2k)/√14 (unit). Then adjust to get a non-trivial solution. But for illustration, we can present a simpler 2D case.

To keep it clear, consider a 2D case: a mass of 10 kg hangs from two strings making angles 30° and 45° with the horizontal. Resolving: T₁cos30° = T₂cos45°, T₁sin30° + T₂sin45° = 10g. Solving yields T₁ ≈ 89.7 N, T₂ ≈ 71.7 N. This demonstrates vector resolution and equilibrium conditions.

我们用一个清晰二维例子:质量 10 kg,两根绳与水平夹角分别为 30° 和 45°。分解得 T₁cos30° = T₂cos45°,T₁sin30° + T₂sin45° = 10g。解得 T₁ ≈ 89.7 N,T₂ ≈ 71.7 N,展示了向量分解与平衡条件。

The link between pure vector algebra and physical forces strengthens spatial reasoning, essential for Further Mechanics modules.

纯向量代数与物理力学的联系能强化空间推理能力,这对进阶力学模块非常关键。


5. Hyperbolic Functions and Catenary Cables | 双曲函数与悬链线

A uniform flexible cable hanging under its own weight takes the shape of a catenary, described by y = a cosh(x/a), where a is a constant related to horizontal tension and weight per unit length. The arc length from x = 0 to x = L is s = a sinh(L/a). This uses the hyperbolic identity cosh²u – sinh²u = 1.

均质柔性绳索在自重下悬挂的形状是悬链线,方程为 y = a cosh(x/a),其中 a 是与水平张力及单位长度重量相关的常数。从 x = 0 到 x = L 的弧长为 s = a sinh(L/a),计算中用到恒等式 cosh²u – sinh²u = 1。

Problem: A cable has a = 20 m. Find the sag at the midpoint if the towers are 80 m apart and the cable is attached at equal heights. The distances are symmetric: x = -40 to 40. The height at the tower (x = 40) is yₜ = 20 cosh(40/20) = 20 cosh2 ≈ 20 × 3.7622 = 75.244 m. At the midpoint x = 0, yₘ = 20 cosh0 = 20. The sag is yₜ – yₘ = 55.24 m. Also, the total length of cable between towers is 2 × 20 sinh(40/20) = 40 sinh2 ≈ 40 × 3.6269 = 145.08 m.

问题:设电缆参数 a = 20 m,塔间距 80 m,悬挂点等高。塔处 x = 40 的高度 yₜ = 20 cosh(40/20) = 20 cosh2 ≈ 75.244 m,中点 x = 0 处 yₘ = 20。则垂度 = 55.24 m。塔间总缆长约 2 × 20 sinh2 ≈ 145.08 m。

This direct application of hyperbolic functions shows their real-world relevance beyond abstract calculus.

这一双曲函数直接应用展现了其在微积分抽象之外的实际价值。


6. Polar Coordinates and Orbital Mechanics | 极坐标与轨道力学

In polar form, conic sections can be written as r = l / (1 + e cos θ), where e is the eccentricity and l is the semi-latus rectum. For a planet orbiting the Sun, Newton’s law gives elliptical orbits with the Sun at one focus. Given orbit parameters, students can compute speed at perihelion using conservation of angular momentum.

在极坐标下,圆锥曲线可表示为 r = l / (1 + e cos θ),e 为偏心率,l 为半通径。行星绕太阳运行时,牛顿定律给出以太阳为焦点的椭圆轨道。给定轨道参数,可借助角动量守恒计算近日点速率。

Example: Earth’s orbit has e ≈ 0.0167 and semi-major axis a = 1 AU. The perihelion distance r_p = a(1 – e) = 0.9833 AU. The aphelion distance r_a = a(1 + e) = 1.0167 AU. If the orbital speed at aphelion is v_a = 29.29 km/s, then by conservation of angular momentum r_a v_a = r_p v_p, giving v_p = 29.29 × (1.0167/0.9833) ≈ 30.29 km/s. This uses basic polar properties and algebraic manipulation.

例:地球轨道偏心率 e ≈ 0.0167,半长轴 a = 1 AU。近日点距离 r_p = a(1 – e) = 0.9833 AU,远日点 r_a = 1.0167 AU。若远日点速率 v_a = 29.29 km/s,则角动量守恒 r_a v_a = r_p v_p 给出 v_p ≈ 30.29 km/s。这里融合了极坐标性质和代数运算。

Integrating polar geometry with physics deepens understanding of conic sections and parametric differentiation.

将极坐标几何与物理结合,可加深对圆锥曲线及参数微分的理解。


7. Group Theory and Symmetry in Crystals | 群论与晶体对称性

Finite groups such as the dihedral group D₄ describe the symmetries of a square. In crystallography, point groups classify crystal symmetries. Determining the order of a rotation axis and the group multiplication table trains abstract thinking and is transferable to molecular vibrations.

有限群如二面体群 D₄ 描述正方形的对称性。在晶体学中,点群可将晶体对称性分类。确定旋转轴阶数和群乘法表的练习能训练抽象思维,并可迁移至分子振动分析。

Task: List all 8 symmetries of a square: identity, rotations by 90°, 180°, 270°, and four reflections. The composition of a 90° rotation r and a reflection m gives rm = m’, a different reflection. Using the relations r⁴ = e, m² = e, and m r m = r⁻¹, you can construct the group table. Then find all subgroups: order 2 subgroups like {e, rotation by 180°} and {e, reflection}, and order 4 subgroups like {e, r, r², r³} and {e, r², m, r²m}.

任务:列出正方形所有 8 种对称:恒等、旋转 90°、180°、270° 以及四个反射。90° 旋转 r 与反射 m 复合得 rm = 另一反射 m’。利用关系 r⁴ = e, m² = e, m r m = r⁻¹ 可构建群表。然后找出所有子群:2 阶子群如 {e, 180°旋转} 和 {e, 反射},4 阶子群如 {e, r, r², r³} 以及 {e, r², m, r²m}。

These structures underpin symmetry arguments in chemistry and physics, making group theory more tangible.

这些结构支撑着化学和物理中的对称性论证,使群论更为具体。


8. Series and Financial Mathematics | 级数与金融数学

Geometric series naturally model annuities and loan repayments. The present value of an annuity of regular payments P over n periods at interest rate i per period is PV = P × (1 – (1+i)⁻ⁿ)/i. This formula derives directly from the sum of a finite geometric progression.

几何级数天然适用于年金和贷款偿还模型。每期支付 P、利率 i、共 n 期的普通年金现值为 PV = P × (1 – (1+i)⁻ⁿ)/i。该公式直接源于有限等比数列求和。

Problem: You want to accumulate $10,000 in 5 years by making equal annual deposits into an account paying 4% per annum. Find the required deposit D. The future value of an annuity due (payments at start) is FV = D × ((1+i)ⁿ – 1)/i × (1+i). Solving 10000 = D × ((1.04)⁵ – 1)/0.04 × 1.04. Compute (1.04)⁵ ≈ 1.2166529, numerator = 0.2166529, divided by 0.04 gives 5.4163225, times 1.04 yields 5.6329754. Hence D = 10000 / 5.6329754 ≈ $1775.26.

问题:你希望通过每年初等额存款在 5 年后积累 $10,000,年利率 4%。设存款额为 D。期初年金终值公式 FV = D × ((1.04)⁵ – 1)/0.04 × 1.04。计算得因子约 5.63298,故 D ≈ $1775.26。

Such exercises connect pure series summation with practical financial planning, reinforcing indices and logarithms.

这类练习将纯级数求和与实用财务规划联系起来,巩固指数与对数技能。


9. Probability, Conditional Events and Medical Testing | 概率、条件事件与医学检测

Bayes’ theorem, P(A|B) = P(B|A)P(A)/P(B), is crucial for interpreting diagnostic tests. Suppose a disease occurs in 1% of the population, and a test is 95% sensitive (true positive) and 90% specific (true negative). For a positive result, the probability of having the disease is P(D|+) = (0.95 × 0.01) / (0.95 × 0.01 + 0.10 × 0.99) ≈ 0.0876, i.e., only 8.8%. This counterintuitive result highlights the importance of base rates.

贝叶斯定理 P(A|B) = P(B|A)P(A)/P(B) 对解读诊断测试至关重要。假设某病在人群中发病率为 1%,检验灵敏度 95% (真阳性率),特异度 90% (真阴性率)。若为阳性,真正患病的概率 P(D|+) = (0.95×0.01) / (0.95×0.01 + 0.10×0.99) ≈ 0.0876,仅约 8.8%。这一反直觉结果凸显了基础概率的重要性。

Calculating such probabilities combines working with fractions, decimals, and tree diagrams — core Further Statistics skills. It also trains critical thinking for real-life data interpretation.

计算这类概率综合了分数、小数和树状图等进阶统计核心技能,同时也锻炼了对现实数据解读的批判性思维。


10. Proof by Induction in Computer Science Algorithms | 数学归纳法与计算机算法

Mathematical induction is not only a fundamental proof technique but also underpins algorithm correctness. For example, proving that a recursive binary search algorithm correctly returns the index of a target value in a sorted array involves induction on the size of the array.

数学归纳法不仅是基础证明方法,也是算法正确性的基石。例如,证明递归二分查找算法能在有序数组中正确返回目标索引,需要用归纳法对数组长度进行论证。

Outline: Base case: array of length 1, trivial. Inductive step: assume algorithm works for lengths < k; for length k, the algorithm compares target with middle element, then recurses on left or right subarray of size ≤ ⌊k/2⌋, which by induction returns the correct index. Such proofs logically connect discrete mathematics and computational thinking.

论证概要:基础情况:长度为 1 的数组,平凡。归纳步骤:假设算法对长度小于 k 的数组有效;对于长度 k,算法比较目标与中间元素,然后在左或右子数组(长度 ≤ ⌊k/2⌋)上递归,由归纳假设返回正确索引。这类证明将离散数学与计算思维逻辑连接。

This cross-disciplinary approach also appears in code complexity analysis using recurrence relations, a natural extension of FP2 series.

这种跨学科方法也体现在利用递推关系分析代码复杂度上,是 FP2 级数的自然延伸。


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