4

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

Arif
  • 331
  • See also http://mathematica.stackexchange.com/questions/3458/plotting-complex-quantity-functions. – lhf Jan 04 '17 at 09:02

1 Answers1

4

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

Robert Israel
  • 448,999
  • thanks, I'm looking for a graphing package that plot complex number inequalities and gives result in the form similar to my diagram here, that helps find the least and greatest value of $arg(z)$ and other similar questions. – Arif Jan 04 '17 at 07:14