In this system of equations $\alpha$ and $f_d$ are unknown. $\alpha$ and $C_{13}$ are complex numbers; the other parameters are all real numbers. I want to solve this system explicitly for $f_d$ (real) and $\alpha$ (complex) and use the results in my programming with MATLAB.
$$ \begin{cases} f_d(1-\alpha)=C_{33}-C_{13}-\frac{2}{5}f_v-\frac{1}{2}f_c\\ f_d(1-|\alpha|^2)=C_{33}-C_{11}-\frac{1}{3}f_v \end{cases} $$
Up to now, I have taken these steps:
$$\frac{1-\alpha}{1-|\alpha|^2}=\frac{C_{33}-C_{13}-\frac{2}{5}f_v-\frac{1}{2}f_c}{C_{33}-C_{11}-\frac{1}{3}f_v}$$
By separating the real and imaginary parts, we have:
$$\frac{(1-\Re(\alpha))+i(-\Im(\alpha))}{1-\Re(\alpha)^2-\Im(\alpha)^2}= \frac{(C_{33}-\Re(C_{13})-\frac{2}{5}f_v-\frac{1}{2}f_c)+i(-\Im(C_{13}))}{C_{33}-C_{11}-\frac{1}{3}f_v}$$
and then we have:
$$\frac{1-\Re(\alpha)}{1-\Re(\alpha)^2-\Im(\alpha)^2}=\frac{C_{33}-\Re(C_{13})-\frac{2}{5}f_v-\frac{1}{2}f_c}{C_{33}-C_{11}-\frac{1}{3}f_v}$$
$$\frac{\Im(\alpha)}{1-\Re(\alpha)^2-\Im(\alpha)^2}=\frac{\Im(C_{13})}{C_{33}-C_{11}-\frac{1}{3}f_v}$$
How do I find explicit expressions for $\Re(\alpha)$ and $\Im(\alpha)$ based on these equations?
Since you're using Matlab, you might want to try solving this via symbolic math:
which in R2015b returns
and
You should check that is indeed the solution you're looking for (it's possible that there are others that
solvedidn't find). Also note that I had to explicitly expandabs(alp)^2toreal(alp)^2+imag(alp)^2in order get a solution.