Q1 — Probability in Normal Distribution(正态分布概率计算)
Question (EN):
A variable follows a normal distribution with mean and standard deviation .
Find the probability that is between and :
.
📖 点击查看翻译
题目(中文):
已知随机变量 服从均值 、标准差 的正态分布。
求 取值在 到 之间的概率,即:
。
📖 点击查看答案
标准化:
查表:,
结果:
Variable Formula Value 结论: 约有 的数据位于均值两侧一个标准差范围内。
📝 点击查看解析
思路 / 解析:
- 使用标准化公式 。
- 将 区间转为 区间。
- 用标准正态表或 Excel 函数
=NORM.S.DIST(z,TRUE)查得概率。- 此结果符合经验法则(68% 在 ±1σ 内)。
Q2 — Finding z for Given Probability(根据给定概率求 z 值)
Question (EN): Find the -score that corresponds to the top of a standard normal distribution.
📖 点击查看翻译
题目(中文):
求出标准正态分布中右尾概率为 时对应的 值。
📖 点击查看答案
因为右尾为 ,则左尾为 。
查表得
Probability Formula Result Right-tail - Left-tail - 结论: 当右尾为 5% 时,。
📝 点击查看解析
思路 / 解析:
- 右尾 → 左尾 。
- 查标准正态表或使用 Excel 函数
=NORM.S.INV(0.95)。- 该 z 值常用于 90% 置信区间(双尾各 5%)。
Q3 — Using Excel to Compute Normal Probabilities(使用 Excel 计算正态分布概率)
Question (EN):
A factory produces light bulbs with lifespans normally distributed with mean hours and standard deviation hours.
Use Excel functions to find:
a)
b)
c)
📖 点击查看翻译
题目(中文):
某工厂生产的灯泡寿命服从均值 小时、标准差 小时的正态分布。
使用 Excel 函数求:
a)
b)
c)
📖 点击查看答案
使用 Excel 函数
=NORM.DIST(x, mean, stdev, TRUE):a)
b)
c)
Event Excel Formula Probability =NORM.DIST(1100,1200,100,TRUE)=1 - NORM.DIST(1300,1200,100,TRUE)difference of above 结论: 约 的灯泡寿命介于 1100–1300 小时之间。
📝 点击查看解析
思路 / 解析:
- 使用 Excel 中的
NORM.DIST计算累积概率。- 对称性使得左尾与右尾概率相等(均为 15.87%)。
- 区间概率由两侧累积概率之差得出。
Q4 — Finding X Value from Given Probability(根据给定概率求原始值 X)
Question (EN):
The average daily sales of an online store follow a normal distribution with mean and standard deviation .
Find the sales amount such that only 10% of days exceed this value.
📖 点击查看翻译
题目(中文):
某电商每日销售额服从均值 、标准差 的正态分布。
求使得仅有 10% 的日期销售额超过该值的 。
📖 点击查看答案
右尾概率 ,左尾概率 。
Step Formula Result Left-tail 结论: 当销售额为 $251.26 时,仅有 10% 的日期超过该值。
📝 点击查看解析
思路 / 解析:
- 右尾 10% 转为左尾 90%。
- 查表或 Excel
=NORM.S.INV(0.90)得 z 值。- 代入 求出原始销售额阈值。
- 实际意义:该值代表日销售额的第 90 百分位。
Q5 — Two-Tailed Interval from Confidence Level(根据置信水平求双尾区间)
Question (EN):
In a standard normal distribution, determine the values that bound the middle 95% of the data.
That is, find and such that .
📖 点击查看翻译
题目(中文):
在标准正态分布中,求出能包含 95% 数据的双侧 值,即 。
📖 点击查看答案
由于中间为 95%,双尾各占 。
Tail Formula Value Left 2.5% Right 2.5% 结论: 在区间 内时覆盖约 的样本。
📝 点击查看解析
思路 / 解析:
- 置信水平 。
- 双尾各 。
- 查表或 Excel
=NORM.S.INV(0.025)与=NORM.S.INV(0.975)。- 该区间即为 95% 置信界限常用的 z 值范围。
Q6 — Comparing Two Firms’ Quality Control Scores(比较两家公司质量得分)
Question (EN):
Company A’s defect rate follows a normal distribution with and .
Company B’s defect rate has and .
For a random sample with observed defect rates of (A) and (B),
compare the z-scores and determine which company performs worse relative to its distribution.
📖 点击查看翻译
题目(中文):
公司 A 的次品率服从均值 、标准差 ;
公司 B 的次品率服从均值 、标准差 。
若抽样观察到的次品率分别为 A: ,B: ,
比较两者的 Z 分数,判断哪家公司表现相对更差。
📖 点击查看答案
计算标准化分数:
Company Formula -score A B 结论: 公司 B 的 更高,说明其相对偏离均值更远、表现更差。
📝 点击查看解析
思路 / 解析:
- 使用标准化公式 。
- 比较两家公司偏离各自平均水平的程度。
- 较高的 z 表示偏离更大,因此 B 的质量波动相对更严重。
- 说明:z-score 用于不同分布下的相对比较,非常常见于质量控制。