John Montroy

Covered:

Random noise generates the Normal distribution as its PDF - this was first discovered and termed by Gauss, so it’s the Gaussian curve:

Normal Distribution

The standard deviation determines the width of the bell, and the mean says where the curve is centered. Like all PDFs, it’s normalized s.t. its integral is one.

The integral of a PDF over its domain is known as its cumulative distribution function (CDF). The CDF of the Gaussian is hugely important, but the Gaussian cannot be integrated through analytical means, instead only yielding to numerical integration where we essentially chop up and sample the the curve and integrate slowly.

The CDF of the Gaussian is shown as Φ(x), and helps determine what the probability of a given value occuring between negative infinity and N standard deviations. This is where we get that 68% of values occur within one standard deviation of mean, by calculating the CDF for 1 and -1 and taking the difference.

Gaussian CDF

#Dsp