2020-03-06 02:24:32 +01:00
|
|
|
---
|
|
|
|
title: Statistical Analysis
|
2020-03-31 20:07:56 +02:00
|
|
|
subtitle: Exercises solutions
|
|
|
|
author:
|
|
|
|
- Michele Guerini Rocco
|
|
|
|
- Giulia Marcer
|
|
|
|
date: \today
|
|
|
|
|
|
|
|
lang: en-GB
|
2020-03-06 02:24:32 +01:00
|
|
|
numbersections: true
|
|
|
|
fontsize: 12pt
|
2020-03-31 20:07:56 +02:00
|
|
|
documentclass: article
|
2020-03-06 02:24:32 +01:00
|
|
|
geometry:
|
|
|
|
- width=150mm
|
|
|
|
- top=20mm
|
|
|
|
- bottom=30mm
|
|
|
|
|
|
|
|
header-includes: |
|
|
|
|
```{=latex}
|
2020-03-31 20:07:56 +02:00
|
|
|
% misc packages
|
2020-03-06 02:24:32 +01:00
|
|
|
\usepackage{etoolbox}
|
|
|
|
\usepackage{tikz}
|
|
|
|
\usepackage{siunitx}
|
2020-03-31 20:07:56 +02:00
|
|
|
|
|
|
|
% start new page with each section
|
2020-03-06 02:24:32 +01:00
|
|
|
\pretocmd{\section}{\clearpage}{}{}
|
|
|
|
|
|
|
|
% strict figure placement
|
|
|
|
\usepackage{float}
|
|
|
|
\floatplacement{figure}{H}
|
|
|
|
|
2020-05-31 11:25:04 +02:00
|
|
|
|
|
|
|
%% customer macros
|
|
|
|
% "with" in formulas
|
|
|
|
\DeclareMathOperator{\with}{%
|
2020-03-06 02:24:32 +01:00
|
|
|
\hspace{30pt} \text{with} \hspace{30pt}
|
|
|
|
}
|
2020-05-31 11:25:04 +02:00
|
|
|
|
|
|
|
% "thus" in formulas
|
|
|
|
\DeclareMathOperator{\thus}{%
|
2020-03-06 02:24:32 +01:00
|
|
|
\hspace{30pt} \Longrightarrow \hspace{30pt}
|
|
|
|
}
|
2020-05-31 11:25:04 +02:00
|
|
|
|
|
|
|
% "et" in formulas
|
|
|
|
\DeclareMathOperator{\et}{%
|
2020-03-06 02:24:32 +01:00
|
|
|
\hspace{30pt} \wedge \hspace{30pt}
|
|
|
|
}
|
2020-05-31 11:25:04 +02:00
|
|
|
|
|
|
|
% "if" in formulas
|
|
|
|
\DeclareMathOperator{\incase}{%
|
2020-04-07 23:36:59 +02:00
|
|
|
\hspace{20pt} \text{if} \hspace{20pt}
|
|
|
|
}
|
2020-03-06 02:24:32 +01:00
|
|
|
|
2020-05-31 11:25:04 +02:00
|
|
|
% expectation and variance operators
|
|
|
|
\DeclareMathOperator{\Exp}{\mathbb{E}}
|
|
|
|
\DeclareMathOperator{\Var}{Var}
|
|
|
|
|
|
|
|
% average value with angle brakets
|
|
|
|
\newcommand{\avg}[1]{\langle#1\rangle}
|
|
|
|
|
|
|
|
% book cover
|
2020-03-31 20:07:56 +02:00
|
|
|
\makeatletter
|
|
|
|
\renewcommand\maketitle{
|
|
|
|
\begin{titlepage}
|
|
|
|
\begin{center}
|
|
|
|
{\LARGE STATISTICAL ANALYSIS \par}
|
|
|
|
{\Huge \bfseries EXERCISES SOLUTIONS \par}
|
|
|
|
\vspace{8mm}
|
|
|
|
{\Large\uppercase{
|
|
|
|
A detailed exposition on the exercises of the
|
|
|
|
Statistical Analysis course and their solutions.
|
|
|
|
Written in a time of great pestilence} \par}
|
|
|
|
\vspace{8mm}
|
|
|
|
{\Large BY \par}
|
|
|
|
\vspace{8mm}
|
|
|
|
{\Large\bfseries GIULIA MARCER \par}
|
|
|
|
{\large AND \par}
|
|
|
|
{\Large\bfseries MICHELE GUERINI ROCCO \par}
|
|
|
|
\vfill
|
|
|
|
\includegraphics[width=5cm]{images/cover.pdf}
|
|
|
|
\vfill
|
|
|
|
{\large \@date, Lombardy \par
|
|
|
|
University of Milano Bicocca}
|
|
|
|
\end{center}
|
|
|
|
\end{titlepage}
|
|
|
|
}
|
|
|
|
\makeatother
|
|
|
|
|
2020-03-06 02:24:32 +01:00
|
|
|
% configure captions
|
|
|
|
\usepackage{caption}
|
|
|
|
\captionsetup{font={footnotesize,it}}
|
|
|
|
\captionsetup{width=11cm}
|
|
|
|
\usepackage{stmaryrd}
|
|
|
|
```
|
2020-05-01 23:56:35 +02:00
|
|
|
|
|
|
|
bibliography: docs/bibliography.bib
|
|
|
|
csl: docs/bibliography.csl
|
2020-03-06 02:24:32 +01:00
|
|
|
---
|