如何计算Normal Distribution
learn.whatIsHeading
The normal distribution (bell curve) is the most common probability distribution in statistics. It's defined by mean μ and standard deviation σ, describing many natural phenomena.
公式
f(x) = (1 / (σ√(2π))) × e^(-(x-μ)²/(2σ²))
分步指南
- 1Enter mean μ, standard deviation σ, and value x
- 2Calculate the z-score: (x - μ) / σ
- 3Look up cumulative probability or use the formula
例题解析
输入
μ = 100, σ = 15, x = 115
结果
z = 1, P(Z ≤ 1) ≈ 0.841
Standard normal lookup
常见错误注意事项
- ✕Confusing z-score with probability
- ✕Using population vs sample standard deviation
准备好计算了吗?尝试免费的 Normal Distribution 计算器
自己尝试一下 →