You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
\begin{definition}
Let $\hat{\Theta}_1, \hat{\Theta}_2,\ldots,\hat{\Theta}_n$ be a sequence of point estimators of $\theta$. We say that $\hat{\Theta}$ is a consistent estimator of $\theta$ if
\begin{definition}
Let $\hat{\Theta}_1, \hat{\Theta}_2,\ldots,\hat{\Theta}_n$ be a sequence of point estimators of $\theta$. We say that $\hat{\Theta}_n$ is a consistent estimator of $\theta$ if
\begin{example}
Bag contains 3 balls. Each ball is either red or blue. Let $\theta$ be the number of blue balls. Define random variables $X_1, X_2, X_3,X_4$ (balls are chosen with replacement that is why we can have more than three random variables).
$$X_i =
\begin{cases}
1 & \text{if } i^{th} \text{ chosen ball is blue} \
0 & \text{otherwise}
\end{cases}
$$
Then $X_i \sim Bernoulli\bp{\frac{\theta}{3}}$. By independence, $P(x_1, x_2,x_3,x_4) = \prod_i P_{X_i} (x_i)$ where $P_{X_i} (x; \theta) = \binom{3}{x} \theta^x (1 - \theta)^{3 - x}$.
\textbf{Likelihood} function is then defined as: $L(x_1, x_2, x_3, x_4) = P(x_1, x_2,x_3,x_4;\theta)$.
For jointly continuous random variables, $L(x_1, x_2,x_3,x_4) = f(x_1, x_2,x_3,x_4;\theta)$.
\end{example}
Bayesian Inference
Draw inference of an unknown random variable $X$ by observing random variable $Y$. The unknown variable is modelled with prior distribution $P_X(x)$.
After observing $Y$, we find posterior distribution of $X, \ P_{X|Y} (x|y)$. Usually found using Bayes' formula.
MAP Estimate is then shown by $\hat{x}_{MAP}$. We don't care about the denominator (in Bayes' rule) for MAP estimate because it is just a constant.