I'm trying to solve the following system:
$$ \sin(x) + \cos(y) = 0.6\\ \cos(x) - \sin(y) = 0.2\\ $$
Solving for y in terms of x:
$$ y=\arccos(0.6-\sin(x))=\arcsin(\cos(x) -0.2) $$
Therefore: $$ \frac{\pi}{2} - \arcsin(0.6-\sin(x)) = \arcsin(\cos(x) - 0.2) $$ Forgot to add: $$ \frac{-\pi}{2}\le x,y \le \frac{\pi}{2} $$ Not too sure how to proceed from here, any hints?
The assumption $$-\frac{\pi}{2} \leq x,y \leq \frac{\pi}{2}$$ is beautiful. Why? Because then we can use the substitution $$\left\{\begin{align} x &= \arctan\alpha \\ y &= \arctan\beta \end{align}\right.$$
Why do we want to use this substitution? Because of the identities $$\begin{align}\sin(\arctan\alpha) &= \frac{\alpha}{\sqrt{1+\alpha^2}} \\ \cos(\arctan\beta) &= \frac{1}{\sqrt{1+\beta^2}}\end{align}$$ Now write the new equations in $\alpha,\beta$ $$\begin{align}\frac{\alpha}{\sqrt{1+\alpha^2}} + \frac{1}{\sqrt{1+\beta^2}} &= 0.6 \\ \frac{1}{\sqrt{1+\beta^2}} - \frac{\alpha}{\sqrt{1+\alpha^2}} &= 0.4\end{align}$$ Some rearranging gets us $$\begin{align}\frac{(\alpha-0.6)\sqrt{1+\beta^2}+1}{\sqrt{(1+\alpha^2)(1+\beta^2)}} & = 0 \\[2ex] \frac{1-(\alpha+0.4)\sqrt{1+\beta^2}}{\sqrt{(1+\alpha^2)(1+\beta^2)}} &= 0\end{align}$$ The only parts that will make the expressions null are the numerators. Put the $1$ on the RHS in both equations, and square both sides. After rearranging again, you'll get $$\begin{align}\alpha^2 -1.2\alpha + 0.36 &= 1/(1+\beta^2) \\ \alpha^2 + 0.8\alpha + 0.16 & = 1/(1+\beta^2) \end{align}$$ One possible value for $\alpha$ comes easily! Just subtract the last two equations: $$2\alpha + 0.52 = 0 \implies \fbox{$\alpha = -0.26$}$$ We can unravel the rest now. Divide $P(\alpha) = (\alpha^2 - 1.2\alpha+0.36-1/(1+\beta^2))$ by $(\alpha +0.26)$ (as polynomials). You should do the calculations yourself to double check, but mine give a quotient $q$ and remainder $r$ of $$\begin{align}q(\alpha) &= \alpha - 1.46 \\ r(\alpha) &= 0.7396 - \frac{1}{1+\beta^2}\end{align}$$
The remainder must be zero, since we found $\alpha = -0.26$ to be a solution. This gives two pairs of (possible) solutions $(\alpha,\beta) \approx (-0.26,\pm 0.59337)$. Now, equating the quotient to zero gives a possible value $\alpha = 1.46$. Note that the remainder can also be obtained by substituting in $P(\alpha)$. We could have done this before but we also wanted the quotient which is why we carried out the entire division. Now we don't care about the quotient (it's $(\alpha + 0.26)$), so just substitute and equate to zero to get $$P(1.46) = 0.6244 -\frac{1}{1+\beta^2} = 0$$
This gets you two more pairs of solutions. Now you need to do this entire process over again with the second equation $$\alpha^2 + 0.8\alpha + 0.16 = 1/(1+\beta^2)$$
again starting with $\alpha = -0.26$.
In the end you'll have multiple candidates (I keep saying "possible solutions" or candidates because we have possibly introduced, when we squared the equations, values that don't solve the original equations). Check which ones work with the first $\alpha,\beta$ equations. Since the exercise obviously is to find numerical solutions, going back to $x,y$ is then a simple matter of using the
tan^(-1)key on your calculator (in fact, I already had to use the square root key).Oh, and $\arctan$ doesn't ever reach $-\pi/2$ or $\pi/2$, so let's check real quick if those are solutions: $$\quad1\neq 0.6 \\ -1 \neq 0.2$$ Nope, they aren't. We've covered every possibility now.
Edit: I've noticed a mistake in subtracting the two equations, the first value for alpha (in the box) should be $0.1$. This changes the other results of course, but I'll edit those tommorow (all in all it's just solving quadratics).