[spec] start hypothesis testing
authorAndrew Lorimer <andrew@lorimer.id.au>
Thu, 29 Aug 2019 12:45:38 +0000 (22:45 +1000)
committerAndrew Lorimer <andrew@lorimer.id.au>
Thu, 29 Aug 2019 12:45:38 +0000 (22:45 +1000)
spec/statistics.pdf
spec/statistics.tex
index cd372e03102e64ca47503e671c4d85109ed599e9..60f093cbb5ef448216735265cda25af976f03e68 100644 (file)
Binary files a/spec/statistics.pdf and b/spec/statistics.pdf differ
index ee414c6960e80ff085e954ebca1c475b9e59d6bc..4c89dd596bf579f9ddbea537a1039c46443e3641 100644 (file)
 
   Normal distributions must have area (total prob.) of 1 \(\implies \int^\infty_{-\infty} f(x) \> dx = 1\)
 \pgfmathdeclarefunction{gauss}{2}{%
-  \pgfmathparse{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))}%
+  \pgfmathparse{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))}
 }
 
-{\begin{center} \begin{tikzpicture}
+\begin{tikzpicture}
   \pgfplotsset{set layers}
 \begin{axis}[every axis plot post/.append style={
   mark=none,domain=-3:3,samples=50,smooth}, 
   every axis x label/.style={at={(axis description cs:1,-0.25)},anchor=south west}]
   \addplot {gauss(0,0.75)};
 \end{axis}
-\end{tikzpicture}\end{center}}
+\end{tikzpicture}
 
   \section{Central limit theorem}
 
     \item \textbf{Interval estimate:} confidence interval for population mean \(\mu\)
   \end{itemize}
 
-  \subsection*{95% confidence interval}
+  \subsection{95\% confidence interval}
 
-  \[ \left( \overline{x} \pm 1.96 \dfrac{\sigma}{\sqrt{n}} \]
+  The 95\% confidence interval for a population mean \(\mu\) is given by
+
+  \[ \overline{x} \pm 1.96 \dfrac{\sigma}{\sqrt{n}} \]
 
   where: \\
-  \(\mu\) is the population mean (unknown) \\
   \(\overline{x}\) is the sample mean \\
   \(\sigma\) is the population sd \\
   \(n\) is the sample size from which \(\overline{x}\) was calculated
 
   \subsection*{Interpretation of confidence intervals}
 
-  95% confidence interval \(\implies\) 95% of samples will contain population mean \(\mu\).
+  95\% confidence interval \(\implies\) 95\% of samples will contain population mean \(\mu\).
 
   \subsection*{Margin of error}
 
-  For 95% confidence interval for \(\mu\), margin of error \(M\) is:
+  For 95\% confidence interval for \(\mu\), margin of error \(M\) is:
 
   \begin{align*}
     M &= 1.96 \times \dfrac{\sigma}{\sqrt{n}} \\
 
   \subsection*{General case}
 
-  A confidence interval of \(C\)% is given by
+  A confidence interval of \(C\)\% for a mean \(\mu\)  s given by
+
+  \[ x \in \left( \overline{x} \pm k \dfrac{\sigma}{\sqrt{n}} \right) \quad \text{ where } k \text{ is such that } \Pr(-k < Z < k) = \frac{C}{100} \]
+
+  \subsection*{Confidence interval for multiple trials}
+
+  For a set of \(n\) confidence intervals (samples), there is \(0.95^n\) chance that all \(n\) intervals contain the population mean \(\mu\).
+
+  \section{Hypothesis testing}
+
+  Note hypotheses are always expressed in terms of population parameters
+
+  \subsection*{Null hypothesis \(H_0\)}
+
+  Sample drawn from population has same mean as control population, and any difference can be explained by sample variations.
+
+  \subsection*{Alternative hypothesis \(H_1\)}
+
+  Amount of variation from control is significant, despite standard sample variations.
+
+  \subsection*{\(p\)-value}
 
-  A 95% confidence interval for \(\mu\) will have \(M\) when
-  \[ \overline{x} \pm k \dfrac{\sigma}{\sqrt{n}} \]
+  Probability of observing a value of the sample statistic as significant as the one observed, assuming null hypothesis is true.
 
-  where \(k\) is such that \(\Pr(-k < Z < k) = \frac{C}{100}\)
+  % table of p-values for strength of evidence
 
+  \subsection*{Distribution of sample mean}
+
+  If \(X \sim \operatorname{N}(\mu, \sigma)\), then distribution of sample mean \(\overline{X}\) is also normal with \(\overline{X} \sim \operatorname{N}(\mu, \frac{\sigma}{\sqrt{n}}\).
+
+  \subsection*{Statistical significance}
+
+  Significance level is denoted by \(\alpha\).
+
+  If \(p<\alpha\), null hypothesis is \textbf{rejected} \\
+  If \(p>\alpha\), null hypothesis is \textbf{accepted}
+
+  \subsection*{\(z\)-test}
+
+  Hypothesis test for a mean of a sample drawn from a normally distributed population with a known standard deviation.
+
+  \subsubsection*{\colorbox{cas}{\textbf{On CAS:}}}
+  
+  Menu \(\rightarrow\) Statistics \(\rightarrow\) Calc \(\rightarrow\) Test. \\
+  Select \textit{One-Sample Z-Test} and \textit{Variable}, then input:
+  \begin{itemize}
+    \item \(\mu\) condition - same operator as \(H_1\)
+    \item \(\mu_0\) - expected sample mean (null hypothesis)
+    \item \(\sigma\) - standard deviation (null hypothesis)
+    \item \(\overline{x}\) - sample mean
+    \item \(n\) - sample size
+  \end{itemize}
 
 \end{document}