I am trying to numerically solve the system of PDE's written in matrix form as: $$ \begin{bmatrix} (\lambda + 2\mu)\partial_x & \lambda\partial_y \\ \mu\partial_y & \mu\partial_x \end{bmatrix}\begin{pmatrix} u \\ v \end{pmatrix} = \begin{pmatrix} 0 \\ 0 \end{pmatrix} $$
using a finite difference discretization and multigrid Gauss-Seidel relaxation to solve the resulting linear system. In a course handout I read that this could be done efficiently by decoupling the equations using a change of variables using the transpose of the cofactor matrix of the system above:
$$ \begin{pmatrix} u \\ v \end{pmatrix} = \begin{bmatrix} \mu\partial_x & -\lambda\partial_y \\ -\mu\partial_y & (\lambda+2\mu)\partial_x \end{bmatrix} \begin{pmatrix} t_1 \\ t_2 \end{pmatrix} $$
so that the system decouples as:
$$ \begin{bmatrix} (\lambda\mu + 2\mu^2)\partial_x^2 - \lambda\mu\partial_y^2 & 0 \\ 0 & (\lambda\mu + 2\mu^2)\partial_x^2 - \lambda\mu\partial_y^2 \end{bmatrix} \begin{pmatrix} t_1 \\ t_2 \end{pmatrix} = \begin{pmatrix} 0 \\ 0 \end{pmatrix} $$
Now I get that I could discretize this, solve for $t_1$ and $t_2$ and then compute $u$ and $v$. However in the handout it is stated that a full change of variables is not actually necessary, and that "the solution process can be arranged such" that I am effectively solving the decoupled system, but in terms of the original variables $u$ and $v$.
Unfortunately the explanation ends there. How would this work in practice?