Skip to main content
返回指南
6 min read6 步骤

How to Perform Complex Number Operations: Step-by-Step Guide

Learn to manually add, subtract, multiply, divide, and find the modulus of complex numbers. Includes formulas, examples, and common pitfalls.

跳过数学——使用计算器

分步说明

1

Understand Complex Number Representation

Begin by recognizing complex numbers in their rectangular form, `z = a + bi`, where `a` is the real part and `b` is the imaginary part. Ensure you clearly identify these components for each number involved in your calculation.

2

Identify the Operation and Select the Correct Formula

Determine whether you need to add, subtract, multiply, divide, or find the modulus. Each operation has a specific formula that must be applied. For division, recall the concept of the complex conjugate.

3

Perform Addition or Subtraction (if applicable)

For addition, combine the real parts and the imaginary parts separately. For subtraction, distribute the negative sign to both parts of the second complex number before combining real and imaginary components.

4

Execute Multiplication or Division (if applicable)

For multiplication, use the FOIL method, remembering to substitute `i^2 = -1`. For division, multiply both the numerator and the denominator by the conjugate of the denominator to eliminate the imaginary part from the denominator, then simplify the resulting expression.

5

Calculate the Modulus (if required)

If you need to find the modulus of a complex number `a + bi`, use the formula `sqrt(a^2 + b^2)`, which represents its distance from the origin in the complex plane.

6

Review and Express the Final Result

After performing the necessary operations, consolidate your real and imaginary terms to express the final answer in the standard `a + bi` rectangular form. Double-check all calculations for accuracy, especially signs and `i^2` substitutions.

Complex numbers extend the real number system by introducing an imaginary unit i, where i^2 = -1. They are fundamental in fields like electrical engineering, quantum mechanics, and signal processing, offering a powerful way to represent and analyze oscillating systems. This guide will walk you through the manual calculation of basic operations on complex numbers, including addition, subtraction, multiplication, division, and finding the modulus. Understanding these manual steps provides a deep comprehension of the underlying mathematics.

Prerequisites

Before proceeding, ensure you have a solid grasp of basic algebra, including arithmetic operations with real numbers, the distributive property, and simplifying square roots. A fundamental understanding of i as the imaginary unit is also essential.

Understanding Complex Numbers (Rectangular Form)

A complex number z is typically expressed in rectangular form as z = a + bi, where:

  • a is the real part of z.
  • b is the imaginary part of z.
  • i is the imaginary unit, satisfying i^2 = -1.

Operations on Complex Numbers

Addition of Complex Numbers

To add two complex numbers, z1 = a + bi and z2 = c + di, simply add their real parts together and their imaginary parts together.

Formula: z1 + z2 = (a + c) + (b + d)i

Worked Example: Let z1 = 3 + 4i and z2 = 1 - 2i. z1 + z2 = (3 + 1) + (4 + (-2))i z1 + z2 = 4 + (4 - 2)i z1 + z2 = 4 + 2i

Subtraction of Complex Numbers

To subtract one complex number from another, z1 = a + bi and z2 = c + di, subtract their real parts and their imaginary parts separately. Remember to distribute the negative sign to both parts of the second complex number.

Formula: z1 - z2 = (a - c) + (b - d)i

Worked Example: Let z1 = 3 + 4i and z2 = 1 - 2i. z1 - z2 = (3 - 1) + (4 - (-2))i z1 - z2 = 2 + (4 + 2)i z1 - z2 = 2 + 6i

Multiplication of Complex Numbers

Multiplying two complex numbers, z1 = a + bi and z2 = c + di, is similar to multiplying two binomials using the FOIL (First, Outer, Inner, Last) method. The key is to remember that i^2 = -1.

Formula: z1 * z2 = (a + bi)(c + di) = ac + adi + bci + bdi^2 Since i^2 = -1, this simplifies to: z1 * z2 = ac + adi + bci - bd Rearranging to group real and imaginary parts: z1 * z2 = (ac - bd) + (ad + bc)i

Worked Example: Let z1 = 3 + 4i and z2 = 1 - 2i. Using the FOIL method: z1 * z2 = (3 * 1) + (3 * -2i) + (4i * 1) + (4i * -2i) z1 * z2 = 3 - 6i + 4i - 8i^2 Substitute i^2 = -1: z1 * z2 = 3 - 6i + 4i - 8(-1) z1 * z2 = 3 - 6i + 4i + 8 Group real and imaginary parts: z1 * z2 = (3 + 8) + (-6 + 4)i z1 * z2 = 11 - 2i

Division of Complex Numbers

Dividing complex numbers, z1 = a + bi by z2 = c + di, requires a special technique: multiplying both the numerator and the denominator by the conjugate of the denominator. The conjugate of c + di is c - di. This eliminates the imaginary part from the denominator.

Formula: z1 / z2 = (a + bi) / (c + di) Multiply numerator and denominator by (c - di): z1 / z2 = [(a + bi)(c - di)] / [(c + di)(c - di)] Expand the numerator (using multiplication rules): (ac + bd) + (bc - ad)i Expand the denominator (conjugate property: (x+y)(x-y) = x^2 - y^2): c^2 - (di)^2 = c^2 - d^2i^2 = c^2 + d^2 So, the simplified formula is: z1 / z2 = [(ac + bd) + (bc - ad)i] / (c^2 + d^2) This can be written as: z1 / z2 = (ac + bd) / (c^2 + d^2) + (bc - ad) / (c^2 + d^2)i

Worked Example: Let z1 = 3 + 4i and z2 = 1 - 2i. The conjugate of z2 is 1 + 2i. z1 / z2 = (3 + 4i) / (1 - 2i) * (1 + 2i) / (1 + 2i)

Numerator: (3 + 4i)(1 + 2i) = 3(1) + 3(2i) + 4i(1) + 4i(2i) = 3 + 6i + 4i + 8i^2 = 3 + 10i - 8 = -5 + 10i

Denominator: (1 - 2i)(1 + 2i) = 1^2 - (2i)^2 = 1 - 4i^2 = 1 - 4(-1) = 1 + 4 = 5

Result: z1 / z2 = (-5 + 10i) / 5 z1 / z2 = -5/5 + 10i/5 z1 / z2 = -1 + 2i

Modulus of a Complex Number

The modulus (or absolute value) of a complex number z = a + bi, denoted as |z|, represents its distance from the origin in the complex plane. It is calculated using the Pythagorean theorem.

Formula: |z| = |a + bi| = sqrt(a^2 + b^2)

Worked Example: Let z = 3 + 4i. |z| = sqrt(3^2 + 4^2) |z| = sqrt(9 + 16) |z| = sqrt(25) |z| = 5

Common Pitfalls to Avoid

  • Sign Errors in Subtraction: Always distribute the negative sign to both the real and imaginary parts of the subtrahend. (a+bi) - (c+di) = a+bi-c-di.
  • i^2 Miscalculation: Remember i^2 is always -1, not 1. This is critical for multiplication and division.
  • Conjugate Errors: Ensure you correctly identify and multiply by the conjugate of the denominator in division. The conjugate of c + di is c - di.
  • Simplification Errors: Double-check your arithmetic, especially when combining like terms and simplifying fractions.

When to Use a Complex Number Calculator

While manual calculations are vital for understanding, a complex number calculator becomes invaluable for:

  • Speed and Efficiency: Quickly performing operations on multiple numbers or during time-sensitive tasks.
  • Accuracy Checks: Verifying your manual calculations to prevent errors.
  • Complex Expressions: Handling expressions with many terms or nested operations where manual calculation becomes tedious and prone to error.
  • Polar Form Conversion: Many calculators can also display results in polar form, which is useful for certain applications.

准备好计算了吗?

跳过手动工作并立即获得结果。

打开计算器

设置

隐私条款关于© 2026 PrimeCalcPro