The normal distribution is used extensively in probability theory, statistics, and the natural and social sciences. It is also called the Gaussian distribution, because Carl Friedrich Gauss (1777-1855) was one of the first to apply it for the analysis of astronomical data (Lovric 2011).
The normal probability distribution or the normal curve is a bell-shaped (symmetric) curve. Its mean is denoted by μ and its standard deviation by σ. A continuous random variable x that has a normal distribution is called a normal random variable.
The notation for a normal distribution is X∼N(μ,σ). The probability density function (PDF) is written as
f(x)=1σ√2πe−12(x−μσ)2where e≈2.7182818 and π≈3.14159. The probability density function f(x) gives the vertical distance between the horizontal axis and the normal curve at point x.
The normal distribution is described by two parameters, the mean, μ, and the standard deviation, σ. Each different set of values of μ and σ gives a different normal distribution. The value of μ determines the center of a normal distribution curve on the horizontal axis, and the value of σ gives the spread of the normal distribution curve.
%load_ext lab_black
# First, let's import all the needed libraries.
import numpy as np
import matplotlib.pyplot as plt
import scipy.stats as stats
A normal distribution is characterized, among others, by the following characteristics (Lovric 2011, Mann 2012):
or crossing the horizontal axis. Although a normal distribution curve never meets the horizontal axis, beyond the points represented by μ−3σ and μ+3σ it becomes so close to this axis that the area under the curve beyond these points in both directions can be taken as virtually zero.
Citation
The E-Learning project SOGA-Py was developed at the Department of Earth Sciences by Annette Rudolph, Joachim Krois and Kai Hartmann. You can reach us via mail by soga[at]zedat.fu-berlin.de.
Please cite as follow: Rudolph, A., Krois, J., Hartmann, K. (2023): Statistics and Geodata Analysis using Python (SOGA-Py). Department of Earth Sciences, Freie Universitaet Berlin.