I am trying to solve the aforementioned problem but have previously only worked with complex number inequalities where the resulting set is (the inside/outside of) a circle.
I am asked to determine all complex numbers z which satisfy the equation
$$|z + 1| = |z - i|$$
I have tried writing $z$ as $x + iy$ and grouping the real and imaginary parts together:
$|x + iy + 1| = |x + iy - i|$
but this just leads to
$|(x + 1) + i(y - 0)| = |(x + 0) + i(y - 1)|$
$\sqrt{(x + 1)^{2} + (y - 0)^{2}} = \sqrt{(x + 0)^{2} + (y - 1)^{2}}$
$(x + 1)^{2} + (y - 0)^{2} = (x + 0)^{2} + (y - 1)^{2}$
$x^2 + 2x + 1 + y^2 = x^2 + y^2 - 2y + 1$
$x + y = 0$
