Fundamental Algebraic Operations on Complex Numbers

Fundamental Algebraic Operations on Complex Numbers

Understanding Complex Numbers and Their Equality

Defining Complex Numbers and Their Components

A complex number is formed by combining a real number and an imaginary number, expressed as \( z = a + ib \), where \( a \) represents the real part and \( b \) the coefficient of the imaginary unit \( i \), with \( i^2 = -1 \). While real numbers are commonly used in calculations, imaginary numbers extend the number system to solve equations that have no real solutions.

Equality between two complex numbers \( z_1 = a_1 + ib_1 \) and \( z_2 = a_2 + ib_2 \) holds true only if their corresponding real parts and imaginary parts are equal, that is:

\[ z_1 = z_2 \implies a_1 = a_2 \quad \text{and} \quad b_1 = b_2 \]

This principle ensures that complex numbers are equal if and only if both their components match exactly.

Example: Determining Unknowns from Complex Number Equality

Problem: Given \( z_1 = a + 3i \), \( z_2 = 4 + bi \), and \( z_3 = 6 + 10i \), find the values of \( a \) and \( b \) if \( z_3 = z_1 + z_2 \).

Solution:

Using the addition rule for complex numbers, the real parts add and the imaginary parts add separately:

\[ \text{Re}(z_3) = \text{Re}(z_1) + \text{Re}(z_2) \implies 6 = a + 4 \implies a = 2 \]

\[ \text{Im}(z_3) = \text{Im}(z_1) + \text{Im}(z_2) \implies 10 = 3 + b \implies b = 7 \]

Therefore, \( a = 2 \) and \( b = 7 \).

Performing Addition and Subtraction on Complex Numbers

Rules and Properties of Adding Complex Numbers

Adding two complex numbers involves summing their real parts and their imaginary parts independently. For two complex numbers \( z_1 = a_1 + ib_1 \) and \( z_2 = a_2 + ib_2 \), their sum is:

\[ z_1 + z_2 = (a_1 + a_2) + i(b_1 + b_2) \]

This operation follows the commutative and associative laws, meaning the order and grouping of addition do not affect the result.

Similarly, subtraction is performed by subtracting the real and imaginary parts respectively:

\[ z_1 - z_2 = (a_1 - a_2) + i(b_1 - b_2) \]

Example: Calculating Difference of Complex Numbers

Problem: If \( z_1 = 4 + ai \), \( z_2 = 2 + 4i \), and \( z_3 = 2 \), find \( a \) such that \( z_3 = z_1 - z_2 \).

Solution:

From the subtraction formula:

\[ \text{Im}(z_3) = \text{Im}(z_1) - \text{Im}(z_2) \implies 0 = a - 4 \implies a = 4 \]

Thus, the value of \( a \) is 4.

Multiplying and Dividing Complex Numbers

Multiplication of Complex Numbers and Its Characteristics

Multiplying two complex numbers \( z_1 = a_1 + ib_1 \) and \( z_2 = a_2 + ib_2 \) involves expanding the product as follows:

\[ z_1 z_2 = (a_1 + ib_1)(a_2 + ib_2) = a_1 a_2 + a_1 b_2 i + b_1 a_2 i + b_1 b_2 i^2 \]

Since \( i^2 = -1 \), this simplifies to:

\[ z_1 z_2 = (a_1 a_2 - b_1 b_2) + i(a_1 b_2 + a_2 b_1) \]

Example: Multiplying Two Complex Numbers

Problem: Find the product of \( z_1 = 6 - 2i \) and \( z_2 = 4 + 3i \).

Solution:

Calculate stepwise:

\[ z_1 z_2 = (6)(4) + (6)(3i) + (-2i)(4) + (-2i)(3i) = 24 + 18i - 8i - 6i^2 \]

Since \( i^2 = -1 \),

\[ z_1 z_2 = 24 + 10i + 6 = 30 + 10i \]

Therefore, the product is \( 30 + 10i \).

Understanding the Multiplicative Inverse of a Complex Number

For any non-zero complex number \( z = a + ib \), its multiplicative inverse \( z^{-1} \) satisfies:

\[ z \times z^{-1} = 1 \]

The inverse is given by:

\[ z^{-1} = \frac{a}{a^2 + b^2} - i \frac{b}{a^2 + b^2} \]

This formula uses the conjugate of \( z \) in the numerator and the sum of squares of the real and imaginary parts in the denominator.

Example: Finding the Inverse of a Complex Number

Problem: Determine the multiplicative inverse of \( z = 3 + 4i \).

Solution:

Calculate the denominator:

\[ a^2 + b^2 = 3^2 + 4^2 = 9 + 16 = 25 \]

Using the formula:

\[ z^{-1} = \frac{3}{25} - i \frac{4}{25} \]

Hence, the inverse is \( \frac{3}{25} - \frac{4i}{25} \).

Dividing Complex Numbers Using Conjugates

Division of two complex numbers \( z_1 = a_1 + ib_1 \) and \( z_2 = a_2 + ib_2 \) is performed by multiplying numerator and denominator by the conjugate of the denominator:

\[ \frac{z_1}{z_2} = \frac{a_1 + ib_1}{a_2 + ib_2} = \frac{(a_1 + ib_1)(a_2 - ib_2)}{(a_2 + ib_2)(a_2 - ib_2)} \]

Simplifying the denominator:

\[ (a_2)^2 + (b_2)^2 \]

The division result is:

\[ \frac{z_1}{z_2} = \frac{a_1 a_2 + b_1 b_2}{a_2^2 + b_2^2} + i \frac{a_2 b_1 - a_1 b_2}{a_2^2 + b_2^2} \]

Example: Dividing Two Complex Numbers

Problem: Calculate \( \frac{2 + 3i}{1 + i} \).

Solution:

First, find the inverse of the denominator:

\[ \frac{1}{1 + i} = \frac{1 - i}{1^2 + 1^2} = \frac{1 - i}{2} \]

Multiply numerator by this inverse:

\[ \frac{2 + 3i}{1 + i} = (2 + 3i) \times \frac{1 - i}{2} = \frac{(2 + 3i)(1 - i)}{2} \]

Expand numerator:

\[ (2)(1) - (2)(i) + (3i)(1) - (3i)(i) = 2 - 2i + 3i - 3i^2 \]

Since \( i^2 = -1 \),

\[ 2 - 2i + 3i + 3 = 5 + i \]

Therefore,

\[ \frac{5 + i}{2} \]

is the quotient.

Summary of Algebraic Operations on Complex Numbers

Operation

Formula

Addition

\( z_1 + z_2 = (a_1 + a_2) + i(b_1 + b_2) \)

Subtraction

\( z_1 - z_2 = (a_1 - a_2) + i(b_1 - b_2) \)

Multiplication

\( z_1 z_2 = (a_1 a_2 - b_1 b_2) + i(a_1 b_2 + a_2 b_1) \)

Division

\( \frac{z_1}{z_2} = \frac{a_1 a_2 + b_1 b_2}{a_2^2 + b_2^2} + i \frac{a_2 b_1 - a_1 b_2}{a_2^2 + b_2^2} \)

Practice Problems to Reinforce Concepts

Try Solving These

  1. Simplify the expression: \( -3 + 6i - (-5 - 3i) - 8i \).

  2. Calculate the product: \( 4i \times (-2 - 8i) \).

  3. Find the result of multiplying: \( (-2 - i)(4 + i) \).

  4. Evaluate the product: \( (-2 - 2i)(-4 - 3i)(7 + 8i) \).

  5. Simplify: \( -3i \times 6i - 3(-7 + 6i) \).

  6. Compute \( (6i)^3 \).

Glossary of Key Terms

Term

Definition

Complex Number

A number expressed as \( a + ib \), combining real and imaginary parts.

Real Part

The component \( a \) in a complex number \( a + ib \).

Imaginary Part

The component \( b \) multiplied by \( i \) in \( a + ib \).

Imaginary Unit

Symbol \( i \) where \( i^2 = -1 \).

Conjugate

For \( z = a + ib \), the conjugate is \( \bar{z} = a - ib \).

Multiplicative Inverse

The number which when multiplied by \( z \) gives 1, denoted \( z^{-1} \).

Addition

Operation combining two complex numbers by adding their parts.

Subtraction

Operation finding the difference between two complex numbers.

Multiplication

Operation combining two complex numbers using distributive property and \( i^2 = -1 \).

Division

Operation dividing one complex number by another using conjugates.

Frequently Asked Questions

What defines a complex number?

A complex number consists of a real part and an imaginary part, expressed as \( a + ib \).

How is addition of complex numbers performed?

Add the real parts together and the imaginary parts together separately.

What is the method to subtract complex numbers?

Subtract the real parts and the imaginary parts independently.

Which operations are considered basic algebraic operations on complex numbers?

Addition, subtraction, multiplication, and division are the fundamental operations.

How do you multiply two complex numbers?

Multiply using distributive property and simplify using \( i^2 = -1 \), resulting in \( (a_1 a_2 - b_1 b_2) + i(a_1 b_2 + a_2 b_1) \).