3.5.8Complex Numbers

Algebraic operations — add, subtract, multiply, divide (rectangular and polar)

1,434 words7 min readdifficulty · medium

WHAT is a complex number (two languages, one object)

HOW to convert both ways: a=rcosθ,b=rsinθ,r=a2+b2,θ=atan2(b,a).a=r\cos\theta,\qquad b=r\sin\theta,\qquad r=\sqrt{a^2+b^2},\qquad \theta=\operatorname{atan2}(b,a).


Addition & Subtraction — WHY rectangular wins


Multiplication — WHY polar wins (moduli multiply, angles add)


Division — WHY the conjugate trick works


Recall Feynman: explain to a 12-year-old

Think of each complex number as an arrow on graph paper. To add two arrows you just stack them tip-to-tail — how far right and how far up simply pile up, so add the sideways numbers and add the up numbers. To multiply, it's a different game: you stretch the arrow and spin it. The length of the answer is the two lengths multiplied, and the direction is the two angles added together. Dividing undoes that: divide the lengths and subtract the angles. That's the whole story — adding is "line them up," multiplying is "stretch and spin."


Flashcards

Rectangular form of a complex number
z=a+biz=a+bi with a=Rea=\operatorname{Re}, b=Imb=\operatorname{Im}, i2=1i^2=-1.
Polar form of a complex number
z=r(cosθ+isinθ)=reiθz=r(\cos\theta+i\sin\theta)=re^{i\theta}, r=zr=|z|, θ=argz\theta=\arg z.
Formula for modulus rr from a,ba,b
r=a2+b2r=\sqrt{a^2+b^2}.
Why can't you use plain arctan(b/a)\arctan(b/a) for the argument?
It ignores the quadrant; use signs of a,ba,b (or atan2) and add ±180\pm180^\circ when a<0a<0.
Which form is best for addition and why?
Rectangular — you just add real and imaginary parts independently (like vectors).
Rectangular multiplication result of (a+bi)(c+di)(a+bi)(c+di)
(acbd)+(ad+bc)i(ac-bd)+(ad+bc)i.
Why does acbdac-bd appear in multiplication?
Because bdi2=bdbdi^2=-bd moves into the real part.
Polar rule for multiplication
Multiply moduli, add arguments: r1r2cis(α+β)r_1r_2\,\text{cis}(\alpha+\beta).
Which trig identities make polar multiplication work?
Angle-sum identities for cos(α+β)\cos(\alpha+\beta) and sin(α+β)\sin(\alpha+\beta).
How do you divide two complex numbers in rectangular form?
Multiply numerator and denominator by the conjugate of the denominator.
Result of (c+di)(cdi)(c+di)(c-di)
c2+d2=z2c^2+d^2=|z|^2, a real number.
Polar rule for division
Divide moduli, subtract arguments: r1r2cis(αβ)\frac{r_1}{r_2}\,\text{cis}(\alpha-\beta).
Geometric meaning of multiplying two complex numbers
Scale (stretch) length and rotate (spin) angle.

Connections

  • Complex plane (Argand diagram) — the arrows these operations act on.
  • Modulus and Argument — the r,θr,\theta used in polar operations.
  • Complex conjugate — the key to division.
  • Euler's formulaeiθ=cosθ+isinθe^{i\theta}=\cos\theta+i\sin\theta, why polar multiplication is trivial.
  • De Moivre's Theorem — repeated multiplication: (cisθ)n=cis(nθ)(\text{cis}\,\theta)^n=\text{cis}(n\theta).
  • Vectors in 2D — addition is identical to vector addition.

Concept Map

named by shadows

named by length and angle

r=sqrt of a2+b2

angle from signs

needs

avoids arctan trap

best for

add like components

best for

multiply moduli add angles

Complex number as 2D arrow

Rectangular z=a+bi

Polar r cis theta

Modulus r

Argument theta

atan2 quadrant check

Add and Subtract

Multiply and Divide

Hinglish (regional understanding)

Intuition Hinglish mein samjho

Dekho, ek complex number ko ek arrow (teer) samjho jo graph paper pe bana hai. Rectangular form a+bia+bi arrow ko batati hai "kitna right, kitna upar". Polar form rcisθr\,\text{cis}\,\theta wahi arrow ko batati hai "kitni lambi, kis angle pe". Dono same cheez hain, bas do alag bhaasha.

Ab funda simple hai: jodna-ghatana (add/subtract) rectangular mein karo — real part real ke saath, imaginary part imaginary ke saath, bilkul vectors ki tarah tip-to-tail. Ismein polar use mat karo, kyun ki na moduli add hote hain na angles — woh galat answer dega.

Guna-bhaag (multiply/divide) polar mein maza deta hai. Multiply karte waqt lengths (moduli) multiply ho jaati hain aur angles add ho jaate hain — matlab arrow ko stretch karo aur ghumao. Divide mein ulta: lengths divide, angles subtract. Rectangular mein multiply karna ho to FOIL karke i2=1i^2=-1 lagao; divide karna ho to numerator aur denominator dono ko denominator ke conjugate se multiply karo taaki neeche real number bane.

Yaad rakhne ka mantra: "Add in the box, multiply on the clock." Box matlab rectangular, clock matlab polar (angle ki suiyaan ghumti hain). Bas quadrant ka dhyaan rakhna jab argument nikaalo — sirf arctan\arctan pe bharosa mat karna, signs dekh ke 180180^\circ add karo agar zaroorat ho.

Go deeper — visual, from zero

Test yourself — Complex Numbers

Connections