This commit is contained in:
eneller
2025-11-14 12:06:02 +01:00
parent 2e41e46fb1
commit 63d9254247
5 changed files with 15281 additions and 0 deletions

26
lec02.md Normal file
View File

@@ -0,0 +1,26 @@
# Activity 2
Define mathematically the mean square error of a position estimate. Explain and justify your answer.
The MSE is defined almost the same as variance, given by
$$
\frac{\sum{(x-\overline{x})^2}}{n}
$$
# Activity 3
Prove that the following holds for Gamma distribution:
$$
\alpha = \frac{\overline{x}^2}{s^2}
$$
$$
\beta = \frac{s^2}{\overline{x}}
$$
Which results by substition from the following:
$$ \overline{x} = \alpha \beta, \quad s^2 = \alpha \beta^2 $$
$$
\alpha \left(\frac{\overline{x}}{\alpha}\right)^2 = s ^2
$$
yielding the first definition for $\alpha$.
Substituting into the expression for $\beta$ results in
$$
\beta = \frac{\overline{x}}{\alpha} = \frac{\overline{x}}{\frac{\overline{x}^2}{s^2}} = \frac{s^2}{\overline{x}}
$$