Complex Numbers is the habit of using real and imaginary parts, modulus, argument, and roots to encode algebraic structure. In contest math, that habit turns a crowded setup into a relation the student can test, bound, count, or compute. MathGrit teaches it as a recognizable signal, a deliberate move, and a final translation back to the original question.
$$z = a + bi,\quad i^2 = -1,\qquad |z| = \sqrt{a^2 + b^2},\qquad z = r\big(\cos\theta + i\sin\theta\big) = re^{i\theta}.$$
A complex number combines a real and an imaginary part; in polar form its multiplication becomes scaling lengths and adding angles, which encodes rotation algebraically.
Why It Works
1
Define $i$ by $i^2 = -1$; then $z = a + bi$ is a point $(a, b)$ in the plane with modulus $|z| = \sqrt{a^2 + b^2}$ and argument $\theta = \operatorname{atan2}(b, a)$.
2
Write $z = r(\cos\theta + i\sin\theta)$ with $r = |z|$; Euler's formula gives the compact $z = re^{i\theta}$.
Compute $(1 + i)^{10}$ and use it to find the real part.
1
In polar form $1 + i = \sqrt 2\,e^{i\pi/4}$, so $(1 + i)^{10} = (\sqrt 2)^{10}\,e^{i\,10\pi/4} = 2^5\,e^{i\,5\pi/2}$.
2
Reduce the angle modulo $2\pi$: $\dfrac{5\pi}{2} = 2\pi + \dfrac{\pi}{2}$, so $e^{i\,5\pi/2} = e^{i\pi/2} = i$.
3
Therefore $(1 + i)^{10} = 32i$, whose real part is $0$ and imaginary part is $32$.
Answer:
$(1 + i)^{10} = 32i$; real part $0$.
Going Deeper
Generalization: identifying $\mathbb{C}$ with the plane turns multiplication by $re^{i\theta}$ into 'scale by $r$, rotate by $\theta$'; this is why complex numbers solve plane-geometry rotation problems and why every degree-$n$ polynomial has exactly $n$ roots (Fundamental Theorem of Algebra).
Where it appears: AMC/AIME problems on powers of $1 \pm i$, sums like $\sum i^k$, rotating a point about another in the plane (multiply the difference by $e^{i\theta}$), and as the engine behind De Moivre's derivations of multiple-angle trig identities.
Pitfall: $\arg$ is only determined up to multiples of $2\pi$, and $\sqrt{\;}$ / $\theta = \arctan\frac{b}{a}$ pick the WRONG branch when the point is not in the first quadrant — always check which quadrant $(a, b)$ lies in (use $\operatorname{atan2}$) before assigning the argument, or De Moivre will rotate you to the wrong answer.
Spot the Signal
Look for problems where the key step is using real and imaginary parts, modulus, argument, and roots to encode algebraic structure.
You can describe the hard part as using real and imaginary parts, modulus, argument, and roots to encode algebraic structure, but a direct attack starts producing clutter.
The problem rewards preserving structure instead of expanding, listing, or guessing too early.
Learn the Move
Start by identify the expression or equation that calls for complex numbers, then rewrite the givens around it.
Name the relation that makes Complex Numbers legal before doing computation.
Use the new relation to replace the messiest part of the problem with a cleaner one.
Translate the result back to the quantity the problem actually asks for.
Avoid These Traps
Do not use Complex Numbers just because the surface looks familiar; verify the required condition first.
Applying Complex Numbers because it sounds relevant, without checking the trigger first.
Stopping after spotting the technique instead of finishing the calculation or proof.
MathGrit Coach Note
Let complex numbers reveal the algebraic structure; then compute only what remains.
Try it on:
Practice a contest problem where the key step is using real and imaginary parts, modulus, argument, and roots to encode algebraic structure.