1
Using \(\arctan(b/a)\) for the argument without checking the quadrant
Wrong
For \(z = -1 + i\): \(\theta = \arctan(1/(-1)) = -\pi/4\)
Correct
\(z=-1+i\) is in the
second quadrant, so \(\theta = \pi - \pi/4 = 3\pi/4\)
Tip: \(\arctan\) only returns angles in \((-\pi/2, \pi/2)\), so it can never land in quadrant II or III. Sketch the point first, or use atan2(b, a).
2
Forgetting that \(i^2 = -1\) changes the sign when multiplying
Wrong
\((2+3i)(1+4i) = 2 + 8i + 3i + 12i^2 = 2 + 11i + 12i^2\), then leaving \(12i^2\) as is
Correct
\(12i^2 = -12\), so the result is \((2-12) + 11i = -10 + 11i\)
Tip: After every multiplication, scan for \(i^2\) and replace it with \(-1\) before collecting terms.
3
Dividing without multiplying by the conjugate
Wrong
\(\dfrac{3+i}{2-i}\) — splitting into \(\dfrac{3}{2} + \dfrac{i}{-i}\)
Correct
Multiply top and bottom by \(2+i\): \(\dfrac{(3+i)(2+i)}{(2-i)(2+i)} = \dfrac{5+5i}{5} = 1+i\)
Tip: A complex number is not in standard form until the denominator is real. The conjugate is the only reliable way to get there.
4
Reporting only one nth root
Wrong
“The cube root of \(8i\) is \(2e^{i\pi/6}\).”
Correct
There are
three: \(2e^{i\pi/6},\; 2e^{i5\pi/6},\; 2e^{i3\pi/2}\)
Tip: An nth root always has exactly \(n\) answers, equally spaced by \(2\pi/n\) on a circle. Let \(k = 0, 1, \ldots, n-1\).
5
Leaving the DE solution in complex exponential form
Wrong
Roots \(-2 \pm 3i\), so \(y = c_1e^{(-2+3i)t} + c_2e^{(-2-3i)t}\) — and stopping there
Correct
Convert to the real form \(y = e^{-2t}(c_1\cos 3t + c_2\sin 3t)\)
Tip: Physical problems need real-valued answers. Use Euler's formula to convert; the real part becomes the decay envelope and the imaginary part becomes the frequency.
6
Swapping the roles of \(\alpha\) and \(\beta\) in \(\alpha \pm \beta i\)
Wrong
Roots \(-1 \pm 4i\) giving \(y = e^{4t}(c_1\cos t + c_2\sin t)\)
Correct
\(y = e^{-t}(c_1\cos 4t + c_2\sin 4t)\) — real part in the exponential, imaginary part in the trig
Tip: Remember the physics: the real part controls how fast it dies away, the imaginary part controls how fast it wiggles.