Suppose $(X_i,Y_i)$, $i=1,2,...,n$ are a random sample from a bivariate Normal distribution with parameters $(\mu,-\mu,\sigma^2,\sigma^2,\rho)$. Obtain the Maximum Likelihood Estimator of $(\mu,\sigma^2,\rho)$ and check if the MLE of $\rho$ is consistent i.e. if $r_n$ be the MLE of $\rho$ based on $n$ observations, then check if $r_n\to^P\rho$
The loglikelihood is $$l=const.-n\log(\sigma^2)-\dfrac{n}{2}\log(1-\rho^2)-\dfrac{1}{2\sigma^2}[\sum_{i=1}^n (x_i-\mu)^2+\sum_{i=1}^n (y_i+\mu)^2-2\rho\sum_{i=1}^n (x_i-\mu)(y_i+\mu)]$$
The MLEs of $(\mu,\sigma^2,\rho)$ satisfy:
$\sigma^2=\dfrac{1}{2n}[\sum_{i=1}^n (x_i-\mu)^2+\sum_{i=1}^n (y_i+\mu)^2-2\rho\sum_{i=1}^n (x_i-\mu)(y_i+\mu)]$
$\sum_{i=1}^n -(x_i-\mu)+\sum_{i=1}^n(y_i+\mu)-2\rho \sum_{i=1}^n (x_i-y_i-2\mu)=0$
$\dfrac{n\rho}{1-\rho^2}+\sum_{i=1}^n \dfrac{(x_i-\mu)(y_i+\mu)}{\sigma^2}=0$
Solving these three equations seems nightmarish! And also, how can one check if MLE of $\rho$ is consistent?
Here is a naive attempt: From the third equation, we see that if we had MLE of $\mu$ and $\sigma^2$ consistent for the corresponding parameters then if MLE of $\rho$ was consistent for $\rho$, we would get, as $n\to\infty$, $\dfrac{\rho}{1-\rho^2}+\rho=0$, clearly not true for every possible value of $\rho$.
This is just a guess. As one can see, I am assuming consistency of MLEs of $\mu$ and $\sigma^2$. Can anyone give a proper solution?