Login
📚 Statistical Inference for Everyone
Chapters ▾

7.2 The Normal Distribution - Properties

The Normal distribution, also referred to as the Gaussian distribution, is by far the most commonly occurring distribution in all of statistical inference, so it requires some special attention.

The Shape

The shape of the Normal distribution is sometimes described as bell-shaped, as shown in Figure 7.1, and is thus referred to as the bell-curve (although there are several other mathematical functions which are bell-shaped). The function is referred to as Normal(μ,σ) where μ and σ are parameters of the model. (see Appendix 14.1 on page 225 for a review of greek letters)

The Normal distribution: a symmetric bell curve labeled p(x)=Normal(0,1), centered at x=0 with peak height about 0.4, falling essentially to zero beyond three units either side.
Figure 7.1. The Normal Distribution.

The location parameter, μ

The location parameter (see Figure 7.2) is the value of x for which the Normal distribution has a maximum probability. In a real sense, it is the middle of the distribution, and the best estimate of x. For the Normal distribution the location parameter, μ, is at once the mean, median and mode of the distribution.

Three identical bell curves at different locations, labeled μ=-2 (red), μ=0 (blue) and μ=3 (green). Changing the location parameter μ slides the Normal curve along the x-axis without changing its shape.
Figure 7.2. The Normal distribution with different location parameters, μ.

The deviation parameter, σ

As shown in Figure 7.3 the deviation parameter, σ, is a measure of how spread out the distribution is. As the width increases, the height goes down to keep the area under the curve constant (at 1). As a result, more of the probability sits at larger values of x as σ gets larger.

Three useful properties of σ for the Normal distribution are the following:

  1. the Normal distribution value at the maximum (i.e. at x=μ) is around 2.7 times larger than the value one-σ away from the maximum (at x=μσ and x=μ+σ)
  2. the total probability between these two points is 65%. This is typically written, μ±σ.
  3. 95% of the distribution lies between μ2σ and μ+2σ (see Figure 7.3)

For example, writing 5±2 typically implies a Normal distribution with mean μ=5 and deviation σ=2. One is 65% certain that the range of the estimated value is between 3 and 7, and 95% certain that the range is between 1 and 9 (i.e. mean minus two deviations and mean plus two deviations).

Three Normal curves centered at zero with different widths: σ=1 is tall and narrow (peak 0.4), σ=2 is half as tall and twice as wide, and σ=4 is a low broad mound (peak 0.1). Larger deviation spreads the same total probability over a wider range.
Figure 7.3. The Normal distribution with different deviation parameters, σ.

Summarizing the Distribution

We can specify the Normal distribution with just the two parameters, μ and σ - the location and deviation parameters, respectively. However, due to its symmetry, we can summarize this distribution for all cases by looking a a single special case called the standard Normal distribution.

The Standard Normal Distribution is the Normal distribution in the special case where μ=0 (the distribution is centered at x=0) and σ=1 (the distribution has a spread of 1).

For any Normal distribution, the area within 1-σ is 0.68, within 2-σ is 0.95, and 3-σ is 0.99. These locations are the most prevalently used in any kind of statistical testing, and thus we will see them many times.

The standard Normal curve with dashed vertical lines at -3, -2, -1, 0, 1, 2 and 3, each labeled with the percentile of the area to its left: 0.1%, 2.3%, 15.9%, 50%, 84.1%, 97.7% and 99.9%. The shaded band between -1 and +1 is annotated 'area=0.68'.
Figure 7.4. The Standard Normal Distribution (the Normal distribution in the special case where μ=0 and σ=1). The percentiles shown are for positions 1-σ away from the center, 2-σ away, and 3-σ away. The area within 1-σ is 0.68, within 2-σ is 0.95, and 3-σ is 0.99. These locations are the most prevalently used in any kind of statistical testing, and thus we will see them many times.

Moving from a General Normal to the Standard Normal and Back

In order to use the table of percentiles for the standard Normal distribution, we need to be able to translate from the Normal to the standard Normal and back again. Luckily, it is a simple process, and is one of the main reasons for using the Normal distribution - other distributions are not so easily manipulated.

To facilitate this translation, we will use the variable x for the Normal distribution and z for the standard Normal. So now, we need to have a recipe for translating x to z (or vice versa), given μ and σ. These recipes are:

  1. x to z: subtract x by μ, and divide by σ
  2. z to x: multiply z by σ and add μ

Sum and Differences

One more convenient property of the Normal distribution is that sums and differences of variables that individually have Normal distributions also have Normal distributions, although each with a different mean and deviation parameter. The relationships are summarized as follows.

Sum of two Normally distributed variables If we have two variables, x and y, which have Normal distributions

P ( x ) = N o r m a l ( μ x , σ x ) P ( y ) = N o r m a l ( μ y , σ y )

then their sum, x+y, has a mean the sum of the two, μx+μy and a deviation σx2+σy2.

One way to remember this is that the new squared deviation parameter is the sum of the two old ones,

σ x + y 2 = σ x 2 + σ y 2

Differences between two Normally distributed variables For differences, xy, we have a new mean of μxμy and deviation parameter again σx2+σy2. Note the “+” sign in the new σ, which keeps the new σ positive which is must be by definition.

If we are asked for the distribution of a quantity with an added constant, like

z = x + c o n s t a n t

then the probability of z is just the same as that of x (i.e. Normal distribution with the same deviation), with the location parameter moved by the constant

P ( z ) = N o r m a l ( μ x + c o n s t a n t , σ x )

Adapted from Statistical Inference for Everyone, by Brian Blais (Bryant University), licensed under CC BY-SA 4.0 (dual-licensed under the GNU FDL 1.2 or later; this adaptation uses the CC BY-SA grant). Changes were made; this adaptation is distributed under the same license. License: CC-BY-SA-4.0.