algorembrant commited on
Commit
da70fcb
·
verified ·
1 Parent(s): be3b70c

Upload 3 files

Browse files
.gitattributes CHANGED
@@ -36,3 +36,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
36
  Manually[[:space:]]Disecting[[:space:]]arXiv2512.15720/main.pdf filter=lfs diff=lfs merge=lfs -text
37
  simple_trend_filter[[:space:]]dominant_poc_displacement/main.pdf filter=lfs diff=lfs merge=lfs -text
38
  Using[[:space:]]My[[:space:]]Flesh[[:space:]]to[[:space:]]Make[[:space:]]TeX-written[[:space:]]Notes/main.pdf filter=lfs diff=lfs merge=lfs -text
 
 
 
36
  Manually[[:space:]]Disecting[[:space:]]arXiv2512.15720/main.pdf filter=lfs diff=lfs merge=lfs -text
37
  simple_trend_filter[[:space:]]dominant_poc_displacement/main.pdf filter=lfs diff=lfs merge=lfs -text
38
  Using[[:space:]]My[[:space:]]Flesh[[:space:]]to[[:space:]]Make[[:space:]]TeX-written[[:space:]]Notes/main.pdf filter=lfs diff=lfs merge=lfs -text
39
+ variance[[:space:]]and[[:space:]]standard[[:space:]]deviation/image.png filter=lfs diff=lfs merge=lfs -text
40
+ variance[[:space:]]and[[:space:]]standard[[:space:]]deviation/main.pdf filter=lfs diff=lfs merge=lfs -text
variance and standard deviation/image.png ADDED

Git LFS Details

  • SHA256: 55e798c9894454a3738657296018cb2c1eca02d9bd0ee8a7604d90c1ed182c3b
  • Pointer size: 131 Bytes
  • Size of remote file: 137 kB
variance and standard deviation/main.pdf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9abfb4be117539e4407b26d7a1f3a340914d071ccf6e29c2d274694abec4758a
3
+ size 195804
variance and standard deviation/main.tex ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ \documentclass[8pt]{article}
3
+ \usepackage[margin=0.5in]{geometry}
4
+
5
+ % Core packages
6
+ \usepackage{amsmath,amssymb}
7
+ \usepackage{tikz-cd}
8
+ \usepackage{multicol}
9
+ \usepackage{pgfplots}
10
+ \pgfplotsset{compat=1.18}
11
+ \newcommand{\mathcolorbox}[2]{\colorbox{#1}{$\displaystyle #2$}}
12
+
13
+ % Paragraphs
14
+ \setlength{\parindent}{0pt}
15
+ \setlength{\parskip}{1\baselineskip}
16
+
17
+ \title{Variance and Standard Deviation}
18
+ \author{algorembrant}
19
+ \date{\today}
20
+
21
+ \begin{document}
22
+ \maketitle
23
+
24
+ \includegraphics[width=1\textwidth]{image.png}
25
+
26
+ \begin{align*}
27
+ \intertext{What shown above is the population version of $\sigma^2$ and $\sigma$ let $X$ element of the dataset, and $t$ as timestep (but forward), the following solutions is how you get the varience and standard deviation and what perspective it meant to us.}
28
+ \end{align*}
29
+ \newpage
30
+ \newpage
31
+ \begin{align*}
32
+ \sigma^2 &= \frac{1}{T}\sum_{t=1}^T(X_t - \mu)^2 \quad \text{or} \quad \sigma^2 = \frac{1}{T}\sum_{t=1}^T(X_t - \frac{1}{T}\sum_{t=1}^T X_t)^2\\
33
+ \sigma^2 &= \frac{1}{T}\sum_{t=1}^T(\mathcolorbox{yellow!50}{X_t} - \mu)^2, \quad X\in \{109,183,153,132,102,123,96,58,98,125,143,110,164,143,189\} \\
34
+ \sigma^2 &= \frac{1}{T}\sum_{t=1}^T(X_t - \mathcolorbox{yellow!50}{\mu})^2, \quad \text{the mean of the dataset, represented by one value} \\
35
+ \sigma^2 &= \frac{1}{T}\sum_{t=1}^T(\mathcolorbox{yellow!50}{X_t - \mu})^2, \quad \text{the deviation, or distance, from $X_t$ to $\mu$} \\
36
+ \sigma^2 &= \frac{1}{T} \sum_{t=1}^T \mathcolorbox{yellow!50}{(X_t - \mu)^2}, \quad \text{squaring the deviation will turn all values into positive}\\
37
+ \sigma^2 &= \frac{1}{T} \mathcolorbox{yellow!50}{\sum_{t=1}^T(X_t - \mu)^2}, \quad \text{is the sum of all squared deviation} \\
38
+ \sigma^2 &= \mathcolorbox{yellow!50}{\frac{1}{T}\sum_{t=1}^T(X_t - \mu)^2}, \quad \text{is the \textcolor{red}{variance}} \\
39
+ \sigma &= \mathcolorbox{yellow!50}{\sqrt{\frac{1}{T}\sum_{t=1}^T(X_t - \mu)^2}}, \quad \text{is the \textcolor{red}{standard deviation}} \\
40
+ \text{or} \\
41
+ \sigma^2 &= \frac{1}{T}\sum_{t=1}^T(X_t - \frac{1}{T}\sum_{t=1}^T X_t)^2, \quad \intertext{is the average of the squared differences from the mean; it tells us how scattered the data points are around the mean, we cant visualize this on the same plot due to the unit mismatched (squared)}
42
+ \sigma &= \sqrt{\frac{1}{T}\sum_{t=1}^T(X_t - \frac{1}{T}\sum_{t=1}^T X_t)^2}, \quad \intertext{meanhile, this is more idial due to the squaroot operation, making the values simillar (same unit) to the original datapoints}
43
+ \intertext{both variance and standard deviation meansures how compact or scattered the datapoints from the mean. What shown above was population $\sigma^2$ and $\sigma$ and to calculate for sample version, we simply subtract $T$ by 1}
44
+ \end{align*}
45
+ \begin{align*}
46
+ \sigma^2_{sample} = \frac{1}{\textcolor{red}{T-1}}\sum_{t=1}^T(X_t - \frac{1}{T}\sum_{t=1}^T X_t)^2, \quad \sigma_{sample} = \sqrt{\frac{1}{\textcolor{red}{T-1}}\sum_{t=1}^T(X_t - \frac{1}{T}\sum_{t=1}^T X_t)^2},
47
+ \end{align*}
48
+ \begin{align*}
49
+ \sigma^2_{population} = \frac{1}{\textcolor{red}{T}}\sum_{t=1}^T(X_t - \frac{1}{T}\sum_{t=1}^T X_t)^2, \quad \sigma_{population} = \sqrt{\frac{1}{\textcolor{red}{T}}\sum_{t=1}^T(X_t - \frac{1}{T}\sum_{t=1}^T X_t)^2},
50
+ \end{align*}
51
+
52
+ \end{document}
53
+