Finding the square root of a complex number extends the familiar concept of square roots from real numbers into the complex plane. Given a complex number
\( z = a + bi \),
where \( a \) and \( b \) are real numbers, and \( i = \sqrt{-1} \), the goal is to find a complex number
\( w = x + yi \)
such that
\( w^2 = z \)
To find \( w \), we need to determine real numbers \( x \) and \( y \) such that
\(
(x + yi)^2 = a + bi
\)
Applying algebraic expansion and using the identity \( i^2 = -1 \) on the left-hand side:
\(
(x + yi)^2 = x^2 + 2xyi + (yi)^2 = x^2 - y^2 + 2xyi
\)
Here, we use \( i^2 = -1 \).
Two complex numbers are equal only when both their real components and imaginary components are identical. Therefore,
From the imaginary part,
\(
y = \frac{b}{2x}
\)
(assuming x ≠ 0).
Substituting into the real part:
\(
x^2 - \left(\frac{b}{2x}\right)^2 = a
\)
Multiply both sides by \( x^2 \) to clear the denominator:
\(
x^4 - \frac{b^2}{4} = a x^2
\)
Rearranged:
\(
x^4 - a x^2 - \frac{b^2}{4} = 0
\)
Let \( t = x^2 \), converting this into a quadratic equation:
\(
t^2 - a t - \frac{b^2}{4} = 0
\)
Using the quadratic formula:
\(
t = \frac{a \pm \sqrt{a^2 + b^2}}{2}
\)
Since \( t = x^2 \), take the positive root for \( t \) (because \( x^2 \geq 0 \)).
Finally,
\(
x = \pm \sqrt{t}
\)
and
\(
y = \frac{b}{2x}
\)
Given \( z = 3 + 4i \), with \( a = 3 \) and \( b = 4 \):
The square root of a complex number \( a + bi \) can be found by solving the system:
\[ x^2 - y^2 = a \\ 2xy = b \]
This results in a quadratic equation in terms of \( x^2 \), enabling us to solve for both \( x \) and \( y \). The two roots obtained are negatives of each other, completing the process of finding complex square roots.