Normal Distribution
STA256
-
Bell curve distribution
-
Very useful because this models a lot of natural real life processes.
-
Random Variable
has a normal distribution -
for
-
Properties:
- Symmetric about the mean
- Meaning the mean is the median as well
- So
quantile - Mean = median = mode =
- Distribution is completely described by the mean
(centre) and variance (dispersion)
- Symmetric about the mean
-
Notation
- If a random variable
follows a normal distribution with mean and variance , we denote it as:
- If a random variable
-
\usepackage{pgfplots} \pgfplotsset{compat=1.16} \begin{document} \begin{tikzpicture} \begin{axis}[ xlabel={$\mu$}, ylabel={$P(x)$}, domain=-15:20, samples=100, legend pos=outer north east, title={Normal Distributions}, ] \addplot[color=blue, thick] {1/(0.75*sqrt(2*pi))*exp(-((x-(-5))^2)/(2*0.75^2))}; \addlegendentry{$N(\mu=-5, \sigma^2=0.75^2)$} \addplot[color=red, thick] {1/(0.25*sqrt(2*pi))*exp(-((x-1)^2)/(2*0.25^2))}; \addlegendentry{$N(\mu=1, \sigma^2=0.25^2)$} \addplot[color=green, thick] {1/(4*sqrt(2*pi))*exp(-((x-6)^2)/(2*4^2))}; \addlegendentry{$N(\mu=6, \sigma^2=4^2)$} \end{axis} \end{tikzpicture} \end{document}
STA260
- The distribution of
is normal are iid from a normal distribution and - If they're iid from a Random Sample from
then