Complex Number to Trigonometric Form Calculator

Convert a complex number a + bi into trigonometric (polar) form r(cos θ + i sin θ). Enter the real and imaginary parts to get the modulus, argument, and quadrant.

Quick Facts

Formula
z = r(cos θ + i sin θ), r = √(a² + b²), θ = atan2(b, a)
θ is the principal argument, reported in (−180°, 180°] or the radian equivalent (−π, π].

Your Results

Calculated
Modulus (r)
-
Distance from the origin, |z|
Argument (θ)
-
Angle from the positive real axis
Trigonometric form
-
r(cos θ + i sin θ)
Quadrant
-
Location in the complex plane

Ready

Enter the real and imaginary parts, then press Calculate.

How the Complex Number to Trigonometric Form Calculator works

Every complex number z = a + bi can be plotted as a point on the complex plane, with the real part a on the horizontal axis and the imaginary part b on the vertical axis. Rectangular form (a + bi) describes that point using horizontal and vertical coordinates. Trigonometric form — also called polar form — describes the same point using a distance from the origin and an angle, which is often more convenient for multiplication, division, powers, and roots.

Formula and method

The trigonometric form is z = r(cos θ + i sin θ), where:

  • Modulus: r = √(a² + b²) — this is the length of the segment from the origin to the point (a, b), found with the Pythagorean theorem.
  • Argument: θ = atan2(b, a) — the angle measured counterclockwise from the positive real axis to that segment.

The calculator uses atan2(b, a) rather than a plain arctan(b/a) because atan2 examines the sign of a and b separately and returns the correct angle in every quadrant, typically reported in the principal range (−180°, 180°] or (−π, π] radians. Once r and θ are known, a = r cos θ and b = r sin θ recover the original rectangular coordinates — a useful way to check the conversion.

Common sources of error

  • Using arctan(b/a) directly: a calculator's ordinary arctan only returns angles between −90° and 90°, so it gives the wrong quadrant whenever a is negative. atan2(b, a) avoids this.
  • Mixing degrees and radians: keep track of which unit θ is in — 53.13° and 0.9273 radians describe the same angle, but they are not interchangeable numbers.
  • Dropping the "i": the imaginary term is i sin θ, not sin θ — losing the i turns a complex quantity into a real one.
  • Confusing r with a or b: the modulus r is a single non-negative number describing distance, never negative and generally not equal to either a or b alone.

Checking your result

A converted value should always satisfy r ≥ 0, since r is a distance. As a quick check, r² should equal a² + b² exactly, and reconstructing r cos θ and r sin θ should return you to the original a and b (within rounding). The angle should also match the quadrant of the point: positive a and b give an angle between 0° and 90°, negative a with positive b gives 90° to 180°, and so on.

Applications

Trigonometric form makes multiplication and division of complex numbers simpler: multiply two numbers by multiplying their moduli and adding their arguments, or divide by dividing moduli and subtracting arguments. It is also the basis for De Moivre's theorem, which raises complex numbers to a power by raising r to that power and multiplying θ by it. Engineers use this form for AC circuit impedance and phasors, and it underlies rotations in signal processing and computer graphics.

Frequently Asked Questions

What is the trigonometric (polar) form of a complex number?
For a complex number z = a + bi, the trigonometric form is z = r(cos θ + i sin θ), where r is the modulus (distance from the origin) and θ is the argument (angle from the positive real axis). It expresses the same number using distance and direction instead of horizontal and vertical coordinates.
How do you find the modulus and argument of a complex number?
The modulus is r = √(a² + b²), the same as the hypotenuse of a right triangle with legs a and b. The argument is θ = atan2(b, a), the angle whose cosine is a/r and sine is b/r, measured counterclockwise from the positive real axis.
Why use atan2(b, a) instead of arctan(b/a)?
Plain arctan(b/a) only returns angles in a 180° range and cannot tell which quadrant z is in, since 3+4i and -3-4i give the same ratio b/a. atan2(b, a) looks at the sign of both a and b separately, so it returns the correct angle in the full -180° to 180° range for any quadrant.
What is the trigonometric form of 3 + 4i?
For a = 3 and b = 4, the modulus is r = √(3² + 4²) = √25 = 5, and the argument is θ = atan2(4, 3) ≈ 53.13°. So 3 + 4i in trigonometric form is 5(cos 53.13° + i sin 53.13°).