[methods] Bernoulli distributions
authorAndrew Lorimer <andrew@lorimer.id.au>
Mon, 5 Aug 2019 01:41:14 +0000 (11:41 +1000)
committerAndrew Lorimer <andrew@lorimer.id.au>
Mon, 5 Aug 2019 01:41:14 +0000 (11:41 +1000)
methods/statistics.pdf
methods/statistics.tex
index 8ebb5fa4c40e4a3513380d445698c6fc93d6a904..bccb7d23b36684c039b60729dde560a93c1c6a95 100644 (file)
Binary files a/methods/statistics.pdf and b/methods/statistics.pdf differ
index 6bfbe484f3345e0fedfa2b7d37a5179e9e7a38cc..f2f229089792872d9b33f0f73b338e9083d8d5fe 100644 (file)
@@ -7,6 +7,10 @@
 \usepackage{fancyhdr}
 \usepackage{pgfplots}
 \usepackage{tabularx}
+\usepackage{keystroke}
+\usepackage{listings}
+\usepackage{xcolor} % used only to show the phantomed stuff
+\definecolor{cas}{HTML}{e6f0fe}
 
 \pagestyle{fancy}
 \fancyhead[LO,LE]{Unit 3 Methods Statistics}
     6&1&&6&&15&&20&&15&&6&&1
   \end{tabular}
 
+  \colorbox{cas}{On CAS:} (soft keys) \keystroke{\(\downarrow\)} \(\rightarrow\) \keystroke{Advanced} \(\rightarrow\) \verb;nCr(n,cr);
+
+  \section{Binomial distributions}
+
+  (aka Bernoulli distributions)
+
+  \begin{align*}
+    \Pr(X=x) &= {n \choose x} p^x (1-p)^{n-x} \\
+    &= {n \choose x} p^x q^{n-x}
+  \end{align*}
+
+  \begin{enumerate}
+    \item Two possible outcomes: \textbf{success} or \textbf{failure}
+    \item \(\Pr(\text{success})\) is constant across trials (also denoted \(p\))
+    \item Finite number \(n\) of independent trials
+  \end{enumerate}
+
+  If these conditions are met, then it is a Binomial Random Variable. This variable is said to have a \textit{binomial probability distribution}.
+
+  \begin{itemize}
+    \item \(n\) is the number of trials
+    \item There are two possible outcomes: \(S\) or \(F\)
+    \item \(\Pr(\text{success}) = p\)
+    \item \(\Pr(\text{failure}) = 1-p = q\)
+    \item Shorthand notation: \(X \sim \operatorname{Bi}(n,p)\)
+  \end{itemize}
+
+  \colorbox{cas}{On CAS:} Main \(\rightarrow\) Interactive \(\rightarrow\) Distribution \(\rightarrow\) \verb;binomialPDf; \\
+  Input \verb;x; (no. of successes), \verb;numtrial; (no. of trials), \verb;pos; (probbability of success)
+
 \end{document}