Unit 5
Parametric, Polar & Complex
Three new coordinate systems, all invented because \(y = f(x)\) is a bad description of a great many things. A circle is not a function. A rotating phasor is not a function. For an electrical engineer this unit is where impedance, Nyquist plots, radiation patterns and the DFT all get their language.
1 · Parametric curves
Instead of relating \(y\) to \(x\) directly, give both as functions of a third variable: \(x = f(t)\), \(y = g(t)\). The parameter \(t\) is very often time, and that is the point — the curve now carries information about when and how fast, not just where.
| Curve | Parametrisation | Range |
|---|---|---|
| Circle, radius \(a\) | \(x = a\cos t,\; y = a\sin t\) | \(0 \le t \le 2\pi\) |
| Ellipse | \(x = a\cos t,\; y = b\sin t\) | \(0 \le t \le 2\pi\) |
| Line through \((x_0,y_0)\) | \(x = x_0 + at,\; y = y_0 + bt\) | all \(t\) |
| Cycloid | \(x = a(t - \sin t),\; y = a(1 - \cos t)\) | rolling circle |
| Any function | \(x = t,\; y = f(t)\) | the trivial case |
Solve one equation for \(t\) and substitute, or use an identity. For the circle, square and add: \(x^2 + y^2 = a^2(\cos^2 + \sin^2) = a^2\). But note what is lost — direction of travel, speed, and how many times the curve is retraced. The Cartesian equation is a shadow of the parametrisation.
Drive an oscilloscope's X input with one sinusoid and its Y input with another: \(x = A\sin(\omega_1 t)\), \(y = B\sin(\omega_2 t + \phi)\). The trace is a parametric curve, and its shape reveals the frequency ratio and the phase difference. Equal frequencies in phase give a diagonal line; equal frequencies 90° apart give a circle; a 2:1 ratio gives a figure eight. Before frequency counters were cheap, this was how you measured a frequency against a reference.
2 · Calculus with parametric equations
If the parametrisation traverses part of the curve twice, the arc-length integral counts it twice. For \(x = \cos t,\; y = \sin t\) with \(0 \le t \le 4\pi\), the answer is \(4\pi\), not \(2\pi\) — you went around twice. Check the range before integrating.
3 · Polar coordinates
Locate a point by distance \(r\) from the origin and angle \(\theta\) from the positive \(x\)-axis.
atan2(y,x).
The point \((1, 0°)\) is also \((1, 360°)\) and \((-1, 180°)\). A negative \(r\) means "go backwards through the origin." This non-uniqueness is why finding where two polar curves intersect is genuinely tricky — solving the equations simultaneously can miss intersections that occur at different \((r,\theta)\) labels for the same point. Always sketch.
Antenna radiation patterns are polar plots of gain versus angle — a dipole's figure-eight is literally \(r = |\cos\theta|\). Nyquist plots trace a transfer function in the complex plane as frequency sweeps. Microphone polar patterns (cardioid, hypercardioid, figure-eight) are named after the curves you are drawing here. When you meet one later, you will already know how to compute the area of a lobe.
4 · Polar area and arc length
For the area between two polar curves, integrate \(\tfrac12\big(r_{\text{outer}}^2 - r_{\text{inner}}^2\big)\) — the same "difference of squares, not square of difference" rule as washers in Unit 2.
The hardest part of a polar area problem is almost never the integral — it is \(\theta_{\text{start}}\) and \(\theta_{\text{end}}\). For one petal of a rose, find where \(r = 0\) on either side of the petal. For a closed curve traced once, do not integrate over \(0\) to \(2\pi\) if the curve already closed at \(\pi\); you will double the answer.
5 · Complex numbers
Three equivalent notations for the same object. Fluency means switching without thinking.
| Form | Written | Best for |
|---|---|---|
| Rectangular | \(z = a + bi\) | Adding and subtracting |
| Polar / trig | \(z = r(\cos\theta + i\sin\theta)\) | Seeing the geometry |
| Exponential | \(z = re^{i\theta}\) | Multiplying, dividing, powers, roots |
Arithmetic
| Operation | Rectangular | Exponential |
|---|---|---|
| Add | \((a+c) + (b+d)i\) | — (no nice form) |
| Multiply | \((ac-bd) + (ad+bc)i\) | \(r_1 r_2 e^{i(\theta_1+\theta_2)}\) — moduli multiply, angles add |
| Divide | Multiply top and bottom by the conjugate | \(\dfrac{r_1}{r_2}e^{i(\theta_1-\theta_2)}\) |
| Power | Painful | \(r^{n}e^{in\theta}\) — trivial |
6 · De Moivre and roots of unity
Running it backwards gives roots. Every nonzero complex number has exactly \(n\) distinct \(n\)th roots, evenly spaced around a circle:
The Discrete Fourier Transform is built entirely from \(W_N = e^{-2\pi i/N}\), a primitive \(N\)th root of unity. Its powers are the "twiddle factors" in an FFT, and the algorithm's speed comes from the symmetry visible in the picture above: \(W^{k+N/2} = -W^{k}\), so half the multiplications are the same numbers with a sign flip. Three-phase power is the \(n = 3\) case of the same diagram.
7 · Phasors and impedance
Here is the payoff. A sinusoidal steady-state signal \(v(t) = V_m\cos(\omega t + \phi)\) carries three numbers, but in a linear circuit at one frequency \(\omega\) is shared by everything. Discard it and keep the rest as a single complex number:
Because \(\frac{d}{dt}e^{j\omega t} = j\omega\,e^{j\omega t}\), differentiation becomes multiplication by \(j\omega\). Every differential equation in a linear circuit collapses to algebra:
| Element | Time domain | Impedance \(Z\) | \(|Z|\) | Phase |
|---|---|---|---|---|
| Resistor | \(v = Ri\) | \(R\) | \(R\) | \(0°\) |
| Inductor | \(v = L\,di/dt\) | \(j\omega L\) | \(\omega L\) | \(+90°\) |
| Capacitor | \(i = C\,dv/dt\) | \(\dfrac{1}{j\omega C} = -\dfrac{j}{\omega C}\) | \(\dfrac{1}{\omega C}\) | \(-90°\) |
The phase column is the physical content: inductor voltage leads current by 90°, capacitor voltage lags by 90°. Multiplying by \(j\) is a \(+90°\) rotation in the complex plane — the geometry and the physics are the same statement.
8 · Worked examples
1. Tangent line to a parametric curve
For \(x = t^2 - 2t\), \(y = t^3 - 3t\), find \(dy/dx\) at \(t = 2\), and locate any vertical tangents.
At \(t = 2\): \(dy/dx = 9/2\).
Vertical tangents need \(dx/dt = 0\) with \(dy/dt \neq 0\). Here \(dx/dt = 0\) only at \(t = 1\) — but \(dy/dt = 0\) there too, so it is a \(0/0\) case, not a vertical tangent. The cancellation above shows the slope actually approaches \(3\).
That point matters: both derivatives vanishing signals a possible cusp or a smooth point in disguise, and only the limit distinguishes them. Never declare a vertical tangent from \(dx/dt = 0\) alone.
2. Parametric arc length
Find the length of \(x = t^2\), \(y = \tfrac23 t^3\) for \(0 \le t \le 2\).
Substitute \(u = 1+t^2\), \(du = 2t\,dt\):
3. Area of one petal of a rose
Find the area enclosed by one petal of \(r = \cos 3\theta\).
Limits first. The petal starts and ends where \(r = 0\): \(\cos 3\theta = 0\) at \(3\theta = \pm\pi/2\), so \(\theta = \pm\pi/6\).
At \(\theta = \pi/6\), \(\sin 6\theta = \sin\pi = 0\); likewise at the lower limit, so only the \(\theta\) terms survive.
Sanity check: the petal fits inside a quarter-circle of radius 1 (area \(\pi/4 \approx 0.785\)) and is clearly much thinner. ✓ All three petals together give \(\pi/4\).
4. Complex arithmetic in both forms
Let \(z_1 = 3+4i\) and \(z_2 = 1-i\). Find \(z_1 z_2\) and \(z_1/z_2\).
Product, rectangular:
Quotient — multiply top and bottom by the conjugate of the denominator:
Check with the exponential form. \(|z_1| = 5\), \(\arg = \arctan(4/3) = 53.13°\). \(|z_2| = \sqrt2\), \(\arg = -45°\).
- Product: modulus \(5\sqrt2 \approx 7.07\), argument \(8.13°\). And \(|7+i| = \sqrt{50} \approx 7.07\), \(\arg = \arctan(1/7) = 8.13°\) ✓
- Quotient: modulus \(5/\sqrt2 \approx 3.54\), argument \(98.13°\). And \(|-0.5+3.5i| = \sqrt{12.5} \approx 3.54\) ✓
Note the quotient lands in quadrant II, and its argument is \(98.13°\) — not the \(-81.87°\) a naive \(\arctan(3.5/-0.5)\) would return. Always check the quadrant.
5. De Moivre and roots
Compute \((1+i)^8\), then find all cube roots of \(8i\).
Power. Convert first: \(|1+i| = \sqrt2\), \(\arg = \pi/4\).
Expanding by the binomial theorem would take nine terms for the same answer. This is what "multiply in exponential form" buys you.
Cube roots of \(8i\). Write \(8i = 8e^{i\pi/2}\). Modulus of each root is \(8^{1/3} = 2\):
| \(k\) | Angle | Rectangular |
|---|---|---|
| 0 | 30° | \(\sqrt3 + i\) |
| 1 | 150° | \(-\sqrt3 + i\) |
| 2 | 270° | \(-2i\) |
Check \(k=2\): \((-2i)^3 = -8i^3 = -8(-i) = 8i\) ✓
The three roots are 120° apart on a circle of radius 2 — a perfect equilateral triangle, which the general formula guarantees.
6. EE — series RLC impedance
A series circuit has \(R = 50\,\Omega\), \(L = 10\) mH, \(C = 1\) µF, driven at \(f = 1000\) Hz. Find the total impedance in rectangular and polar form, and say whether the circuit is inductive or capacitive.
Angular frequency: \(\omega = 2\pi(1000) = 6283\) rad/s.
Series means add — and addition is why we keep rectangular form:
The reactance is negative, so the circuit is capacitive at this frequency: current leads voltage by 62.6°. We are below resonance.
Where is resonance? Where the two reactances cancel:
We are driving below that, so the capacitor dominates — consistent with the negative angle we computed. Two independent routes to the same conclusion.
Checklist
- I compute \(d^2y/dx^2\) by differentiating \(dy/dx\) with respect to \(t\), then dividing by \(dx/dt\).
- I check the parameter range so arc length does not double-count.
- I never forget the \(\tfrac12\) in the polar area formula.
- I find polar limits by locating where \(r = 0\) or where curves meet, and I sketch first.
- I add in rectangular form and multiply in exponential form.
- I check the quadrant before trusting an arctangent.
- I can find all \(n\) roots of a complex number and know they are evenly spaced.
- I know \(Z_L = j\omega L\) and \(Z_C = 1/(j\omega C)\), and what the sign of the reactance means.