b = The imaginary part of the complex number (the coefficient of i)
∣a+bi∣ = The absolute value (modulus) of the complex number, representing its distance from the origin
Worked Example
Problem:Find the absolute value of the complex number 3+4i.
Step 1:Identify the real part a and the imaginary part b.
a=3,b=4
Step 2:Substitute into the formula ∣a+bi∣=a2+b2.
∣3+4i∣=32+42
Step 3: Square each part and add.
=9+16=25
Step 4: Take the square root to get the final answer.
=5
Answer:∣3+4i∣=5
Another Example
This edge case shows that when the imaginary part is zero, the absolute value of a complex number reduces to the ordinary absolute value of a real number. Notice that ∣−5∣=5 whether you use the real-number definition or the complex-number formula.
Problem:Find the absolute value of −5+0i (a purely real number treated as a complex number).
Step 1:Identify the real and imaginary parts. Since there is no imaginary component, b=0.
a=−5,b=0
Step 2: Apply the formula.
∣−5+0i∣=(−5)2+02
Step 3: Simplify.
=25+0=25=5
Answer:∣−5+0i∣=5
Frequently Asked Questions
What is the difference between absolute value of a real number and absolute value of a complex number?
For a real number a, the absolute value ∣a∣ gives its distance from 0 on the number line. For a complex number a+bi, the absolute value a2+b2 gives its distance from the origin on the two-dimensional complex plane. The complex formula generalizes the real one: if b=0, then a2+02=∣a∣, so the two definitions are fully consistent.
Why is the absolute value of a complex number always positive or zero?
Because a2 and b2 are each non-negative, their sum a2+b2 is non-negative, and the principal square root of a non-negative number is always non-negative. The only way the result equals zero is when both a=0 and b=0, meaning the complex number itself is 0.
How do you find the absolute value of a complex number in polar form?
If a complex number is written in polar form as r(cosθ+isinθ), the absolute value is simply r, the radial distance from the origin. You do not need to convert back to rectangular form — the modulus r is already built into the polar representation.
Absolute Value (Modulus) vs. Argument of a Complex Number
Absolute Value (Modulus)
Argument of a Complex Number
What it measures
Distance from the origin (how far)
Angle from the positive real axis (which direction)
Formula (rectangular form)
a2+b2
θ=arctan(ab) (adjusted for quadrant)
Result type
A non-negative real number
An angle, typically in radians or degrees
In polar form r(cosθ+isinθ)
Equals r
Equals θ
Geometric meaning
Radius of a circle centered at the origin
Direction measured counterclockwise from the positive real axis
Why It Matters
You encounter the absolute value of a complex number frequently in precalculus and physics when converting between rectangular and polar forms. It is essential for multiplying and dividing complex numbers in polar form, since ∣z1⋅z2∣=∣z1∣⋅∣z2∣. In electrical engineering, the modulus represents the amplitude of alternating current signals modeled by complex numbers.
Common Mistakes
Mistake:Adding a and b before squaring, computing (a+b)2 instead of a2+b2.
Correction:You must square the real and imaginary parts separately, then add the squares. For example, ∣3+4i∣=9+16=5, not (3+4)2=7.
Mistake:Forgetting to include the sign of a or b when squaring, especially with negative values like −3+4i.
Correction:Squaring always makes the result positive: (−3)2=9. The formula a2+b2 handles negative components automatically, so ∣−3+4i∣=9+16=5, the same as ∣3+4i∣.