Consider the following very simple linear system with one unknown:
\begin{equation}\label{a}\tag{1} Ax=b \\ \left ( 3+4i \right )x=(6+8i). \end{equation}
This paper ("On the numerical solving of complex linear systems") says that I can solve the linear system by transforming A to matrix form and then solving it as follows:
\begin{equation}\label{b}\tag{2} \begin{pmatrix} 3 & -4\\ 4 & 3 \end{pmatrix} \binom{x_r}{x_c} = \binom{b_r}{b_c}, \end{equation} where $b_r = 6,b_c=8$.
Question: The translation of the A is fairly easy to understand. What I don't get is why b is not converted to matrix form yet solving the above system yields the correct answer. In other words, the following equations
\begin{equation}\label{c}\tag{3} \left\{\begin{matrix} 3x_r-4x_c = 6\\ 4x_r+3x_c = 8 \end{matrix}\right. \end{equation} makes no sense to me.
Note that, I know how to solve the linear system. I'm looking for a detailed explanation of what's happening between (1) and (2)
Thank you
Let's try to justify the equations given by (3). If we write out the product $(3+4i)x$, we have $$ (3+4i)x = (3 + 4i)(x_r + x_ci) = 3x_r + 3x_c i + 4x_r i + 4x_c i^2 \\ = [3x_r - 4x_c] + [4x_r + 3x_c]i $$ Now, in order for two complex numbers to be equal, their real parts must be equal and their imaginary parts must be equal. So, in order to have $(3+4i)x = b$, we must have $$ 3x_r - 4x_c = b_r\\ 4x_r + 3x_c = b_c $$ which is precisely the system of equations that you've come up with.