📖 引言 | Introduction
二项分布(Binomial Distribution)是A-Level数学(Edexcel、CAIE、OCR、AQA等考试局)统计模块中的核心内容,几乎每年必考。无论是在S1还是S2中,二项分布都占据着重要地位——从基础的概率计算、均值与方差,到进阶的假设检验(Hypothesis Testing)和正态近似(Normal Approximation),考查范围十分广泛。
The Binomial Distribution is a cornerstone of the Statistics component in A-Level Mathematics across all major exam boards (Edexcel, CAIE, OCR, AQA). It appears almost every year in exam papers. From basic probability calculations, mean and variance, to more advanced hypothesis testing and normal approximation, the range of examination is extensive and demands thorough understanding.
本文将从零开始,系统讲解二项分布的所有核心知识点,配以中英双语解析和典型真题示例,帮助你全面掌握这一重要主题,在考试中稳拿高分。
This article will systematically cover all core knowledge points of the Binomial Distribution from scratch, with bilingual explanations and typical past paper examples, helping you master this important topic thoroughly and secure top marks in your exams.
🔢 一、二项分布的定义与条件 | Definition and Conditions
什么是二项分布?| What is a Binomial Distribution?
二项分布描述的是在固定次数的独立试验中,每次试验只有”成功”或”失败”两种可能结果时,”成功”出现次数的概率分布。这是离散概率分布中最基础、最重要的一种。
The Binomial Distribution describes the probability distribution of the number of “successes” in a fixed number of independent trials, where each trial has only two possible outcomes: “success” or “failure”. This is one of the most fundamental and important discrete probability distributions.
举个简单例子:抛一枚公平硬币10次,正面朝上的次数X就服从二项分布 B(10, 0.5)。又如一道四选一的选择题,随机猜5道题,猜对的题目数Y服从 B(5, 0.25)。
A simple example: if you flip a fair coin 10 times, the number of heads X follows a Binomial Distribution B(10, 0.5). Similarly, if you randomly guess 5 multiple-choice questions (each with 4 options), the number of correct answers Y follows B(5, 0.25).
四个必要条件 | Four Essential Conditions
一个随机变量X服从二项分布 B(n, p),必须同时满足以下四个条件:
A random variable X follows a Binomial Distribution B(n, p) if and only if all four of the following conditions are met:
- 固定试验次数(Fixed number of trials):试验总次数 n 是事先确定的固定值。例如”抛10次硬币”,n=10。
- 每次试验独立(Independent trials):各次试验的结果互不影响。前一次的结果不会改变后一次的概率。
- 每次只有两种结果(Two possible outcomes):通常称为”成功”(Success)和”失败”(Failure)。
- 成功概率恒定(Constant probability of success):每次试验中”成功”的概率 p 保持不变。
- Fixed number of trials: The total number of trials n is predetermined. For example, “flip a coin 10 times”, n=10.
- Independent trials: The outcome of each trial does not affect any other trial. The probability remains unchanged regardless of previous results.
- Two possible outcomes per trial: Typically labeled as “Success” and “Failure”.
- Constant probability of success: The probability p of “success” remains the same for every trial.
⚠️ 考试易错点:很多题目会问”为什么二项分布是合适的模型”(Give reasons why a binomial distribution may be a suitable model)。你需要从上述条件中选取最相关的两条进行说明,通常选择”固定试验次数”和”每次试验独立”最为稳妥。
⚠️ Common exam pitfall: Many questions ask “Give reasons why a binomial distribution may be a suitable model”. You need to select the two most relevant conditions from above — typically “fixed number of trials” and “independent trials” are the safest choices.
📐 二、二项分布的概率公式 | The Binomial Probability Formula
核心公式 | Core Formula
若 X ~ B(n, p),则恰好获得 r 次成功的概率为:
If X ~ B(n, p), the probability of obtaining exactly r successes is:
其中 nCr(也写作 nCr 或 C(n, r))是组合数,表示从 n 次试验中选出 r 次成功的方式数:
Where nCr (also written as nCr or C(n, r)) is the binomial coefficient, representing the number of ways to choose r successes from n trials:
公式三部分的理解 | Understanding the Three Components
这个公式可以分解为三个逻辑部分:
- nCr:从n次试验中选择哪r次是成功——”有多少种排列方式”
- p^r:r次成功的概率相乘——”成功部分的概率”
- (1−p)^(n−r):剩余的(n−r)次失败的概率相乘——”失败部分的概率”
The formula can be decomposed into three logical components:
- nCr: Choose which r trials out of n are successes — “how many arrangements”
- p^r: Multiply the probability of r successes — “the success probability component”
- (1−p)^(n−r): Multiply the probability of the remaining (n−r) failures — “the failure probability component”
真题示例 | Exam-Style Example
题目:Bhim和Joe打羽毛球,每局Bhim输的概率为0.2(独立)。求在9局比赛中,Bhim恰好输3局的概率。
Question: Bhim and Joe play badminton. For each game, independently of all others, the probability that Bhim loses is 0.2. Find the probability that, in 9 games, Bhim loses exactly 3 of the games.
解析:令 X = Bhim输的局数,则 X ~ B(9, 0.2)。
Solution: Let X = number of games Bhim loses, then X ~ B(9, 0.2).
= 84 × 0.008 × 0.262144
= 0.176 (3 s.f.)
📊 三、均值与方差 | Mean and Variance
公式 | Formulas
若 X ~ B(n, p),则:
If X ~ B(n, p), then:
Var(X) = σ² = np(1 − p) = npq
(其中 q = 1 − p)
理解与应用 | Understanding and Application
均值 E(X) = np 的直觉理解非常直观:如果你做n次试验,每次成功概率是p,那么”平均”你会成功np次。例如,抛硬币100次(p=0.5),你预期正面大约出现50次。
The intuition behind E(X) = np is straightforward: if you conduct n trials, each with success probability p, then on average you expect np successes. For example, flipping a coin 100 times (p=0.5), you expect roughly 50 heads.
方差 Var(X) = np(1−p) 反映了实际结果围绕均值的离散程度。当 p=0.5 时方差最大(因为结果最不确定),当p接近0或1时方差最小(结果几乎确定)。
The variance Var(X) = np(1−p) reflects how spread out the actual results are around the mean. The variance is maximized when p=0.5 (most uncertainty), and minimized as p approaches 0 or 1 (near certainty).
真题示例 | Exam-Style Example
题目:经过训练后,Bhim每局输的概率降至0.05。他们再打60局,求Bhim输的局数的均值和方差。
Question: After coaching, the probability Bhim loses each game is 0.05. They play 60 more games. Calculate the mean and variance for the number of games Bhim loses.
解析 | Solution:X ~ B(60, 0.05)
Var(X) = 60 × 0.05 × 0.95 = 2.85
🧪 四、假设检验 | Hypothesis Testing with Binomial Distribution
基本概念 | Basic Concepts
假设检验是A-Level数学S2中的重点和难点,也是历年考试的高频考点。二项分布的假设检验用于判断一个声称的概率p是否可信。
Hypothesis testing is a key and challenging topic in A-Level Maths S2, and a frequently tested area in past papers. Binomial hypothesis testing is used to determine whether a claimed probability p is credible based on sample data.
检验步骤 | Steps for Hypothesis Testing
- 设立假设 | State the hypotheses:H₀(原假设):p = 声称值;H₁(备择假设):p ≠ 声称值(双尾)或 p < 声称值 / p > 声称值(单尾)
- 确定显著性水平 | Set significance level:通常为5%或1%
- 计算临界区域 | Find the critical region:在H₀成立的假设下,找出使概率 ≤ 显著性水平的X值范围
- 比较与结论 | Compare and conclude:如果观测值落在临界区域内,拒绝H₀;否则不拒绝H₀
- State the hypotheses: H₀ (null hypothesis): p = claimed value; H₁ (alternative hypothesis): p ≠ claimed value (two-tailed) or p < claimed value / p > claimed value (one-tailed)
- Set the significance level: Typically 5% or 1%
- Find the critical region: Under H₀, find the range of X values where the probability ≤ significance level
- Compare and conclude: If the observed value falls in the critical region, reject H₀; otherwise, do not reject H₀
真题示例 | Exam-Style Example
题目:一家公司声称1/4的螺栓有缺陷。随机抽取50个螺栓检验,实际发现8个有缺陷。用5%显著性水平进行双尾检验,并评论公司的声明。
Question: A company claims that a quarter of the bolts are faulty. A random sample of 50 bolts is tested, and 8 are found faulty. Test at the 5% significance level (two-tailed) and comment on the company’s claim.
解析 | Solution:
X ~ B(50, 0.25) under H₀
下临界区域(Lower tail):
P(X ≤ 6) = 0.0194 < 0.025 ✓
P(X ≤ 7) = 0.0453 > 0.025 ✗
→ 下临界值 = 6,临界区域 X ≤ 6
上临界区域(Upper tail):
P(X ≥ 19) = 1 − P(X ≤ 18) = 0.0287
P(X ≥ 18) = 1 − P(X ≤ 17) = 0.0551
→ 上临界值 = 19,临界区域 X ≥ 19
结论:观测值8不在临界区域内(6 < 8 < 19),不拒绝H₀。
没有足够证据质疑公司关于1/4螺栓有缺陷的说法。
实际显著性水平 = P(X ≤ 6) + P(X ≥ 19) = 0.0194 + 0.0287 = 0.0481 (4.81%)
单尾 vs 双尾 | One-Tailed vs Two-Tailed
双尾检验(Two-tailed):H₁: p ≠ p₀。将显著性水平平分到两侧尾部。用于判断”是否有变化”。
单尾检验(One-tailed):H₁: p < p₀ 或 H₁: p > p₀。全部显著性水平集中在单侧尾部。用于判断”是否增加”或”是否减少”。
Two-tailed test: H₁: p ≠ p₀. The significance level is split equally between both tails. Used to determine “has it changed?”
One-tailed test: H₁: p < p₀ or H₁: p > p₀. The full significance level is concentrated on one tail. Used to determine “has it increased?” or “has it decreased?”
⚠️ 考试关键提示:选择单尾还是双尾取决于题目语境。如果题目问”是否有变化”→双尾;如果问”是否减少了”→单尾(左尾);如果问”是否增加了”→单尾(右尾)。选错直接丢全分!
⚠️ Critical exam tip: The choice between one-tailed and two-tailed depends on the question context. “Has it changed?” → two-tailed. “Has it decreased?” → one-tailed (lower tail). “Has it increased?” → one-tailed (upper tail). Choosing wrong loses all marks!
🔄 五、正态近似与泊松近似 | Normal and Poisson Approximations
正态近似的使用条件 | Conditions for Normal Approximation
当 n 很大时,二项分布的计算变得繁琐,此时可以用正态分布来近似。使用条件是:
When n is large, binomial calculations become cumbersome. In such cases, the normal distribution can be used as an approximation. The conditions are:
(有些教材要求 np > 10 且 n(1−p) > 10,以考试局要求为准)
连续性校正 | Continuity Correction
这是正态近似中最容易出错的地方!因为二项分布是离散的,正态分布是连续的,所以必须进行连续性校正(Continuity Correction):
This is the most error-prone part of normal approximation! Because the binomial is discrete and the normal is continuous, you must apply a continuity correction:
| 二项分布 | Binomial | 正态近似 | Normal Approximation |
|---|---|
| P(X = r) | P(r−0.5 < Y < r+0.5) |
| P(X ≤ r) | P(Y < r+0.5) |
| P(X < r) | P(Y < r−0.5) |
| P(X ≥ r) | P(Y > r−0.5) |
| P(X > r) | P(Y > r+0.5) |
其中 Y ~ N(np, np(1−p))。记住口诀:”≤ 和 ≥ 要把边界扩出去0.5;< 和 > 要把边界缩回来0.5″。
Where Y ~ N(np, np(1−p)). Remember the rule: for ≤ and ≥, extend the boundary outward by 0.5; for < and >, pull the boundary inward by 0.5.
泊松近似 | Poisson Approximation
当 n 大、p 小(通常 np < 5)时,更适合用泊松近似:λ = np,X ~ Po(λ)。这也是Edexcel S2的常考题型。
When n is large and p is small (typically np < 5), the Poisson approximation is more appropriate: λ = np, X ~ Po(λ). This is a common question type in Edexcel S2.
真题示例 | Exam-Style Example
题目:Bhim训练后与Joe打60局,每局输的概率为0.05。用合适的近似方法求Bhim输超过4局的概率。
Question: After coaching, Bhim plays 60 games against Joe. The probability he loses each game is 0.05. Using a suitable approximation, calculate the probability that Bhim loses more than 4 games.
解析 | Solution:X ~ B(60, 0.05)
np = 3 < 5,适合用泊松近似(Poisson approximation):
λ = np = 3,X ~ Po(3)
P(X > 4) = 1 − P(X ≤ 4)
= 1 − [P(0) + P(1) + P(2) + P(3) + P(4)]
≈ 1 − 0.8153 = 0.1847 (4 d.p.)
💡 技巧提示:当 n 大、p 小(np < 5)时,更适合用泊松近似。这也是A-Level考试中的重要考点,Edexcel S2尤其爱考!
💡 Pro tip: When n is large and p is small (np < 5), the Poisson approximation is more appropriate. This is also an important topic in A-Level exams — Edexcel S2 loves testing this!
📝 学习建议与应考策略 | Study Tips and Exam Strategy
1. 熟练掌握公式 | Master the Formulas
二项分布的概率公式、均值方差公式、正态近似条件和连续性校正规则——这些都是”肌肉记忆”级别的基本功。建议制作一张公式卡片,考前反复默写。
The binomial probability formula, mean and variance formulas, normal approximation conditions, and continuity correction rules — these should become “muscle memory”. Make a formula card and practice writing them from memory before the exam.
2. 大量刷Past Papers | Extensive Past Paper Practice
二项分布题目类型相对固定,通过大量刷题可以快速熟悉出题套路。重点关注:假设检验的假设陈述(H₀/H₁写法)、临界区域的确定、以及”给出二项分布合适理由”这类文字题。
The question types for binomial distribution are relatively predictable. Extensive practice will quickly familiarize you with the patterns. Focus on: hypothesis statement writing (H₀/H₁), critical region determination, and “give reasons why binomial is suitable” written questions.
3. 区分近似方法的选择 | Know When to Use Which Approximation
这是考试的经典”陷阱”:np > 5 且 n(1−p) > 5 → 正态近似;n 大 p 小 → 泊松近似。判断错误直接导致整题0分。
This is a classic exam “trap”: np > 5 AND n(1−p) > 5 → Normal approximation; large n, small p → Poisson approximation. Getting this wrong costs you all marks for the entire question.
4. 善用计算器 | Use Your Calculator Efficiently
现代科学计算器(如Casio fx-991EX、TI-84等)内置了二项分布概率计算功能(Binomial PD/CD)。学会使用这些功能可以大幅节省时间并减少计算错误。
Modern scientific calculators (Casio fx-991EX, TI-84, etc.) have built-in binomial probability functions (Binomial PD/CD). Learning to use these can save significant time and reduce computational errors.
5. 注意答题格式 | Pay Attention to Answer Format
A-Level数学对答题格式有严格要求。假设检验必须完整写出:① H₀和H₁ ② 定义分布(如 X ~ B(50, 0.25))③ 计算临界值/概率 ④ 比较并得出结论(”reject H₀”或”do not reject H₀”)⑤ 用题目语境总结结论。
A-Level Maths has strict requirements for answer formatting. Hypothesis testing must include in full: ① H₀ and H₁ ② Define the distribution (e.g., X ~ B(50, 0.25)) ③ Calculate critical values/probabilities ④ Compare and conclude (“reject H₀” or “do not reject H₀”) ⑤ Summarize the conclusion in context.
🎯 总结 | Summary
二项分布是A-Level数学统计部分最核心的主题之一,贯穿S1和S2两个模块。从基础的概率计算到进阶的假设检验,每一步都需要扎实的理解和大量的练习。掌握本文涵盖的所有知识点——定义条件、概率公式、均值方差、假设检验、正态/泊松近似——你就能在考试中从容应对任何二项分布相关的题目。
The Binomial Distribution is one of the most central topics in A-Level Maths Statistics, spanning both S1 and S2 modules. From basic probability calculations to advanced hypothesis testing, every step requires solid understanding and extensive practice. Master all the knowledge points covered in this article — definition and conditions, probability formula, mean and variance, hypothesis testing, and normal/Poisson approximation — and you will be well-prepared to handle any binomial distribution question in your exam with confidence.
📧 如需更多A-Level学习资料或一对一辅导,欢迎联系:
16621398220(同微信)
Discover more from tutorhao
Subscribe to get the latest posts sent to your email.
Categories: ALEVEL