The quantities and operations covered in the sections above collect into a single reference card. Each row gives a quantity or operation and its formula in trigonometric form — useful as a study summary and as a quick lookup when computing modulus, argument, conversions, products, or quotients.
| Quantity / operation |
Formula |
| Modulus r = |z| |
r = √(a² + b²) |
| Argument θ |
tan θ = b ⁄ a, with quadrant adjustment (or atan2(b, a)) |
| Trigonometric form |
z = r(cos θ + i sin θ) = r cis θ |
| Algebraic → trigonometric |
r = √(a² + b²); θ from quadrant of (a, b) |
| Trigonometric → algebraic |
a = r cos θ, b = r sin θ |
| Multiplication z1 · z2 |
r1r2 cis(θ1 + θ2) — multiply moduli, add arguments |
| Division z1 ⁄ z2 |
(r1 ⁄ r2) cis(θ1 − θ2) — divide moduli, subtract arguments |
| Exponential equivalent |
r cis θ = reiθ (Euler's formula) |