[Math] Software to plot complex numbers in Argand diagram

complex numbers

I'm looking for a software or an online resources that allows me to plot complex number inequalities in the Argand diagram similar to this one.

Please, any help is appreciated.

Thanks,
Arif

Best Answer

If you translate the inequalities to what they say about $x$ and $y$, you can use Wolfram Alpha. I don't know if you can use Wolfram Alpha directly: if you give it an inequality involving complex numbers, it just says "Inequalities are not well-defined in the complex plane".

In Maple you could use something like this:

 ineqs:= evalc(subs(z=x+I*y, {abs(z+1-3*I) <= 1, Im(z) >= 3}));
 plots[inequal](ineqs, x=-4..4,y=-4..4);

enter image description here