Frequently Asked Questions
What is the modulus of a complex number and how is it calculated?
For z = a + bi, the modulus |z| is the distance from the origin to (a, b) on the complex plane. It is computed as |z| = sqrt(a^2 + b^2).
What does the principal argument arg(z) mean in this calculator?
The principal argument is the angle of z measured from the positive real axis, reported in the range (-pi, pi]. The value depends on the quadrant, so a quadrant-aware angle (like atan2(Im(z), Re(z))) is used.
Why can arg(z) change suddenly near the negative real axis?
The principal argument has a branch cut along the negative real axis because it is restricted to (-pi, pi]. Crossing that line can shift the reported angle by about 2pi even though the direction changes continuously.
How do I interpret an inequality like |z-a| ≤ R on the complex plane?
|z-a| measures the distance from z to the center a. The condition |z-a| ≤ R describes the closed disk centered at a with radius R, while |z-a| = R is the boundary circle and |z-a| > R is the exterior region.