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
-
```tikz \usepackage{pgfplots} \pgfplotsset{compat=1.16} \begin{document}
\begin{tikzpicture}
\begin{axis}[
xlabel={},
ylabel={},
domain=-15:20,
samples=100,
legend pos=outer north east,
title={Normal Distributions},
]\addplot[color=blue, thick] {1/(0.75sqrt(2pi))exp(-((x-(-5))^2)/(20.75^2))};
\addlegendentry{} \addplot[color=red, thick] {1/(0.25sqrt(2pi))exp(-((x-1)^2)/(20.25^2))};
\addlegendentry{} \addplot[color=green, thick] {1/(4sqrt(2pi))exp(-((x-6)^2)/(24^2))};
\addlegendentry{} \end{axis}
\end\end
STA260
- The distribution of
is normal are iid from a normal distribution and - If they're iid from a Random Sample from
then