Graduate

GraduateComplex Analysis


Complex Numbers


Complex numbers are an extension of the idea of axis and dimension to the field of real numbers. In simple terms, they extend what can be expressed by numbers beyond the traditional real number line. Complex numbers are integral not only in mathematics but in a wide variety of fields including engineering, physics, and computer science.

Introduction to complex numbers

On the real number line, each number can be viewed as a point. Complex numbers introduce an additional dimension, known as the complex plane. Formally, a complex number is expressed as:

z = a + bi

Here, a and b are real numbers, and i is the imaginary unit, which satisfies the following equation:

i² = -1

Complex plane

The complex plane is a two-dimensional space where each point represents a complex number. The horizontal axis (real axis) corresponds to the real part of the complex number, Re(z) = a. The vertical axis (imaginary axis) corresponds to the imaginary part, Im(z) = b.

Im ↑ | b | ● (a, b) = a + bi | +----→ Re a

Types of forms: rectangular and polar

Rectangular form

The form z = a + bi is known as the rectangular form. It is straightforward and is often used in basic calculations.

Polar form

The polar form represents complex numbers using the magnitude r (also called the modulus) and the angle θ (the argument or phase). The relation is given as:

z = r(cosθ + i·sinθ)

The magnitude r is calculated as:

r = √(a² + b²)

The angle θ, which is the angle with the real axis, is calculated as:

θ = atan2(b, a)

Conversion between forms

To switch between rectangular and polar forms, use:

  • a = r cosθ
  • b = r sinθ

Visualization of operations on complex numbers

Add

Adding complex numbers involves adding their corresponding parts. If z₁ = a + bi and z₂ = c + di, then their sum is:

z₁ + z₂ = (a + c) + (b + d)i

Visually, this can be represented as a vector sum in the complex plane.

Im ↑ | b | ● (a, b) | | ↗ b+d + / | / | / d | / +---● (c, d) +---→ Re

Multiplication

When two complex numbers are multiplied, their moduli are combined and their angles are added:

z₁z₂ = r₁r₂ [cos(θ₁ + θ₂) + i·sin(θ₁ + θ₂)]

Again, if z₁ = a + bi and z₂ = c + di, then the product is:

z₁z₂ = (ac - bd) + (ad + bc)i

Complex conjugates

The complex conjugate of a complex number is a number whose real part is equal to a and the imaginary part has the opposite sign. The conjugate of z = a + bi is:

z* = a - bi

Division of complex numbers

To divide two complex numbers, multiply the numerator and denominator by the complex conjugate of the denominator:

z₁ / z₂ = (z₁z₂*) / (z₂z₂*)

Euler's formula

The key to understanding complex numbers is Euler's formula:

e^(iθ) = cosθ + i·sinθ

Combining this with the polar form gives the exponential form of a complex number:

z = re^(iθ)

Applications of complex numbers

There are various important applications of complex numbers:

  • Engineering: Electrical circuits use complex impedances.
  • Physics: Quantum mechanics and relativity often involve complex numbers.
  • Signal processing: Fourier transforms use complex numbers for frequency analysis.

Conclusion

Complex numbers extend the potential of ordinary arithmetic, offering solutions to equations that have no real solutions. They represent a vital foundation for advanced areas of mathematics and science. Understanding the basics of complex numbers - how to manipulate them and how to look at them - is crucial for delving deeper into topics such as complex analysis, differential equations, and beyond.


Graduate → 7.1


U
username
0%
completed in Graduate


Comments