Skip to content

Real, Imaginary, and Complex Numbers

Real numbers are all the numbers you can find on a number line, while imaginary numbers are derived from the square roots of negative numbers.


Real Numbers (\mathbb{R})

Real numbers are any values that can be plotted on a number line. They include two main categories:

  • Rational Numbers: Any number that can be expressed as a fraction \frac{a}{b} where b \neq 0. This includes:
    • Integers: …, -3, -2, -1, 0, 1, 2, 3, …
    • Fractions: \frac{1}{2}, \frac{8}{3}
    • Terminating and Repeating Decimals: 0.75 (which is \frac{3}{4}) and 0.333… (which is \frac{1}{3}).
  • Irrational Numbers: Numbers that cannot be expressed as a simple fraction. Their decimal forms go on forever without a repeating pattern.
    • Examples: Pi (\pi \approx 3.14159...), the square root of 2 (\sqrt{2}), and Euler’s number (e).

Imaginary Numbers

Imaginary numbers were created to solve equations that have no real-number solution. They are based on the imaginary unit, denoted by the symbol i.

i = \sqrt{-1}

This is considered “imaginary” because you can’t take the square root of a negative number in the real number system. By definition, i^2 = -1. An imaginary number is simply a real number multiplied by i.

  • Examples:
    • \sqrt{-9} = \sqrt{9 \times -1} = \sqrt{9} \times \sqrt{-1} = 3i
    • \sqrt{-25} = 5i
    • 2.5i
    • -\frac{4}{7}i

Imaginary numbers are essential in many fields, including electrical engineering, physics, and signal processing. 💡


Complex Numbers (\mathbb{C})

When you combine a real number and an imaginary number, you get a complex number. They are written in the form a + bi, where:

  • a is the real part.
  • bi is the imaginary part.

Examples:

  • 3 + 2i
  • 5 - 7i
  • -1.5 + 10i

Essentially, all real numbers and all imaginary numbers are types of complex numbers. For example, the real number 7 can be written as 7 + 0i, and the imaginary number 4i can be written as 0 + 4i.

arithmetic operations on complex numbers

You can perform standard arithmetic operations on complex numbers by treating the imaginary unit i like a variable, with the key rule that i^2 = -1.


Addition and Subtraction

To add or subtract complex numbers, you combine the real parts and the imaginary parts separately.

General Form:

  • Addition: (a + bi) + (c + di) = (a + c) + (b + d)i
  • Subtraction: (a + bi) - (c + di) = (a - c) + (b - d)i

Examples:

  • (3 + 2i) + (5 + 4i) = (3+5) + (2+4)i = 8 + 6i
  • (-8 + 7i) + (2 - 5i) = (-8+2) + (7-5)i = -6 + 2i
  • (7 - 6i) - (1 + 3i) = (7-1) + (-6-3)i = 6 - 9i
  • (4 + 2i) - (-3 + 9i) = (4 - (-3)) + (2-9)i = 7 - 7i

Multiplication

To multiply complex numbers, use the FOIL (First, Outer, Inner, Last) method, then substitute i^2 = -1 and simplify.

Example 1: (2 + 3i)(4 - 5i)

  1. FOIL: (2)(4) + (2)(-5i) + (3i)(4) + (3i)(-5i) = 8 - 10i + 12i - 15i^2
  2. Combine & Substitute: 8 + 2i - 15(-1) = 8 + 2i + 15
  3. Final Answer: 23 + 2i

Example 2: (-3 + i)(6 - 2i)

  1. FOIL: (-3)(6) + (-3)(-2i) + (i)(6) + (i)(-2i) = -18 + 6i + 6i - 2i^2
  2. Combine & Substitute: -18 + 12i - 2(-1) = -18 + 12i + 2
  3. Final Answer: -16 + 12i

Division

To divide complex numbers, multiply the numerator and the denominator by the complex conjugate of the denominator. The conjugate of (c + di) is (c - di). This removes i from the denominator.

Example 1: \frac{3 + 2i}{1 - 4i}

  1. Multiply by the conjugate (1 + 4i): \frac{3 + 2i}{1 - 4i} \times \frac{1 + 4i}{1 + 4i}
  2. Numerator: (3 + 2i)(1 + 4i) = 3 + 12i + 2i + 8i^2 = 3 + 14i - 8 = -5 + 14i
  3. Denominator: (1 - 4i)(1 + 4i) = 1^2 - (4i)^2 = 1 - 16i^2 = 1 - 16(-1) = 17
  4. Final Answer: \frac{-5 + 14i}{17} = -\frac{5}{17} + \frac{14}{17}i

Example 2: \frac{5 - 2i}{3 + 4i}

  1. Multiply by the conjugate (3 - 4i): \frac{5 - 2i}{3 + 4i} \times \frac{3 - 4i}{3 - 4i}
  2. Numerator: (5 - 2i)(3 - 4i) = 15 - 20i - 6i + 8i^2 = 15 - 26i - 8 = 7 - 26i
  3. Denominator: (3 + 4i)(3 - 4i) = 3^2 - (4i)^2 = 9 - 16i^2 = 9 - 16(-1) = 25
  4. Final Answer: \frac{7 - 26i}{25} = \frac{7}{25} - \frac{26}{25}i

Leave a Reply

error: Content is protected !!