Suppose we have $z$ as a complex number, $z \in C$, how do you graph an inequality which has $z$ in it?
This kinds of inequalities arise when we need to graph the shape of stability region of a given numerical method:
For example, for RK2 method we can derive the stability inequality:
$|1+z+\frac{z^2}{2}| < 1$
What I could do so far was to set the inequality to zero and solve for $z$:
$|1+z+\frac{z^2}{2}| = 1$ so $z = 0, -2$. Therefore $z$ must be between $0$ and $-2$.
I also know the existence of circle formula: $(x-h)^2 + (y-k)^2 = r^2$ which sometimes helps to graph an inequality by transforming the inequality into the circle formula at origin $(h, k)$ with radius $r$.
But I can't transform the above RK2 inequality to a circle formula, and also unable to get the imaginary part properly, if I take the 'set to equality' method (though I know $-2< Re{\{z\}} < 0$).
Ok the answers provided by Eric Stucky and Morgan Rodgers both pointing at replacing $z$ with $x+iy$ is prefect. The problem is that in the exams there is no computer to plot the inequality derived in terms of $x$ and $y$.
Below is the approach I learned from http://www.math.ubc.ca/~peirce/M405_607E_Lecture%2018.pdf which I found the most suitable approach when you are in exam room:
First set the inequality to the function G such that:
$G(z) = 1 + z + \frac{z^2}{2}$
For stability we require $|G(z)| < 1$.
Solve $z$ in terms of $G$:
$z = -1 \pm \sqrt{2G-1}$
Now we can start graphing the $z$. First we assume $G$ is a circle of radius 1 at the origin of real/imaginary plane. Then we scale $G$ by two and we get $2G$, then we shift the circle to the left and we get $2G-1$ and so on unil we get $-1 \pm \sqrt{2G-1}$.
The process has been shown with step by step conformal map in http://www.math.ubc.ca/~peirce/M405_607E_Lecture%2018.pdf
I consider this as the best answer, specially in exam rooms. I will wait for further confirmation by the community and then will accept this as answer after few days.