📚 PDF资源导航

Practical Investigation Guide for A-Level Edexcel Mathematics | A-Level Edexcel 数学实验操作指南

📚 Practical Investigation Guide for A-Level Edexcel Mathematics | A-Level Edexcel 数学实验操作指南

The Edexcel A-Level Mathematics specification encourages students to develop a deep understanding of mathematical concepts through practical investigation and the use of technology. Experimental activities, such as numerical methods, statistical simulations, and mechanics modelling, not only reinforce theoretical knowledge but also enhance problem-solving skills and prepare students for the applied nature of exam questions. This guide provides a hands-on approach to key topics, offering step-by-step experiments that can be performed using calculators, spreadsheets, or mathematical software.

Edexcel A-Level 数学大纲鼓励学生通过实践探究和技术运用来加深对数学概念的理解。诸如数值方法、统计模拟和力学建模等实验活动,不仅能巩固理论知识,还能提升解题能力,并为考试中的应用型问题做好准备。本指南针对关键主题提供了动手操作方法,并给出了使用计算器、电子表格或数学软件即可完成的逐步实验。

1. Using Iteration to Solve Equations Experimentally | 使用迭代法实验求解方程

Iteration is a core numerical method for finding approximate solutions to equations of the form f(x)=0. The equation is rearranged into x = g(x), and a sequence is generated by xₙ₊₁ = g(xₙ). The convergence depends on the behaviour of g'(x) near the root. This experiment lets you explore how the choice of rearrangement and initial guess affect the iteration.

迭代法是求方程 f(x)=0 近似解的核心数值方法。将方程变形为 x = g(x),然后通过递推公式 xₙ₊₁ = g(xₙ) 生成序列。收敛性取决于 g'(x) 在根附近的表现。本实验让你探索不同变形方式和初始值对迭代的影响。

xₙ₊₁ = g(xₙ)

Step 1: Take the equation x² − 5x + 4 = 0 and rearrange it to x = (x² + 4)/5. This form gives g(x) = (x² + 4)/5. Check that g'(x) = 2x/5, and near the root x=1 we have |g'(1)| = 0.4 < 1, suggesting convergence.

步骤1:以方程 x² − 5x + 4 = 0 为例,将其变形为 x = (x² + 4)/5。这时 g(x) = (x² + 4)/5。检验 g'(x) = 2x/5,在根 x=1 附近 |g'(1)| = 0.4 < 1,预示收敛。

Step 2: Start with x₀ = 0 and use your calculator’s ANS function. Enter 0, then repeatedly apply ANS = (ANS² + 4)/5. Record the sequence: 0, 0.8, 0.928, 0.972, 0.988, 0.995, 0.998, … It converges to 1, one of the exact roots.

步骤2:从 x₀ = 0 开始,使用计算器的 ANS 功能。输入 0,然后反复执行 ANS = (ANS² + 4)/5。记录数列:0,0.8,0.928,0.972,0.988,0.995,0.998,… 它收敛到1,即准确根之一。

Step 3: Try an alternative rearrangement, such as x = √(5x − 4). For x₀ = 2, you will find the sequence moves away from the root 1, illustrating divergence. Experiment with several starting values and record the number of iterations to reach a stable value.

步骤3:尝试另一种变形,例如 x = √(5x − 4)。取 x₀ = 2,你会发现序列远离根1,说明了发散。用多个初值实验,并记录达到稳定值的迭代次数。


2. Newton-Raphson Method: A Numerical Experiment | 牛顿-拉夫森法:数值实验

The Newton-Raphson method uses the tangent line to find an improved approximation to a root. It converges quadratically when the initial guess is sufficiently close. The iterative formula is given below.

牛顿-拉夫森法利用切线求出根的更优近似值。当初值足够靠近时,该方法具有二次收敛速度。迭代公式如下。

xₙ₊₁ = xₙ − f(xₙ) / f'(xₙ)

Experiment: Consider the equation x³ − 2x − 5 = 0, which has a single real root near 2. Define f(x)=x³−2x−5, then f'(x)=3x²−2. Starting with x₀=2, compute successive approximations.

实验:考虑方程 x³ − 2x − 5 = 0,它在2附近有一个实根。令 f(x)=x³−2x−5,则 f'(x)=3x²−2。从 x₀=2 开始,计算逐次近似值。

Step 1: x₁ = 2 − (2³−2·2−5)/(3·2²−2) = 2 − (8−4−5)/(12−2) = 2 − (−1)/10 = 2.1.

步骤1:x₁ = 2 − (2³−2·2−5)/(3·2²−2) = 2 − (8−4−5)/(12−2) = 2 − (−1)/10 = 2.1。

Step 2: x₂ = 2.1 − (2.1³−4.2−5)/(3·2.1²−2). With a calculator, x₂ ≈ 2.0946. Step 3: x₃ ≈ 2.09455148. The root accurate to 8 decimal places is obtained in few steps. Graph the function and observe the tangent intersections.

步骤2:x₂ = 2.1 − (2.1³−4.2−5)/(3·2.1²−2)。用计算器求得 x₂ ≈ 2.0946。步骤3:x₃ ≈ 2.09455148。几步内即得到精确到小数点后8位的根。画出函数图像,观察切线与x轴的交点。


3. Investigating the Large Data Set with Sampling Experiments | 利用大型数据集进行抽样实验

Edexcel provides a Large Data Set (LDS) covering weather data from several locations. Using the LDS, you can simulate random sampling, systematic sampling, and stratified sampling. This experiment helps you compare sample statistics and understand sampling variation.

Edexcel 提供了涵盖多个地点天气数据的大型数据集 (LDS)。利用 LDS,你可以模拟简单随机抽样、系统抽样和分层抽样。该实验帮助你比较样本统计量并理解抽样变异性。

Step 1: Extract a variable such as daily maximum temperature from one station. Use a random number generator to select 30 days for a simple random sample. Calculate the sample mean and compare it with the population mean for the whole year.

步骤1:抽取一个变量,如某观测站的每日最高气温。用随机数生成器选取30天作为简单随机样本。计算样本均值,并与全年总体均值比较。

Step 2: Take a systematic sample by choosing every 12th day starting from a random point. Compute the sample mean again and note how systematic sampling can match the population mean if there is no hidden periodicity.

步骤2:从一个随机起点开始,每隔11天选取一天(即每第12天)作为系统样本。再次计算样本均值,注意若无隐藏周期性,系统抽样能与总体均值吻合较好。

Step 3: Stratify by months and select proportional samples from each month. Compare the efficiency of each method by examining the spread of the sample mean over many trials.

步骤3:按月分层,并按比例从各月抽取样本。通过多次试验,比较各抽样方法下样本均值的离散程度,评估效率。


4. Simulating Probability Distributions | 模拟概率分布

Simulations bring probability distributions to life. Using a calculator or spreadsheet, you can generate thousands of random observations from a binomial or Poisson distribution and compare the empirical frequencies with theoretical probabilities.

模拟使概率分布变得直观。利用计算器或电子表格,你可以生成二项分布或泊松分布的数千个随机观测值,并将经验频率与理论概率进行比较。

Experiment for Binomial B(10, 0.3): Generate 200 random numbers from B(10, 0.3) using randBin(10,0.3,200) on a TI calculator or equivalent. Construct a frequency table for the number of successes (0 to 10). For each k, compute the relative frequency and compare it with P(X=k) = C(10,k) × (0.3)ᵏ × (0.7)¹⁰⁻ᵏ.

二项分布 B(10, 0.3) 实验:使用 TI 计算器的 randBin(10,0.3,200) 或等价命令生成200个随机数。构建成功次数 (0至10) 的频数表。对每个 k,计算相对频率,并与理论概率 P(X=k) = C(10,k) × (0.3)ᵏ × (0.7)¹⁰⁻ᵏ 比较。

As you increase the number of simulations to 1000, the empirical probabilities converge to the theoretical ones, confirming the law of large numbers. Plot both distributions on the same axes to visualise the match.

当模拟次数增加到1000时,经验概率会收敛到理论值,验证了大数定律。将两个分布绘制在同一坐标轴上,直观展示吻合程度。


5. Exploring the Central Limit Theorem through Simulation | 通过模拟探究中心极限定理

The Central Limit Theorem (CLT) states that the distribution of the sample mean approaches a normal distribution as the sample size increases, regardless of the population’s distribution. You can demonstrate this with a simple simulation.

中心极限定理指出,随着样本容量增大,样本均值的分布趋近于正态分布,无论总体分布如何。你可以通过简单模拟来演示这一定理。

Step 1: Generate a large number of values from a non-normal distribution, for example, a uniform distribution on [0,10] or a discrete distribution like the roll of a die (1–6). Define this as the population.

步骤1:从一个非正态分布生成大量数值,例如 [0,10] 上的均匀分布,或掷骰子得到的离散分布 (1–6)。将此作为总体。

Step 2: Draw many samples of size n = 5 from the population, calculate each sample mean, and repeat 500 times. Construct a histogram of these sample means. Note that the shape still shows some skewness or flatness.

步骤2:从总体中抽取众多容量为 n = 5 的样本,计算每个样本均值,重复500次。绘制这些样本均值的直方图。注意此时形状仍有一定的偏斜或扁平。

Step 3: Increase the sample size to n = 30 and repeat. The histogram of the sample means now appears approximately bell-shaped and symmetric. The standard deviation of the sample means is roughly σ/√n, where σ is the population standard deviation.

步骤3:将样本容量增至 n = 30 并重复。此时样本均值的直方图呈现出近似钟形且对称的形态。样本均值的标准差大致为 σ/√n,其中 σ 是总体标准差。


6. Linear Regression and Least Squares: A Practical Experiment | 线性回归与最小二乘法:实操实验

Fitting a regression line by the method of least squares is a key statistical skill. In an experiment, you can collect your own bivariate data, such as (hours of study, test score) for a group of students, and compute the regression coefficients manually.

用最小二乘法拟合回归线是一项关键统计技能。在实验中,你可以收集自己的双变量数据,如一组学生的(学习时长,测验成绩),然后手动计算回归系数。

Given data pairs (xᵢ, yᵢ), the slope b = S_xy / S_xx, where S_xy = Σ(xᵢ−x̄)(yᵢ−ȳ) and S_xx = Σ(xᵢ−x̄)². The intercept a = ȳ − b·x̄.

给定数据对 (xᵢ, yᵢ),斜率 b = S_xy / S_xx,其中 S_xy = Σ(xᵢ−x̄)(yᵢ−ȳ),S_xx = Σ(xᵢ−x̄)²。截距 a = ȳ − b·x̄。

Step 1: Enter the data into your calculator lists and compute the means x̄ and ȳ. Use the statistics menu to find Σx, Σy, Σx², Σxy. Step 2: Calculate b and a, then write the equation y = a + bx. Step 3: For each xᵢ, compute the predicted ŷᵢ and the residual yᵢ − ŷᵢ. Sum the squared residuals to verify the least-squares minimum. Plot the data and the regression line on graph paper or using software.

步骤1:将数据录入计算器列表,计算均值 x̄ 和 ȳ。利用统计菜单求出 Σx、Σy、Σx²、Σxy。步骤2:计算 b 和 a,写出方程 y = a + bx。步骤3:对每个 xᵢ,计算预测值 ŷᵢ 和残差 yᵢ − ŷᵢ。求残差平方和以验证最小二乘最小值。在坐标纸或软件上画出数据点和回归直线。


7. Mechanics Modelling: Validating Equations with Experimental Data | 力学建模:用实验数据验证方程

Mechanics in A-Level Mathematics often relies on simplified models. You can design a simple experiment to test the constant acceleration equation s = ut + ½at². For a freely falling object starting from rest, s = ½gt².

A-Level 数学中的力学常依赖于简化模型。你可以设计一个简单实验来检验匀加速运动方程 s = ut + ½at²。对于从静止开始自由下落的物体,s = ½gt²。

Using a stopwatch and a measured height, drop a small dense object from various heights s and record the time t to fall. Repeat each drop several times to reduce random error. Plot s against t². A straight line through the origin with gradient ½g should result, allowing you to estimate g ≈ 9.8 m/s².

使用秒表和测量好的高度,从不同高度 s 释放一个小而重的物体,记录下落时间 t。每次释放重复多次以减少随机误差。绘制 s 对 t² 的图线,应得到过原点的直线,斜率为 ½g,从而估计 g ≈ 9.8 m/s²。

This experiment reinforces the idea that real data have scatter, and a line of best fit must be drawn to test the model. Discuss sources of error, such as air resistance and reaction time, and how they could be minimised.

该实验强化了如下观念:真实数据存在散布,必须画出最佳拟合线来检验模型。讨论空气阻力、反应时间等误差来源,以及如何将其最小化。


8. Graphical Investigations: Transformation of Functions | 图形探究:函数的变换

Understanding the effects of parameter changes on the graph of y = f(x) is essential. With a graphing tool, experiment with transformations y = a f(bx + c) + d and observe the individual impact of each parameter.

理解参数变化对 y = f(x) 图像的影响至关重要。使用绘图工具,实验变换 y = a f(bx + c) + d,观察每个参数的独立效应。

Start with a base function, for instance f(x) = sin x. Modify a to observe vertical stretching: a > 1 stretches, 0 < a < 1 compresses, while negative a reflects in the x-axis. Change b to see horizontal scaling: period becomes 2π/|b|. Adjust c to shift horizontally, and adjust d for vertical translation. Repeat with other functions such as f(x) = ln x or f(x) = eˣ.

从一个基本函数开始,例如 f(x) = sin x。改变 a 观察纵向伸缩:a > 1 拉伸,0 < a < 1 压缩,负 a 关于 x 轴反射。改变 b 观察横向缩放:周期变为 2π/|b|。调整 c 实现水平平移,调整 d 实现纵向平移。换用其他函数如 f(x) = ln x 或 f(x) = eˣ 重复实验。

Sketch the transformed graphs by hand, marking key points and asymptotes. This experiment prepares you for sketching transformations quickly in exams and helps you link algebraic equations to geometric changes.

手动绘制变换后的草图,标出关键点和渐近线。该实验有助于你在考试中快速绘制变换图形,并建立代数方程与几何变化之间的联系。


9. Using Technology: GeoGebra and Graphing Calculators | 使用技术:GeoGebra与图形计算器

Modern mathematical software and graphing calculators allow dynamic investigation of calculus, statistics, and geometry. GeoGebra, in particular, provides sliders for parameters and immediate graphical feedback, making it ideal for experimentation.

现代数学软件和图形计算器可实现微积分、统计与几何的动态探究。GeoGebra 尤其提供了参数滑块和即时的图形反馈,使其成为理想的实验工具。

Experiment with definite integrals: Define a function f(x), create sliders for lower and upper limits, and display the area under the curve as a Riemann sum. Vary the number of rectangles n from 5 to 50 to see the approximation approach the exact integral value. Use the same tool to investigate the derivative function and the relationship f'(x) = 0 at stationary points.

用定积分实验:定义一个函数 f(x),为积分上下限创建滑块,并以黎曼和形式显示曲线下方面积。将矩形数目 n 由5变化到50,观察近似值趋近精确积分值。使用相同工具探究导函数以及 f'(x) = 0 与驻点的关系。

Graphing calculators can solve equations numerically, find tangents, perform statistical regressions, and simulate distributions. Mastering these tools not only supports learning but is also required for the calculator papers in Edexcel’s exam series.

图形计算器能数值求解方程、求切线、执行统计回归并模拟分布。熟练掌握这些工具不仅能辅助学习,也是 Edexcel 考试系列中计算器试卷的必备技能。


10. Hypothesis Testing Experiments: Simulating p-values | 假设检验实验:模拟p值

Hypothesis testing can feel abstract until you simulate the process. By generating many samples under the null hypothesis, you can visualise the critical region and see how the significance level relates to the probability of a Type I error.

在亲手模拟之前,假设检验可能显得抽象。通过在零假设下生成大量样本,你可以直观看到拒绝域,并理解显著性水平与第一类错误概率的关系。

Suppose the null hypothesis is p = 0.5 for a binomial test with n = 20. Set your calculator to generate 200 values from B(20, 0.5). For each simulated sample, record the number of successes. Count how many samples fall in the critical region for a one-tailed test with significance level 5%. For a two-tailed test, use the lower and upper 2.5% tails.

假设对 n = 20 的二项检验,原假设为 p = 0.5。设置计算器从 B(20, 0.5) 生成200个值。对每个模拟样本,记录成功次数。统计落入显著性水平5%的单尾检验拒绝域的样本数。对于双尾检验,使用下2.5%和上2.5%尾部。

Repeat the simulation for a true value p = 0.3 and observe the power of the test — the proportion of samples correctly rejecting H₀. This concrete approach deepens your understanding of critical values, p-values, and the trade-off between Type I and Type II errors.

改用真实值 p = 0.3 重复模拟,观察检验的功效——正确拒绝 H₀ 的样本比例。这种具体的方法能加深你对临界值、p值以及第一类与第二类错误权衡的理解。


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