Complex Conjugate Calculator

Find z̄ = a − bi for any complex number z = a + bi. Shows modulus, argument, polar form, reciprocal, and key properties.

Enter the real part a and imaginary part b of a complex number z = a + bi. The calculator instantly shows the complex conjugate z̄ = a − bi, the modulus |z|, the argument θ in radians and degrees, the polar form, the reciprocal 1/z, and a breakdown of key conjugate properties.

Enter complex number z = a + bi step-by-step

What is the complex conjugate?

The complex conjugate of a complex number z = a + bi is the number z̄ = a − bi. You form it by keeping the real part unchanged and flipping the sign of the imaginary part.

The term “conjugate” comes from the Latin conjugare, meaning “to join together.” Complex conjugates are paired in a specific way: they have the same real part and imaginary parts that are equal in magnitude but opposite in sign. This pairing has deep mathematical consequences — polynomials with real coefficients always have complex roots in conjugate pairs, and the product of a number with its conjugate is always a non-negative real number.

The complex conjugate is denoted several ways depending on the textbook: z̄ (z with an overline), z* (z with an asterisk, common in physics and engineering), or conj(z). All three mean the same thing.

Quick examples:

  • Conjugate of 3 + 4i is 3 − 4i
  • Conjugate of −2 − 7i is −2 + 7i
  • Conjugate of 5 (real number) is 5 (the conjugate of a real number is itself)
  • Conjugate of 6i (pure imaginary) is −6i

A number is equal to its own conjugate if and only if it is real — that is, when its imaginary part b = 0.

The conjugate formula

For z = a + bi:

Complex conjugatez̄ = a − bi

The conjugate of a conjugate returns the original number: z̄̄ = z. This makes the conjugate operation an involution — applying it twice is the same as doing nothing.

Worked example: Find the conjugate of z = −3 + 5i.

Here a = −3, b = 5. So z̄ = −3 − 5i.

Check: the real part stays −3, the imaginary part changes from +5 to −5. ✓

Worked example: Find the conjugate of z = 4.

Here a = 4, b = 0. So z̄ = 4 − 0i = 4. A real number is its own conjugate. ✓

The modulus |z|

The modulus (also called the absolute value or magnitude) of z = a + bi is the distance from the origin to the point (a, b) in the complex plane:

Modulus formula|z| = √(a² + b²)

The modulus is always a non-negative real number. It equals zero only when z = 0.

The key identity: The product of z and its conjugate equals the square of the modulus:

Conjugate–modulus identityz · z̄ = (a + bi)(a − bi) = a² + b² = |z|²

This identity is one of the most useful in complex arithmetic. It explains why multiplying by a conjugate eliminates imaginary parts — the cross terms +abi and −abi cancel, leaving only the sum of squares.

z|z| = √(a²+b²)z · z̄ = |z|²
3 + 4i3 − 4i525
1 + i1 − i√2 ≈ 1.4142
−2 + 3i−2 − 3i√13 ≈ 3.60613
55525
−4i4i416

Note that 3 + 4i has modulus exactly 5 — this is a complex analog of the 3-4-5 Pythagorean triple.

Argument and polar form

The argument of z = a + bi is the angle θ that the line from the origin to (a, b) makes with the positive real axis, measured counter-clockwise:

Argument formulaθ = arg(z) = atan2(b, a)

The argument is typically expressed in radians (range −π to π) or in degrees (range −180° to 180°). Using atan2 (the two-argument arctangent) correctly handles all four quadrants.

The polar form uses the modulus and argument to represent z as:

Polar formz = r(cos θ + i sin θ), where r = |z|

This is often abbreviated z = re^(iθ) using Euler’s formula e^(iθ) = cos θ + i sin θ.

The conjugate in polar form is simply z̄ = r(cos(−θ) + i sin(−θ)) = re^(−iθ) — same modulus, negated argument. This geometric interpretation makes sense: reflecting the point (a, b) across the real axis gives (a, −b), which is z̄. The reflection preserves distance from the origin, so the modulus stays the same.

Example: For z = 3 + 4i:

  • r = |z| = 5
  • θ = atan2(4, 3) ≈ 0.9273 rad ≈ 53.13°
  • Polar form: 5(cos 0.9273 + i sin 0.9273)
  • Conjugate z̄ = 3 − 4i has argument ≈ −0.9273 rad ≈ −53.13°

Key properties of conjugates

The conjugate interacts cleanly with all the standard complex arithmetic operations. These properties are used constantly in calculations:

PropertyFormulaWhat it means
Additionz̄₁ + z̄₂ = z₁ + z₂ (overline distributes)Conjugate of a sum = sum of conjugates
Multiplicationz̄₁ · z̄₂ = z₁ · z₂ (overline distributes)Conjugate of a product = product of conjugates
z + z̄2a (always real)Sum of a number and its conjugate = twice the real part
z − z̄2bi (always imaginary)Difference = twice the imaginary part, times i
z · z̄a² + b² = |z|²Product is always a non-negative real number
|z̄||z|Conjugate and original have the same modulus

The distributive properties (conjugate of a sum = sum of conjugates; conjugate of a product = product of conjugates) make the conjugate map a field automorphism of the complex numbers — it preserves the algebraic structure. For polynomials with real coefficients, this means that if z is a root, so is z̄.

The real part extraction trick: Since z + z̄ = 2a, you can isolate the real and imaginary parts:

Real / imaginary partsRe(z) = (z + z̄) / 2    and    Im(z) = (z − z̄) / 2i

The reciprocal and division of complex numbers

Dividing by a complex number uses the conjugate to eliminate the imaginary part from the denominator. The key technique is multiplying numerator and denominator by the conjugate of the denominator:

Division technique1/z = z̄ / (z · z̄) = z̄ / |z|² = (a − bi) / (a² + b²)

More generally, to compute w / z for two complex numbers:

Complex divisionw/z = (w · z̄) / (z · z̄) = (w · z̄) / |z|²

Example: Compute (2 + 3i) / (1 − 2i).

Multiply numerator and denominator by the conjugate of 1 − 2i, which is 1 + 2i:

  • Numerator: (2 + 3i)(1 + 2i) = 2 + 4i + 3i + 6i² = 2 + 7i − 6 = −4 + 7i
  • Denominator: (1 − 2i)(1 + 2i) = 1 + 4 = 5

So (2 + 3i) / (1 − 2i) = (−4 + 7i) / 5 = −0.8 + 1.4i

The conjugate is what makes this possible: multiplying denominator by its conjugate gives a real number (the modulus squared), and dividing a complex number by a real number is trivial — just divide real and imaginary parts separately.

Second example: Compute 1 / (2 − 3i).

Multiply numerator and denominator by the conjugate 2 + 3i:

  • Numerator: 1 · (2 + 3i) = 2 + 3i
  • Denominator: (2 − 3i)(2 + 3i) = 4 + 9 = 13

So 1 / (2 − 3i) = (2 + 3i) / 13 ≈ 0.154 + 0.231i

The reciprocal 1/z = (a − bi) / (a² + b²) is undefined only when z = 0 (modulus = 0), since there is no number you can multiply by zero to get one.

Complex conjugate reference table

z = a + bi|z|arg(z)z · z̄1/z
3 + 4i3 − 4i5≈ 53.13°250.12 − 0.16i
1 + i1 − i√245°20.5 − 0.5i
−1 + i−1 − i√2135°2−0.5 − 0.5i
2 − 3i2 + 3i√13≈ −56.31°13≈ 0.154 + 0.231i
−5i5i5−90°250.2i
444160.25
−3 − 4i−3 + 4i5≈ −126.87°25−0.12 + 0.16i

The complex plane: geometry of the conjugate

In the complex plane (also called the Argand diagram), a complex number z = a + bi is plotted as the point (a, b): the real part on the horizontal axis, the imaginary part on the vertical axis.

The conjugate z̄ = a − bi is the reflection of z across the real axis. This geometric picture explains all the conjugate’s algebraic properties at a glance:

  • Reflection preserves horizontal distance (real part unchanged) but flips vertical position (imaginary part negated).
  • Reflection preserves the distance from the origin, so |z̄| = |z|.
  • Reflection negates the angle, so arg(z̄) = −arg(z).
  • Two points that are reflections of each other are equidistant from every point on the mirror line — which is why z + z̄ is always real (it lies on the real axis).

Multiplying by the conjugate rotates the angle to zero. When you multiply z = r·e^(iθ) by z̄ = r·e^(−iθ), the product has angle θ + (−θ) = 0 and modulus r². A complex number at angle 0 with any modulus is a positive real number — which is why z · z̄ is always a non-negative real.

zGeometric positionz̄ positionReflection axis
3 + 4iQuadrant I, 53.13°3 − 4i, Quadrant IVReal axis
−2 + 3iQuadrant II, 123.69°−2 − 3i, Quadrant IIIReal axis
5Positive real axis, 0°5 (same point)Self-conjugate
2iPositive imaginary axis, 90°−2i, negative imaginary axisReal axis

This geometric view also makes the conjugate root theorem intuitive: a polynomial with real coefficients has real-valued outputs for real-valued inputs, which means its graph is symmetric about the real axis when viewed in the complex plane. If z = a + bi is a root (a point where the polynomial hits zero), its mirror image a − bi must also be a root.

Real-world uses of the complex conjugate

Electrical engineering: AC circuit analysis

In AC circuits, voltages and currents are represented as complex numbers (phasors). The impedance Z = R + jX, where j is the engineering symbol for i. To find the power delivered to a circuit, engineers compute the complex power S = V · I*, where I* is the complex conjugate of the current phasor.

The real part of S is the active power (watts), the imaginary part is the reactive power (VAR). The conjugate is essential because it is what makes the real and reactive parts separate cleanly.

Maximum power transfer from a source to a load occurs when the load impedance is the complex conjugate of the source impedance — this is the conjugate matching condition, fundamental to antenna and RF circuit design.

Quantum mechanics: inner products and expectation values

In quantum mechanics, quantum states are represented by complex-valued wave functions ψ(x). The probability of finding a particle at position x is |ψ(x)|² = ψ(x) · ψ*(x) — the wave function times its complex conjugate. This guarantees the probability is always real and non-negative.

Expectation values of observables are computed as integrals involving both ψ and ψ*. Without the conjugate, these integrals could be complex-valued, which would be physically meaningless for an observable quantity.

Signal processing: Fourier analysis

The Fourier transform of a real-valued signal has a specific symmetry: F(−f) = F(f)*, the value at negative frequency is the complex conjugate of the value at positive frequency. This Hermitian symmetry means that for a real signal, the negative-frequency components carry no new information — you only need to store the positive-frequency half.

Correlation between two signals is computed using conjugate multiplication in the frequency domain. The inverse Fourier transform of F₁(f) · F₂*(f) gives the cross-correlation of the two signals — a fundamental operation in radar, sonar, and communications.

Polynomial algebra: conjugate root theorem

For any polynomial with real coefficients, complex roots always come in conjugate pairs. If 2 + 3i is a root of a real polynomial, then 2 − 3i must also be a root. This is the complex conjugate root theorem, a consequence of the fact that the conjugate map is a field automorphism.

In practice, this means a degree-n real polynomial always has an even number of non-real roots. If you find one complex root numerically, you get the second one for free — it’s just the conjugate.

Frequently asked questions
What is the complex conjugate of a+bi?
The complex conjugate of z = a + bi is z̄ = a − bi. You form it by keeping the real part unchanged and flipping the sign of the imaginary part. For example, the conjugate of 3 + 4i is 3 − 4i, and the conjugate of −2 − 5i is −2 + 5i.
Why is the product z · z̄ always a real number?
When you multiply z = a + bi by z̄ = a − bi, the imaginary cross terms cancel: (a + bi)(a − bi) = a² − abi + abi − b²i² = a² + b². Since i² = −1, the result is the sum of two squares — always a non-negative real number equal to |z|².
What is the modulus of a complex number?
The modulus |z| of z = a + bi is the distance from the origin to the point (a, b) in the complex plane: |z| = √(a² + b²). It is always non-negative and equals zero only when z = 0. The modulus satisfies |z · w| = |z| · |w|, making it the complex analog of absolute value.
How do you divide complex numbers?
To divide w by z, multiply both numerator and denominator by the complex conjugate of z: w/z = (w · z̄) / (z · z̄) = (w · z̄) / |z|². The denominator becomes a real number, so you can then split the fraction into real and imaginary parts. For example, (1 + 2i) / (3 − i) = (1 + 2i)(3 + i) / (9 + 1) = (1 + 7i) / 10 = 0.1 + 0.7i.
What does the argument of a complex number represent?
The argument θ is the angle that the line from the origin to the point (a, b) makes with the positive real axis, measured counter-clockwise. It is computed as atan2(b, a), which correctly handles all four quadrants. The conjugate of z has argument −θ — it is the mirror image of z reflected across the real axis.
When is a complex number equal to its own conjugate?
A complex number z = a + bi equals its own conjugate z̄ = a − bi if and only if b = 0 — that is, z is a real number. Real numbers are the only complex numbers that are self-conjugate. Similarly, z = −z̄ (z is the negative of its conjugate) if and only if a = 0 — that is, z is purely imaginary.
What is the complex conjugate root theorem?
The complex conjugate root theorem states that if a polynomial with real coefficients has a complex root z = a + bi (with b ≠ 0), then its complex conjugate z̄ = a − bi is also a root. This means non-real roots of real polynomials always come in conjugate pairs, and the total count of non-real roots is always even.
How is the complex conjugate used in the Fourier transform?
For a real-valued signal f(t), its Fourier transform F(ω) satisfies F(−ω) = F(ω)* — the value at negative frequency is the complex conjugate of the value at positive frequency. This Hermitian symmetry means the negative-frequency half carries no new information for real signals. Signal cross-correlation is also computed using conjugate multiplication in the frequency domain.