Andromeda
Note

Polar Form of Complex Numbers

Definition

The Polar Form of a Complex Number represents z=x+yiz = x + yi in terms of its magnitude rr (modulus) and its direction θ\theta (argument): z=r(cosθ+isinθ)=reiθz = r(\cos \theta + i \sin \theta) = re^{i\theta} where r=z=x2+y2r = |z| = \sqrt{x^2 + y^2} and tanθ=yx\tan \theta = \frac{y}{x}.

  • How to read: “The value z equals r times the sum of the cosine of theta and i times the sine of theta, or r times e to the power of i theta, where r equals the square root of the sum x squared plus y squared, and the tangent of theta equals the ratio of y to x.”
  • Meaning: Converts rectangular (x,y)(x,y) to magnitude-direction form for easier rotation and scaling operations.

Why It Matters

It allows us to calculate repeated rotations and oscillations with extreme efficiency, forming the backbone of modern signal processing.

Core Concepts

  • Multiplication and Division: In polar form, these operations become remarkably simple:
    • z1z2=r1r2[cos(θ1+θ2)+isin(θ1+θ2)]z_1z_2 = r_1r_2 [\cos(\theta_1 + \theta_2) + i \sin(\theta_1 + \theta_2)]
    • How to read: “The product z one times z two equals r one times r two, multiplied by the sum of the cosine of theta one plus theta two, and i times the sine of theta one plus theta two.”
    • Meaning: Multiply moduli, add arguments.
    • z1z2=r1r2[cos(θ1θ2)+isin(θ1θ2)]\frac{z_1}{z_2} = \frac{r_1}{r_2} [\cos(\theta_1 - \theta_2) + i \sin(\theta_1 - \theta_2)]
    • How to read: “The quotient z one divided by z two equals the ratio of r one to r two, multiplied by the sum of the cosine of theta one minus theta two, and i times the sine of theta one minus theta two.”
    • Meaning: Divide moduli, subtract arguments.

Connected Concepts