How Do You Solve Complex Numbers? | Math Simplified

To solve complex numbers, treat real and imaginary parts separately during addition or subtraction, apply the FOIL method for multiplication, and use conjugates to simplify division.

Mathematics often introduces concepts that seem impossible at first glance. You likely learned early on that you cannot take the square root of a negative number. In the realm of real numbers, that rule stands firm. However, advanced math, engineering, and physics require a broader system to handle these equations.

This is where complex numbers enter the picture. They do not just exist on paper; they power electrical engineering, signal processing, and quantum mechanics. Learning how do you solve complex numbers allows you to work through equations that have no real solutions.

We will break down the rules of arithmetic for these numbers. You will see that they follow standard algebraic patterns you already know, with one simple twist involving the letter i.

The Anatomy Of A Complex Number

Before you can compute solutions, you must understand what you are working with. A complex number is an expression written in the form a + bi.

This structure combines two distinct parts:

  • The Real Part (a) — This is a standard number, like 5, -3, or 10.5.
  • The Imaginary Part (bi) — This includes i, the imaginary unit.

The definition of the imaginary unit is specific. We define i as the square root of -1. Consequently, the most powerful rule you will use in these calculations is:

i2 = -1

Keep this rule nearby. Whenever you multiply complex numbers and encounter an i squared, you must replace it with -1 immediately. This turns an imaginary term back into a real number, allowing you to simplify the expression further.

Solving Complex Numbers Using Basic Operations

When people ask “how do you solve complex numbers,” they usually mean “how do you perform arithmetic with them.” You simplify expressions involving i by treating it like a variable, similar to x or y, until the final step.

Adding And Subtracting Complex Numbers

Addition and subtraction are the most straightforward operations. You simply combine like terms. You add real parts to real parts and imaginary parts to imaginary parts.

Example of Addition:

(3 + 4i) + (2 + 5i)

  • Group the Real Parts — Take 3 and 2. Their sum is 5.
  • Group the Imaginary Parts — Take 4i and 5i. Their sum is 9i.
  • Combine Results — The final answer is 5 + 9i.

Example of Subtraction:

Subtraction requires one extra step. You must distribute the negative sign to the second complex number before combining terms.

(6 + 2i) – (3 – 5i)

  • Distribute the Negative — Change (3 – 5i) to (-3 + 5i).
  • Rewrite the Problem — Now you have (6 + 2i) – 3 + 5i.
  • Group Real Terms — 6 minus 3 equals 3.
  • Group Imaginary Terms — 2i plus 5i equals 7i.
  • Final Answer — 3 + 7i.

Multiplying Complex Numbers

Multiplication works exactly like multiplying binomials in algebra. You use the FOIL method (First, Outer, Inner, Last). The only difference is that you will produce an i2 term, which you must convert to -1.

Let’s look at the calculation for (2 + 3i)(1 – 4i).

  • Multiply First Terms — 2 times 1 equals 2.
  • Multiply Outer Terms — 2 times -4i equals -8i.
  • Multiply Inner Terms — 3i times 1 equals 3i.
  • Multiply Last Terms — 3i times -4i equals -12i2.

Now, write it out: 2 – 8i + 3i – 12i2.

Refining the answer:

Combine the middle terms (-8i and 3i) to get -5i. Now look at the end term: -12i2. Since i2 is -1, this term becomes -12(-1), which is positive 12.

Your expression is now: 2 – 5i + 12. Combine the real numbers (2 and 12) to get 14. The solution is 14 – 5i.

The Cycle Of Powers Of i

Before moving to division, you should recognize the pattern of exponents for i. This pattern repeats every four numbers. Understanding this cycle helps you solve complex numbers with high exponents quickly.

Power Value Reasoning
i1 i It remains itself.
i2 -1 Definition of i.
i3 -i i2 * i = -1 * i
i4 1 i2 * i2 = -1 * -1

If you need to find i25, you divide the exponent by 4. The remainder tells you the value. 25 divided by 4 leaves a remainder of 1. Therefore, i25 equals i1, or simply i.

Dividing Complex Numbers With Conjugates

Division is the most labor-intensive operation. You cannot simply divide the terms directly because math rules prohibit leaving an imaginary number in the denominator of a fraction. To fix this, you use the complex conjugate.

Finding The Conjugate

The conjugate of a complex number creates a real number when multiplied. To find the conjugate of a + bi, you simply flip the sign of the imaginary part to get a – bi.

  • Original: 3 + 2i → Conjugate: 3 – 2i
  • Original: 1 – 4i → Conjugate: 1 + 4i
  • Original: -5 + i → Conjugate: -5 – i

Notice that the sign of the real part (the first number) never changes. Only the imaginary part swaps signs.

Step-By-Step Division

Let’s solve the division problem: (4 + i) / (2 – 3i).

1. Identify the Conjugate
Look at the denominator (bottom number): 2 – 3i. Its conjugate is 2 + 3i.

2. Set Up the Multiplication
Multiply both the numerator (top) and denominator (bottom) by this conjugate.

Top: (4 + i)(2 + 3i)
Bottom: (2 – 3i)(2 + 3i)

3. Expand the Numerator (FOIL)
(4 × 2) + (4 × 3i) + (i × 2) + (i × 3i)
8 + 12i + 2i + 3i2
Remember that 3i2 becomes -3.
8 + 14i – 3 = 5 + 14i

4. Expand the Denominator
When you multiply conjugates, the middle terms always cancel out.
(2 × 2) + (2 × 3i) – (3i × 2) – (3i × 3i)
4 + 6i – 6i – 9i2
The 6i and -6i vanish. You are left with 4 – 9i2.
Since -9i2 is -9(-1), it becomes +9.
4 + 9 = 13

5. Write the Final Solution
Put the new top over the new bottom: (5 + 14i) / 13.
Standard form requires separating the parts: 5/13 + (14/13)i.

Solving Quadratic Equations With Negative Roots

Often, students ask how do you solve complex numbers in the context of algebra class. This usually refers to finding roots for quadratic equations where the parabola never touches the x-axis.

Recall the Quadratic Formula:

x = [ -b ± √(b2 – 4ac) ] / 2a

The part under the square root is called the discriminant. If b2 – 4ac is a negative number, you have no “real” solutions. However, you do have two complex solutions.

Example Problem

Solve for x: x2 + 4x + 8 = 0.

  • Identify Coefficients — a = 1, b = 4, c = 8.
  • Calculate Discriminant — 42 – 4(1)(8) = 16 – 32 = -16.
  • Apply Square Root — You need √(-16). This simplifies to 4i.
  • Plug Into Formula — x = (-4 ± 4i) / 2.
  • Simplify — Divide both terms by 2. The solution is -2 ± 2i.

This tells you that x equals -2 + 2i and -2 – 2i. These are the two complex roots of the equation.

Graphing Complex Numbers

Visualizing these numbers helps cement the concept. You cannot graph them on a standard number line. Instead, you use the Complex Plane (also known as the Argand Plane).

This coordinate system looks like a standard X-Y grid, but the axes have new roles:

  • The Horizontal Axis (Real Axis) — This represents the real number part (a). Moving right is positive; moving left is negative.
  • The Vertical Axis (Imaginary Axis) — This represents the imaginary part (bi). Moving up is positive i; moving down is negative i.

Plotting Example:
To plot 3 – 4i, you start at the origin (0,0). You move 3 units to the right along the Real axis. Then, you move 4 units down along the Imaginary axis. Draw a point there. That point represents the complex number.

Calculating The Absolute Value (Modulus)

In real numbers, absolute value is the distance from zero. The same logic applies here. The absolute value of a complex number, often called the modulus, is its distance from the origin (0,0) on the complex plane.

Since the coordinates form a right triangle with the origin, you use the Pythagorean theorem to find this distance. If z = a + bi, the modulus |z| is:

|z| = √(a2 + b2)

Quick Calculation:
Find the modulus of 3 + 4i.

  • Square the Real Part — 3 squared is 9.
  • Square the Coefficient of i — 4 squared is 16. (Do not include the i itself).
  • Add Them — 9 + 16 = 25.
  • Take the Root — The square root of 25 is 5.

The absolute value of 3 + 4i is 5.

Equality Of Complex Numbers

Sometimes you will face an equation where two complex expressions are set equal to each other. For two complex numbers to be equal, their components must match exactly.

If a + bi = c + di, then:

  • a must equal c (The real parts are identical).
  • b must equal d (The imaginary coefficients are identical).

Solving for Variables:
Suppose you have the equation: 2x + 3yi = 8 – 9i.

To solve for x and y, you separate the equation into two simpler real equations:

  1. Real Equation: 2x = 8. Divide by 2 to get x = 4.
  2. Imaginary Equation: 3y = -9. Divide by 3 to get y = -3.

Why Do We Use Standard Form?

Throughout math textbooks, you will see the instruction to “write the answer in standard form.” This always means a + bi.

Students often stop calculating at the fraction stage, like (5 + 14i) / 13. However, strict mathematical grammar requires you to split this. It ensures clarity regarding exactly how much is real and how much is imaginary. It also makes graphing the number significantly easier.

Always double-check your final answer. If you have an i in the denominator, you are not finished. If you have an i2 anywhere, you are not finished. Keep simplifying until you reach that clean a + bi structure.

Common Mistakes To Avoid

Even advanced students trip up on small details. Watch out for these pitfalls.

Mistake 1: Adding Unlike Terms
You cannot add a real number to an imaginary one. 5 + 2i is just 5 + 2i. It is not 7i. Treat them like oil and water; they sit next to each other but do not mix.

Mistake 2: Forgetting to Distribute the Negative
In subtraction problems like (5 + i) – (2 – i), many people write 5 – 2 – i. This is incorrect. You must subtract the negative i, which turns it positive. The correct expansion is 5 + i – 2 + i.

Mistake 3: Calculating i2 as 1
This happens frequently during tests. Remember, i is the root of -1. Therefore, i times i releases that negative. i2 is always negative 1.

Mistake 4: Incorrect Conjugates
When finding the conjugate of -3 + 4i, some students change both signs to 3 – 4i. This is wrong. You only change the sign in the middle. The correct conjugate is -3 – 4i.

Key Takeaways: How Do You Solve Complex Numbers?

➤ Treat i like a variable (x) for addition and subtraction.

➤ Replace i2 with -1 whenever it appears in multiplication.

➤ Use the FOIL method to multiply two complex parentheses.

➤ Multiply by the conjugate to remove i from a denominator.

➤ Quadratic equations have complex roots when the discriminant is negative.

Frequently Asked Questions

What is the value of i to the power of 0?

Any non-zero number raised to the power of 0 equals 1. This rule applies to imaginary numbers as well. Therefore, i0 = 1. This is the starting point of the 4-step power cycle that governs imaginary exponents.

Can a complex number be a real number?

Yes. All real numbers are technically complex numbers where the imaginary part is zero. For example, the number 7 can be written as 7 + 0i. The set of real numbers is actually a subset contained within the larger set of complex numbers.

How do you check your answer on a calculator?

Most scientific and graphing calculators have a “Complex” or “a+bi” mode. On a TI-84, press the Mode button and select a+bi. You can then use the standard mathematical keys, usually pressing “2nd” then decimal (.) to type the symbol i.

Why can’t you leave i in the denominator?

Leaving a radical (square root) in the denominator is considered “improper” form in math because it makes estimating the value difficult. Since i represents √-1, it counts as a radical. Rationalizing using the conjugate standardizes the number for easier comparison and graphing.

Is the absolute value of a complex number ever negative?

No. Absolute value represents a physical distance from the origin on a graph. Distances cannot be negative. The formula √(a2 + b2) involves squaring numbers (which makes them positive) and taking a principal square root, ensuring the result is always non-negative.

Wrapping It Up – How Do You Solve Complex Numbers?

Complex numbers might look intimidating initially, but they follow a logical and predictable set of rules. Once you grasp that i behaves like a variable that transforms into -1 when squared, the difficulty vanishes.

Whether you are adding, subtracting, multiplying, or performing the conjugate trick for division, the goal remains the same: simplify the expression into the standard a + bi format. Mastering these operations helps you tackle difficult quadratic equations and prepares you for higher-level applications in physics and engineering.