How would one solve a complex equation system solely using a cartesian representation of complex numbers by hand? For instance, take the following linear equation system:
$(1+i)z_1 - z_2 = i$
$(1-i)z_1 + (1+i)z_2 = 1$
This system contains both complex variables and complex coefficients. Is it even possible to solve an equation system like this? How would one go about it? Does it have multiple solutions since it includes complex numbers?
$(1+i)z_1-z_2 = i\\ (1-i)z_1 + (1+i) = 1$
multiply the first equation by $(1+i)$, and add the two equations together.
$(1+i)^2z_1-(1+i)z_2 = i(1+i)\\ (1-i)z_1 + (1+i)z_2 = 1$
multiply out the complex numbers
$2i z_1-(1+i)z_2 = -1+i\\ (1-i)z_1 + (1+i)z_2 = 1$
adding the two equations
$(1+i)z_1 = i\\ z_1 = \frac {i}{1+i}$
multiply top and bottom by the complex conjugate
$z_1 = \frac {1 + i}2$
substitute into the original equation:
$(1+i)\frac {1 + i}2-z_2 = i\\ i-z_2 = i\\ z_2 = 0$