Suppose the random variables $X_1, X_2, . . .X_n$ are independent each with the distribution
$$f(x;\theta) = \frac{\theta \ x^{\theta-1}}{3^\theta} \ \ \text{ for} \ \ 0 \leq x \leq 3.$$
Find the Maximum Likelihood estimate for $\theta$.
Suppose the random variables $X_1, X_2, . . .X_n$ are independent each with the distribution
$$f(x;\theta) = \frac{\theta \ x^{\theta-1}}{3^\theta} \ \ \text{ for} \ \ 0 \leq x \leq 3.$$
Find the Maximum Likelihood estimate for $\theta$.
As it is often the case it is easier to maximize $$\ln\left(L(\theta)\right)=n\ln(\theta)+(\theta-1)\ln(x_1x_2...x_n)-n\theta\ln(3)$$
Take derivatives and equate to zero
$$0=\frac{n}{\theta}+\ln(x_1x_2...x_n)-n\ln(3)$$
We get that $$\theta=\frac{n}{n\ln(3)-\ln(x_1x_2...x_n)}$$
– OR. Jun 22 '17 at 13:01