1. 二项分布的四个关键条件:什么才算二项分布 | What Makes a Distribution Binomial: The Four Conditions
在 AS AQA 数学的统计单元中,二项分布是最常考的概率模型之一。要判断一个随机试验是否可以用二项分布来描述,必须同时满足四个条件。第一,试验重复的次数 n 是固定的,也就是说我们在试验开始前就知道一共要做多少次。第二,每次试验都是独立的,一次试验的结果不会影响另一次试验的结果。第三,每次试验只有两种可能的结果,通常称为成功和失败。第四,每次试验成功的概率 p 在整个试验过程中保持不变。这四个条件缺一不可,判断题目时最好把它们一条一条列出来对照。
A binomial distribution is one of the most frequently examined probability models in the statistics unit of AS AQA Mathematics. To decide whether a random experiment can be described by a binomial distribution, four conditions must hold simultaneously. First, the number of trials n is fixed: we know in advance how many trials will take place. Second, every trial is independent: the outcome of one trial does not affect the outcome of any other trial. Third, each trial has exactly two possible outcomes, usually called success and failure. Fourth, the probability of success p remains constant from trial to trial. All four conditions are essential, and in exam questions it is wise to list them one by one and check each against the scenario.
例如,抛一枚均匀硬币 20 次,记录正面朝上的次数 X。这里 n = 20 固定,每次抛掷相互独立,结果只有正面或反面两种,正面概率始终是 0.5,所以 X 服从二项分布,记作 X ~ B(20, 0.5)。反过来,如果从一副扑克牌中不放回地连续抽牌,每次抽到红桃的概率会随着抽牌而变化,独立性被破坏,这时就不能用二项分布,而应该考虑超几何分布或其他模型。很多同学丢分正是因为忽视了不放回抽样这一点。
For example, toss a fair coin 20 times and let X be the number of heads obtained. Here n = 20 is fixed, every toss is independent, there are only two outcomes, and the probability of heads is always 0.5, so X follows a binomial distribution, written X ~ B(20, 0.5). By contrast, if cards are drawn one after another from a deck without replacement, the probability of drawing a heart changes with each draw and independence is destroyed; a binomial model is then inappropriate and a hypergeometric model or another approach should be used instead. Many students lose marks precisely because they overlook the phrase without replacement.
2. 概率质量函数:P(X = r) 的计算公式 | The Probability Mass Function: Computing P(X = r)
当随机变量 X 服从二项分布 X ~ B(n, p) 时,恰好发生 r 次成功的概率由概率质量函数给出:P(X = r) = C(n, r) 乘以 p 的 r 次方,再乘以 (1 – p) 的 (n – r) 次方。这个公式看起来复杂,但每一部分都有明确的含义。C(n, r) 表示从 n 次试验中选出哪 r 次成功,共有多少种选法;p 的 r 次方表示这 r 次成功各自发生的概率;而 (1 – p) 的 (n – r) 次方表示其余 n – r 次失败各自发生的概率。三者相乘,就得到恰好 r 次成功的总概率。
When a random variable X follows a binomial distribution X ~ B(n, p), the probability of exactly r successes is given by the probability mass function: P(X = r) = C(n, r) multiplied by p to the power r, then multiplied by (1 – p) to the power (n – r). The formula looks complicated, but every part has a clear meaning. C(n, r) counts how many ways we can choose which r of the n trials are successes; p to the power r is the probability that those r successes each occur; and (1 – p) to the power (n – r) is the probability that the remaining n – r trials are all failures. Multiplying these together gives the total probability of exactly r successes.
举个例子,假设 X ~ B(10, 0.3),要求 P(X = 4)。先计算组合数 C(10, 4) = 210,再计算 0.3 的 4 次方约等于 0.0081,然后计算 0.7 的 6 次方约等于 0.1176。三者相乘,P(X = 4) 约等于 210 乘以 0.0081 再乘以 0.1176,结果约为 0.2001。在考试中,这类计算通常可以用计算器直接完成,但理解公式的结构仍然非常重要,因为后面的累积概率和假设检验都建立在这个基础之上。
As an example, suppose X ~ B(10, 0.3) and we want P(X = 4). First compute the combination C(10, 4) = 210, then 0.3 to the power 4 is about 0.0081, and 0.7 to the power 6 is about 0.1176. Multiplying the three together gives P(X = 4) approximately equal to 210 times 0.0081 times 0.1176, which is about 0.2001. In the exam this kind of calculation is usually done directly on a calculator, but understanding the structure of the formula is still essential, because cumulative probabilities and hypothesis testing later build on exactly this foundation.
3. 组合数 nCr:为什么公式里要有 C(n, r) | Combinations nCr: Why the Formula Counts Ways
组合数 C(n, r),也写作 nCr,表示从 n 个不同的对象中选出 r 个对象,不考虑顺序的选法总数。在二项分布中,它的作用是把所有可能的具体排列方式汇总成一种计数。例如 n = 4、r = 2 时,两次成功可能出现在第 1 和第 2 次、第 1 和第 3 次、第 1 和第 4 次、第 2 和第 3 次、第 2 和第 4 次、第 3 和第 4 次,一共 C(4, 2) = 6 种情况,每种情况的概率相同,所以总概率是单种情况的 6 倍。
The combination C(n, r), also written nCr, counts the number of ways to choose r objects from n distinct objects when order does not matter. In a binomial distribution its role is to aggregate all the specific arrangements into a single count. For example, with n = 4 and r = 2, the two successes can occur on trials 1 and 2, 1 and 3, 1 and 4, 2 and 3, 2 and 4, or 3 and 4: a total of C(4, 2) = 6 cases. Each case has the same probability, so the total probability is six times the probability of any single case.
组合数有两个重要的计算性质,考试中经常用到。第一,C(n, r) = C(n, n – r),选 r 个留下 n – r 个,和选 n – r 个留下 r 个本质上一样,例如 C(10, 7) = C(10, 3) = 120。第二,C(n, 0) = C(n, n) = 1,也就是说全部失败或全部成功的选法都只有一种。这些性质既能帮助检查计算结果,也能在计算较大组合数时简化运算。计算器上的 nCr 按键可以直接完成计算,但手算小数值时这些性质很实用。
Combinations have two important properties used frequently in exams. First, C(n, r) = C(n, n – r): choosing r and leaving n – r is the same as choosing n – r and leaving r, for example C(10, 7) = C(10, 3) = 120. Second, C(n, 0) = C(n, n) = 1: there is exactly one way for all trials to fail and exactly one way for all trials to succeed. These properties help check results and simplify calculations with larger numbers. The nCr key on a calculator does the job directly, but the properties are very useful when working small cases by hand.
4. 期望与方差:E(X) = np 与 Var(X) = np(1 – p) | Mean and Variance of a Binomial Distribution
二项分布的期望和方差有非常简洁的公式,是 AS 阶段必须熟练掌握的内容。如果 X ~ B(n, p),那么期望 E(X) = np,方差 Var(X) = np(1 – p)。期望的直觉理解是:如果成功的概率是 p,那么 n 次试验中平均会出现 np 次成功。例如一个射手每次命中目标的概率是 0.6,射击 25 次,那么平均命中次数就是 25 乘以 0.6,等于 15 次。这个结果不依赖于任何复杂的推导,直接套公式即可。
The mean and variance of a binomial distribution have very compact formulas that must be mastered at AS level. If X ~ B(n, p), then the expectation E(X) = np and the variance Var(X) = np(1 – p). The intuitive meaning of the expectation is: if the probability of success is p, then over n trials success occurs np times on average. For example, a shooter hits the target with probability 0.6 and fires 25 shots, so the expected number of hits is 25 times 0.6, which equals 15. This result needs no complicated derivation: just substitute into the formula.
方差公式同样重要,它描述了成功次数在均值附近的波动程度。继续上面的例子,Var(X) = 25 乘以 0.6 再乘以 0.4,等于 6,因此标准差是 6 的平方根,约为 2.45。注意当 p 越接近 0.5 时,方差越大,说明结果越不确定;当 p 接近 0 或 1 时,方差变小,因为几乎每次都得到同样的结果。考试中常把期望和方差放进同一道题里考查,或者在假设检验中用来构造检验统计量,所以两个公式必须背熟。
The variance formula is equally important: it describes how much the number of successes fluctuates around the mean. Continuing the example, Var(X) = 25 times 0.6 times 0.4 = 6, so the standard deviation is the square root of 6, about 2.45. Notice that when p is close to 0.5 the variance is larger, meaning the outcome is more uncertain; when p is close to 0 or 1 the variance is small, because nearly every trial produces the same result. Exams often ask for the mean and variance in the same question, or use them to construct test statistics in hypothesis testing, so both formulas must be memorised.
5. 计算器与统计表:快速求出 P(X = r) | Using Calculators and Statistical Tables to Find Probabilities
在 AQA 的 AS 数学考试中,考生可以使用科学计算器,多数现代计算器内置了二项分布功能。以常见型号为例,通常可以在分布菜单中找到 Binomial PD 和 Binomial CD 两个选项,前者计算单点概率 P(X = r),后者计算累积概率 P(X 小于等于 r)。使用时只需要输入 n、p 和 r 三个参数。例如求 X ~ B(15, 0.4) 时 P(X = 6),在 Binomial PD 中输入 n = 15、p = 0.4、x = 6,直接得到约 0.2066。
In the AQA AS Mathematics examination candidates may use a scientific calculator, and most modern calculators have built-in binomial functions. On common models you can usually find two options in the distribution menu: Binomial PD and Binomial CD. The first computes the single-point probability P(X = r), while the second computes the cumulative probability P(X less than or equal to r). You only need to enter three parameters: n, p and r. For example, to find P(X = 6) when X ~ B(15, 0.4), enter n = 15, p = 0.4 and x = 6 in Binomial PD, and the calculator returns about 0.2066.
统计表是另一种常用工具。AQA 公式书和历年试卷附录中通常提供二项分布累积概率表,表格按 n 和 p 排列,每一行对应不同的 r 值,给出 P(X 小于等于 r)。查表时先找到对应的 n 和 p 所在页面,再在行中找到 r,读出的数值就是累积概率。需要注意,表格给出的永远是 P(X 小于等于 r) 的形式,如果需要 P(X 大于等于 r) 或 P(X = r),必须自己通过互补法则转换,具体方法在下一节详细讲解。
Statistical tables are another common tool. The AQA formula booklet and past paper appendices usually include cumulative binomial probability tables arranged by n and p, with each row corresponding to a different value of r and giving P(X less than or equal to r). To use the table, find the page for the relevant n and p, locate r in the rows, and read off the cumulative probability. Remember that the table always gives probabilities of the form P(X less than or equal to r); if you need P(X greater than or equal to r) or P(X = r), you must convert using the complement rule, which is explained in detail in the next section.
6. 累积概率与互补法则:P(X 小于等于 r) 与 P(X 大于 r) 的转换 | Cumulative Probabilities and the Complement Rule
考试中遇到的大多数二项分布问题都涉及累积概率,而不是单个点的概率。最常见的转换关系有三条。第一,P(X 大于等于 r) = 1 减去 P(X 小于等于 r – 1),例如 P(X 大于等于 3) = 1 – P(X 小于等于 2)。第二,P(X 大于 r) = 1 – P(X 小于等于 r),例如 P(X 大于 4) = 1 – P(X 小于等于 4)。第三,P(X = r) = P(X 小于等于 r) 减去 P(X 小于等于 r – 1),例如 P(X = 5) = P(X 小于等于 5) – P(X 小于等于 4)。这三条规则本质上是同一件事:把不容易直接求的概率,用容易求的累积概率表示出来。
Most binomial problems in exams involve cumulative probabilities rather than single-point probabilities. There are three conversion relationships you will use again and again. First, P(X greater than or equal to r) = 1 – P(X less than or equal to r – 1): for example P(X greater than or equal to 3) = 1 – P(X less than or equal to 2). Second, P(X greater than r) = 1 – P(X less than or equal to r): for example P(X greater than 4) = 1 – P(X less than or equal to 4). Third, P(X = r) = P(X less than or equal to r) – P(X less than or equal to r – 1): for example P(X = 5) = P(X less than or equal to 5) – P(X less than or equal to 4). These three rules are really the same idea: express a probability that is awkward to find directly in terms of cumulative probabilities that are easy to find.
一个典型的考试场景是:某产品合格率为 0.85,随机抽查 12 件,问至少 10 件合格的概率。这里 X ~ B(12, 0.85),要求 P(X 大于等于 10)。直接用计算器 Binomial CD 输入下限 10、上限 12,或者利用互补法则写成 1 – P(X 小于等于 9)。两种方法得到相同结果约 0.7358。关键在于写清楚自己用的是哪一种转换,并把中间步骤展示出来,这样即使最终数值算错,也能拿到方法分。AQA 的评分标准非常看重步骤的完整呈现。
A typical exam scenario: the pass rate of a product is 0.85, 12 items are randomly checked, and we want the probability that at least 10 are acceptable. Here X ~ B(12, 0.85) and we need P(X greater than or equal to 10). Either use the calculator Binomial CD with lower limit 10 and upper limit 12, or apply the complement rule and write 1 – P(X less than or equal to 9). Both methods give the same result, about 0.7358. The key is to state clearly which conversion you are using and to show the intermediate steps, so that even if the final value is wrong you still earn method marks. The AQA mark scheme places great weight on showing full working.
7. 分布的图像形状:对称性与偏斜 | The Shape of the Distribution: Symmetry and Skew
二项分布的形状完全由参数 n 和 p 决定。当 p = 0.5 时,分布关于期望 np 对称,成功和失败的可能性完全对等。当 p 小于 0.5 时,成功是稀有事件,分布向右偏斜,也就是说低取值一侧的概率更大,分布的尾巴拖向右边的高取值方向。当 p 大于 0.5 时情况相反,失败成为稀有事件,分布向左偏斜,尾巴拖向左边。n 越大,分布越接近对称,并且越接近正态分布的钟形曲线。
The shape of a binomial distribution is completely determined by the parameters n and p. When p = 0.5 the distribution is symmetric about the mean np, because success and failure are equally likely. When p is less than 0.5, success is a rare event and the distribution is skewed to the right: probabilities are larger on the low-value side and the tail stretches towards higher values. When p is greater than 0.5 the situation reverses, failure becomes rare, the distribution is skewed to the left, and the tail stretches towards lower values. The larger n becomes, the more symmetric the distribution, and the closer it approaches the bell shape of a normal distribution.
理解形状对考试很有帮助。第一,它可以帮助你检查答案是否合理:如果 p 很小而你算出的概率集中在很大的 r 值附近,那很可能算错了。第二,在假设检验中,临界区域总是位于分布的尾部,理解尾巴在哪一侧能帮你确定单侧检验的方向。第三,在后续学习正态近似时,p 接近 0.5 且 n 足够大是使用近似的判断标准。AS 阶段不要求精确画图,但要求能够根据 n 和 p 判断分布的大致形态,并说明理由。
Understanding the shape is helpful in exams for several reasons. First, it lets you check whether an answer is plausible: if p is small but your probabilities concentrate around large values of r, something is wrong. Second, in hypothesis testing the critical region always lies in a tail of the distribution, and knowing which tail helps you determine the direction of a one-tailed test. Third, when you later meet the normal approximation, p close to 0.5 together with sufficiently large n is the criterion for using it. At AS level you are not required to draw precise graphs, but you must be able to describe the general form of the distribution from n and p, with reasons.
8. 应用场景判断:什么时候应该用二项分布 | Choosing the Binomial Model: When It Applies
应用题的第一步永远是判断模型,而不是急着套公式。一个场景适合二项分布,需要同时满足我们在第一节讲过的四个条件:固定次数 n、独立试验、两种结果、恒定概率 p。在真实语境中,这些条件往往隐藏在文字描述里。看到随机抽查 n 件、连续射击 n 次、独立地做 n 次尝试这类表述,通常是二项分布的信号。看到不放回、人口有限、一次抽多个这类表述,则要警惕独立性不成立。
The first step in any applied question is always to choose the model, not to rush into formulas. A scenario suits a binomial distribution when the four conditions from Section 1 all hold: fixed number of trials n, independent trials, two outcomes, and constant probability p. In real-world contexts these conditions are often hidden in the wording. Phrases such as randomly inspect n items, fire n shots in succession, or perform n independent attempts usually signal a binomial distribution. Phrases such as without replacement, finite population, or draw several at once warn you that independence may fail.
还要注意一种常见陷阱:题目给出的是比例而不是次数。例如,某校 60% 的学生乘公交上学,随机调查 8 名学生,问恰好 5 人乘公交的概率。这里需要把比例转换成概率 p = 0.6,n = 8,然后求 P(X = 5)。另一个陷阱是成功与失败的定义要前后一致:一旦把乘公交定义为成功,p 就是 0.6,后续所有计算都必须沿用这个定义。定义不一致是应用大题中最容易丢分的错误之一。
Watch out for a common trap: the question gives a proportion rather than a count. For example, 60% of students at a school travel by bus; 8 students are randomly surveyed; find the probability that exactly 5 travel by bus. Here the proportion becomes the probability p = 0.6, n = 8, and we compute P(X = 5). Another trap is consistency in defining success: once travelling by bus is defined as success with p = 0.6, every later calculation must use this same definition. Inconsistent definitions are among the most frequent causes of lost marks in longer applied questions.
9. AQA 真题实战:一道完整的 6 分题 | Worked Example: A Full AQA-Style Exam Question
让我们完整地做一道 AQA AS 风格的真题。题目:一家工厂生产的螺丝,有 2% 不符合规格。质检员随机抽取 20 颗螺丝检查。(a) 求恰好 3 颗不合格的概率;(b) 求至少 1 颗不合格的概率;(c) 求不合格颗数的期望与方差。首先判断模型:每次抽取相互独立,n = 20 固定,结果只有合格与不合格两种,p = 0.02 恒定,因此 X ~ B(20, 0.02),其中 X 表示不合格的颗数。
Let us work through a complete AQA AS-style question. Problem: 2% of the screws produced by a factory do not meet specification. An inspector randomly selects 20 screws. (a) Find the probability that exactly 3 are defective; (b) find the probability that at least 1 is defective; (c) find the expected number of defective screws and its variance. First choose the model: each draw is independent, n = 20 is fixed, outcomes are only defective or not, and p = 0.02 is constant, so X ~ B(20, 0.02), where X is the number of defective screws.
(a) P(X = 3) = C(20, 3) 乘以 0.02 的 3 次方再乘以 0.98 的 17 次方。C(20, 3) = 1140,0.02 的 3 次方 = 0.000008,0.98 的 17 次方约等于 0.7093,三者相乘得到约 0.00647,也就是约 0.65%。(b) 至少 1 颗不合格,用互补法则:P(X 大于等于 1) = 1 – P(X = 0) = 1 – 0.98 的 20 次方。0.98 的 20 次方约等于 0.6676,所以结果约为 0.3324,约 33.2%。注意这一问如果直接逐项累加 20 项概率会非常繁琐,互补法则是明显的捷径。
(a) P(X = 3) = C(20, 3) times 0.02 cubed times 0.98 to the power 17. C(20, 3) = 1140, 0.02 cubed = 0.000008, and 0.98 to the power 17 is about 0.7093; multiplying gives about 0.00647, that is about 0.65%. (b) At least 1 defective: use the complement rule, P(X greater than or equal to 1) = 1 – P(X = 0) = 1 – 0.98 to the power 20. 0.98 to the power 20 is about 0.6676, so the result is about 0.3324, roughly 33.2%. Notice that adding twenty probabilities term by term would be extremely tedious; the complement rule is the obvious shortcut.
(c) 期望 E(X) = np = 20 乘以 0.02 = 0.4,方差 Var(X) = np(1 – p) = 20 乘以 0.02 再乘以 0.98 = 0.392。这道题的三问分别考查了单点概率、互补法则和期望方差公式,覆盖了二项分布最核心的三个考点。在考场上,先判断模型并写出 X ~ B(20, 0.02) 这一行,通常就能拿到模型分;即使后续计算出错,只要公式和步骤清楚,方法分也能保住大半。
(c) The expectation E(X) = np = 20 times 0.02 = 0.4, and the variance Var(X) = np(1 – p) = 20 times 0.02 times 0.98 = 0.392. The three parts of this question test the single-point probability, the complement rule, and the mean and variance formulas, covering the three most central skills of the binomial distribution. In the exam, writing the model statement X ~ B(20, 0.02) first usually earns the model mark; even if later arithmetic goes wrong, clear formulas and working still secure most of the method marks.
10. 高频错误与检查清单 | Common Mistakes and a Checking Checklist
根据历年 AQA 评分报告,二项分布题目中学生的典型错误集中在五个方面。第一,忘记先判断模型,直接套公式,遇到不放回抽样仍然用二项分布。第二,混淆 P(X 大于等于 r) 与 P(X 大于 r),互补法则里差一个 1 的边界写错。第三,把 p 与 1 – p 弄反,例如题目给出合格率 0.85 却把 p 当作 0.15 使用。第四,计算器中输入参数的顺序或单位错误,尤其是把累积概率错当成单点概率。第五,期望和方差公式记忆混淆,把方差写成 np 或者漏掉 (1 – p) 因子。
According to past AQA examiner reports, student errors in binomial questions concentrate on five areas. First, failing to choose the model first and applying the formula directly, so that binomial is still used for sampling without replacement. Second, confusing P(X greater than or equal to r) with P(X greater than r), writing the boundary in the complement rule off by one. Third, swapping p and 1 – p, for example using p = 0.15 when the question gives a pass rate of 0.85. Fourth, entering parameters in the wrong order or wrong units in the calculator, especially mistaking a cumulative probability for a single-point probability. Fifth, mixing up the mean and variance formulas, writing the variance as np or omitting the factor (1 – p).
交卷前用三分钟做一次快速检查,可以避免大部分低级错误。第一,检查概率值是否在 0 到 1 之间,并且单点概率不应该比附近的累积概率大。第二,检查互补结果:P(X 大于等于 r) 加上 P(X 小于等于 r – 1) 必须等于 1。第三,检查期望是否在 0 到 n 之间,方差是否为正。第四,重新读一遍题目,确认成功事件的定义和 p 的取值与题目一致。把这些检查写进平时的练习习惯,考试时就会变成自然动作。
Spending three minutes on a quick check before handing in the paper avoids most careless errors. First, verify that every probability lies between 0 and 1 and that a single-point probability is not larger than the nearby cumulative probability. Second, check complement pairs: P(X greater than or equal to r) plus P(X less than or equal to r – 1) must equal 1. Third, check that the mean lies between 0 and n and that the variance is positive. Fourth, reread the question and confirm that the definition of success and the value of p agree with the wording. Build these checks into daily practice and they become automatic in the exam hall.
11. 核心公式速查表 | Key Formulas at a Glance
| 内容 Item | 公式 Formula | 示例 Example |
| 模型 Model | X ~ B(n, p) | X ~ B(20, 0.02) |
| 单点概率 Point probability | P(X = r) = C(n, r) p^r (1 – p)^(n – r) | P(X = 3) 约 0.00647 |
| 互补法则 Complement | P(X 大于等于 r) = 1 – P(X 小于等于 r – 1) | P(X 大于等于 1) = 1 – 0.98^20 |
| 期望 Mean | E(X) = np | E(X) = 0.4 |
| 方差 Variance | Var(X) = np(1 – p) | Var(X) = 0.392 |
这张表浓缩了二项分布的全部核心公式。建议考前把这张表抄写一遍,同时在心里默念每个公式对应的典型题型:看到恰好几次想单点概率,看到至少或至多几次想互补法则,看到平均或波动想期望和方差。公式本身不多,但必须在理解条件的基础上使用,否则模型选错,公式再熟也无从谈起。把这张表与前面各节的例题结合起来复习,效果最好。
This table condenses all the core formulas of the binomial distribution. Before the exam, copy the table out once and silently recite the typical question type for each formula: exactly r times suggests the point probability, at least or at most suggests the complement rule, average or fluctuation suggests the mean and variance. The formulas themselves are few, but they must be used on the basis of understanding the conditions; if the model is chosen wrongly, even perfect formula recall is useless. Revising this table together with the worked examples in earlier sections gives the best results.
Summary | 总结
本文围绕 AS AQA 数学统计单元的二项分布,系统梳理了四个关键条件、概率质量函数、组合数的含义、期望与方差公式、计算器与统计表的使用方法、累积概率与互补法则、分布形状的判断、应用场景的模型选择、一道完整的真题实战以及高频错误清单。二项分布是 A 等级数学中最容易通过练习拿满分的章节之一,因为它题型固定、公式有限、套路清晰。只要每次做题都先判断四个条件,再写模型,再套公式,最后用互补法则检查,正确率就能稳步提升。
This article systematically covers the binomial distribution in the AS AQA Mathematics statistics unit: the four key conditions, the probability mass function, the meaning of combinations, the mean and variance formulas, using calculators and statistical tables, cumulative probabilities and the complement rule, judging the shape of the distribution, choosing the model in applied contexts, a complete worked exam question, and a checklist of common mistakes. The binomial distribution is one of the easiest chapters in A-level Mathematics to master through practice, because the question types are fixed, the formulas are few, and the routines are clear. As long as you check the four conditions first, then write down the model, then apply the formula, and finally verify with the complement rule, your accuracy will improve steadily.
更多咨询请联系16621398022(同微信)