Intuition The ONE core idea
Every complex number is really just a point on a flat map — a left–right amount and an up–down amount. Euler's formula says that if you put a point at distance 1 from the centre and turn it by an angle θ , its address on that map is cos θ + i sin θ , and there is a single tidy name for "that turned point": e i θ .
This page assumes nothing . Before you touch the parent proof , you need to already see eleven little pictures. We build them one at a time, each using only the ones before it.
Definition A number as a position
A number is a position on a straight line. The line has a centre called 0 . Going right = positive, going left = negative. The letter x is just a name for "some position on this line" — a placeholder we can fill in later.
Why do we need this? Everything that follows is "a line, then a second line stuck on at a right angle." So we start with one line.
Here is the first genuinely new idea of the whole topic.
Definition The imaginary unit
i
i is a new number that sits one step UP from 0 , off the original left–right line. It is defined by the rule
i 2 = − 1.
In plain words: "i times itself lands on − 1 ."
i means "turn 90°"
Look at figure s01. Multiplying by − 1 takes the arrow pointing right (+ 1 ) and flips it to point left (− 1 ) — that is a half-turn (180°) . If two multiplications by i give one multiplication by − 1 (because i 2 = − 1 ), then one multiplication by i must be half of a half-turn = a quarter-turn (90°) . So multiplying by i is "rotate a quarter turn anticlockwise." That single fact is the seed of the entire topic.
Why the topic needs it: without a number that means "rotate 90°," there is no way to talk about spinning, and e i θ is all about spinning.
The flat map in figure s02 is the complex plane : horizontal axis = real part, vertical axis = imaginary part. A complex number is just a point (or an arrow from the centre to that point ). This is the map every later picture lives on.
Worked example Reading points
3 means "3 right, 0 up" → a point on the horizontal axis.
2 i means "0 right, 2 up" → a point straight above the centre.
3 + 2 i means "3 right, 2 up."
The modulus ∣ z ∣ of a complex number z = a + bi is its distance from the centre 0 . By the flat-map version of Pythagoras,
∣ z ∣ = a 2 + b 2 .
Why we need it: Euler's formula is specifically about points at distance exactly 1 . To say "distance 1" we first need a word for distance — that word is modulus.
Definition Argument (angle)
θ
The argument θ ("theta", a Greek letter used as a name for an angle) is how far anticlockwise you have turned from the positive-right direction to point at your number.
Definition Radians — the honest way to measure an angle
A radian measures an angle by the length of arc it sweeps on the unit circle . Turn until the tip has travelled a distance equal to the radius (1), and you have turned 1 radian . A full circle has circumference 2 π , so:
full turn = 2 π rad,
half turn = π rad,
quarter turn (90°) = 2 π rad.
Common mistake Why not degrees?
Degrees are an arbitrary human choice (360 because ancient calendars liked it). The series that builds cos and sin only match those functions when the angle is measured as arc length , i.e. in radians. Feed degrees into Euler's formula and it silently breaks. Always use π /2 , never 90 .
Now the two workhorse functions. We define them on the unit circle , not on triangles, because that is how the topic uses them.
Definition Cosine and sine as coordinates
Stand a clock hand of length 1 at the centre and turn it by angle θ . The tip lands at a point whose:
horizontal position (left–right shadow) is cos θ ,
vertical position (height) is sin θ .
So the tip is literally the point ( cos θ , sin θ ) , i.e. the complex number cos θ + i sin θ .
Intuition Why this ratio "measures" the angle
As you turn, the shadow cos θ shrinks from 1 (pointing right) to 0 (pointing up) to − 1 (pointing left); the height sin θ grows from 0 up to 1 and back. Each angle gives its own unique pair of (shadow, height) on the circle — so knowing the pair tells you the angle, and vice versa. That two-way link is exactly why cos and sin can encode rotation.
Because the tip is always distance 1 from the centre, Pythagoras on figure s04 gives the identity you will lean on constantly:
cos 2 θ + sin 2 θ = 1.
x n
x n means "multiply x by itself n times ": x 3 = x ⋅ x ⋅ x . Special case x 0 = 1 (multiply nothing, start at 1).
n !
n ! ("n factorial") means "multiply all whole numbers from 1 up to n ": 4 ! = 1 ⋅ 2 ⋅ 3 ⋅ 4 = 24 . Convention: 0 ! = 1 .
Definition The sum symbol
∑
n = 0 ∑ ∞ ( expression in n ) is shorthand for "add up this expression for n = 0 , then n = 1 , then n = 2 , and so on forever." The ∑ is a capital Greek S, standing for Sum .
Why the topic needs these: the parent proof writes e x , cos x , sin x as infinite sums of powers over factorials . You cannot read a single line of the proof without knowing what ∑ , x n and n ! mean.
e
e ≈ 2.718 is a special constant. Its defining feature: e x is the function whose growth rate at every instant equals its own current value — it is "continuous, self-feeding growth."
Why we need the sum form and not "2.718 to a power": you cannot raise a decimal to an imaginary power i θ by ordinary multiplication — "multiply 2.718 by itself i θ times" is meaningless. But the sum form takes any input, real or complex, and just adds terms. That is the whole trick of the proof: substitute x = i θ into a sum. (See Taylor & Maclaurin Series for where these sums come from.)
We already have i 2 = − 1 . Now extend the pattern — this is the "engine" of the proof.
i 0 = 1 , i 1 = i , i 2 = − 1 , i 3 = i 2 ⋅ i = − i , i 4 = i 2 ⋅ i 2 = ( − 1 ) ( − 1 ) = 1.
Intuition The four-beat cycle
After i 4 we are back to 1 , so the values repeat every four steps : 1 , i , − 1 , − i , 1 , i , … Picture it as the clock hand from §2 clicking anticlockwise a quarter-turn each time: right → up → left → down → right. This cycle is what will sort the exponential sum into a real pile (the 1 , − 1 beats) and an imaginary pile (the i , − i beats) — which turn out to be cos and sin .
Number line and placeholder x
Complex plane: point a + bi
Modulus of z: distance from 0
Unit circle: distance 1 from 0
Multiply by i = rotate 90 degrees
cos theta = shadow, sin theta = height
Powers, factorial, sum symbol
Powers of i cycle: 1, i, -1, -i
Read it top-down: the plane and i give you where numbers live; modulus + angle + cos / sin give you the unit-circle language ; powers + ∑ give you the exponential-as-sum ; the i -cycle is the sorting engine . Feed all four into the substitution x = i θ and Euler's formula pops out.
Test yourself — reveal only after answering aloud.
What does the symbol i mean, in one sentence? A number one step "up" off the line with i 2 = − 1 ; multiplying by it rotates 90° anticlockwise.
In a + bi , what are a and b ? a = how far right (real part), b = how far up (imaginary part).
What is the modulus ∣ z ∣ of z = a + bi , and what picture is it? a 2 + b 2 — the distance from the centre
0 to the point.
What is the unit circle? All points at modulus exactly 1 from the centre.
What is 1 radian? The angle whose arc along the unit circle has length equal to the radius (1); a full turn is 2 π .
On the unit circle, what are cos θ and sin θ ? The horizontal shadow and the vertical height of the tip after turning by θ .
What identity links cos and sin on the unit circle, and why? cos 2 θ + sin 2 θ = 1 , from Pythagoras since the tip is distance 1 away.
What does n = 0 ∑ ∞ tell you to do? Add the expression for n = 0 , 1 , 2 , … forever.
What is 0 ! and what is x 0 ? Both equal 1 .
Write e x as an infinite sum. ∑ n = 0 ∞ n ! x n = 1 + x + 2 ! x 2 + 3 ! x 3 + ⋯
Why must we use the sum form of e x for Euler's formula? Because raising a decimal to an imaginary power is meaningless, but the sum accepts any complex input.
List the cycle of powers of i starting at i 0 . 1 , i , − 1 , − i , then repeats.
Why does the exponential series split into real and imaginary halves? Because i n cycles 1 , i , − 1 , − i : even powers land on real terms, odd powers carry a factor of i .