Square Roots of a Complex Number
Every complex number has a square root in . Given , we find such that by solving a system of two real equations. The result is a pair of opposite complex numbers .
Quick Reference
| Quantity | Formula (when ) |
|---|---|
| x^2\dfrac{a + \sqrt{a^2+b^2}}{2}y^2\dfrac{-a + \sqrt{a^2+b^2}}{2}$ | |
| Sign condition | $xyb$ have the same sign |
Deriving the Square Root Formula
Given a complex number $a + bi$, we seek $x + yi$ such that:
Expanding the left side:
Matching real and imaginary parts gives a system of two equations:
\left\{ \begin{aligned} x^2 - y^2 &= a \\ 2xy &= b \end{aligned} \right.To solve this, we use the identity $(x^2 + y^2)^2 = (x^2 - y^2)^2 + 4x^2y^2$:
Since $x^2 + y^2 \geq 0$, we take the non-negative square root:
Combining this with $x^2 - y^2 = a$:
Both $x^2y^2$ are non-negative regardless of the sign of $a$, so real solutions $xy$ always exist.
The solutions come in pairs $\pm(x, y)$. Since $2xy = b$, the product $xy$ must have the same sign as $b$. This determines which combination of signs to choose.
Square Root Formula. For $a + bi$ with $b \neq 0$:
For the case $b = 0$:
\sqrt{a} = \begin{cases} \pm\sqrt{a} & \text{if } a \geq 0 \\ \pm\,i\sqrt{-a} & \text{if } a < 0 \end{cases}
Properties of Complex Square Roots
Every non-zero complex number has exactly two square roots, which are negatives of each other (i.e., $\pm r$ for some $r \in \mathbb{C}$). These two values coincide only if $a + bi = 0b = 0a > 0$: the square roots are real, $\pm\sqrt{a}b = 0a < 0$: the square roots are purely imaginary, $\pm\,i\sqrt{-a}b \neq 0$: the square roots are genuinely complex (neither real nor purely imaginary).
Example 1. Find $\sqrt{3 + 4i}$.
Solution. Here $a = 3b = 4$.
Compute: $\sqrt{a^2 + b^2} = \sqrt{9 + 16} = \sqrt{25} = 5$.
Then:
Since $b = 4 > 0$, we need $xy > 0xy$ have the same sign. The two square roots are:
Verification: $(2 + i)^2 = 4 + 4i + i^2 = 4 + 4i - 1 = 3 + 4i$. Correct.
Example 2. Find $\sqrt{-5 + 12i}$.
Solution. Here $a = -5b = 12$.
Compute: $\sqrt{a^2 + b^2} = \sqrt{25 + 144} = \sqrt{169} = 13$.
Then:
Since $b = 12 > 0$, we need $xy > 0xy$ have the same sign:
Verification: $(2 + 3i)^2 = 4 + 12i + 9i^2 = 4 + 12i - 9 = -5 + 12i$. Correct.
Quadratic Equations with Complex Coefficients
The quadratic formula
still works when the coefficients $a$, $b$, $c$ are complex numbers. When $b^2 - 4ac$ is complex (not real), the square root in the formula must be understood as one of the two complex square roots computed above.
Example 3. Solve $x^2 - (3 + 2i)x + (5 + i) = 0$.
Solution. Here $a = 1$, $b = -(3 + 2i)$, $c = 5 + i$.
Compute the discriminant:
\begin{aligned} b^2 - 4ac &= (-(3+2i))^2 - 4(5+i) \\ &= (9 + 12i + 4i^2) - (20 + 4i) \\ &= (9 + 12i - 4) - 20 - 4i \\ &= 5 + 12i - 20 - 4i \\ &= -15 + 8i \end{aligned}Find $\sqrt{-15 + 8i}$: here $a = -15$, $b = 8$, $\sqrt{a^2+b^2} = \sqrt{225 + 64} = \sqrt{289} = 17$.
Since $b = 8 > 0$, take $xy > 0$: $\sqrt{-15 + 8i} = \pm(1 + 4i)$.
The two solutions are:
\begin{aligned} x_1 &= \frac{(3 + 2i) + (1 + 4i)}{2} = \frac{4 + 6i}{2} = 2 + 3i \\ x_2 &= \frac{(3 + 2i) - (1 + 4i)}{2} = \frac{2 - 2i}{2} = 1 - i \end{aligned}Frequently Asked Questions
How many square roots does a complex number have?
Every non-zero complex number has exactly two square roots, and they are negatives of each other. For example, the square roots of $3 + 4i2 + i-(2 + i) = -2 - i$. The number zero has only one square root: zero.