forked from OliverKillane/Imperial-Computing-Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path50008 - Probability and Statistics.tex
More file actions
63 lines (40 loc) · 1.39 KB
/
Copy path50008 - Probability and Statistics.tex
File metadata and controls
63 lines (40 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
\documentclass{report}
\title{50008 - Probability and Statistics}
\author{Oliver Killane}
\date{17/01/23}
\usepackage[a4paper, total={7in, 10in}]{geometry}
\input{../common/common.tex}
% As this is a port from the old tex, some commands have been added (very
% common and takes time to remove/amend)
% Used to highlight keywords, here we use italics
\newcommand{\keyword}[1]{\textit{#1}}
% Creates an item in an itemize or enumerate, with a paragraph after
% \begin{itemize}
% \bullpara{title}{contents}
% \end{itemize}
\newcommand{\bullpara}[2]{\item \textbf{#1} \ #2}
% \centerimage{options}{image}
\newcommand{\centerimage}[2]{\begin{center}
\includegraphics[#1]{#2}
\end{center}}
%For ease in writing stylized proofs with numbers
\newcommand{\stepno}[1]{\textcolor{red}{\textbf{#1}}}
\newenvironment{proof}
{\begin{center}\begin{tabular}{r l l }}
{\end{tabular}\end{center}}
%\proofstep{step}{workings}{description}
\newcommand{\proofstep}[3]{\stepno{(#1)} & #2 & #3 \\}
\begin{document}
\include{titlepage/titlepage}
\tableofcontents
\newpage
\addchapter{elementary_probability_theory}
\addchapter{random_variables}
\addchapter{continuous_random_variables}
\addchapter{joint_random_distributions}
\addchapter{statistics_and_estimation}
\addchapter{hypothesis_testing}
\addchapter{maximum_likelihood_estimate}
\addchapter{posterior}
\addchapter{credit}
\end{document}