I am doing some homework and have a little trouble with the following problem:
Suppose the weight $X$ in pounds of a girl in a certain town is normally distributed with $N(\mu,15^2)$ while the weight $Y$ of a boy in this town is normally distributed $N(1.3 \mu, 20^2).$ The weights of randomly chosen girl and boy are $x = 95$ and $y = 130$ pounds respectively.
Then I have to find the MLE of $\mu$.
However, I know that the MLE of $\mu$ for a normal distribution is simply the sample mean, thus
$$MLE_{\mu} = \frac{1}{n} \sum_{i = 1}^n X_i = \frac{95 + 130}{2} = 112.5$$
Is this simply it?
TIA for any help.
It is not this simple.
You have got two singleton samples from two different normal populations $N(\mu,15^2),N(1.3\mu,20^2)$. The joint distribution of the weight of a boy and girl is
$$l(x,y)=\frac{\exp\left(-\frac{(x-\mu)^2}{2(15^2)}-\frac{(y-1.3\mu)^2}{2(20^2)}\right)}{2\pi(15)(20)}$$
This likelihood function attains maximum at $$\hat\mu_{MLE}=\frac{\frac x{15^2}+\frac{1.3y}{20^2}}{\frac1{15^2}+\frac{1.3^2}{20^2}}$$