Intuition The one core idea
A smooth curve near a single point is completely described by its height, its slope, its bend, and every deeper rate-of-change at that point . A Maclaurin series stacks up simple powers 1 , x , x 2 , x 3 , … — each scaled just right — so that this pile of powers copies all of those numbers and hugs the true curve near x = 0 .
This page assumes nothing . Every symbol the parent note (parent topic) throws at you is unpacked here, in an order where each idea leans only on the ones before it.
A function is a machine: you feed in one number x and it spits out exactly one number, written f ( x ) (read "f of x "). The letter f is the machine's name; x is the input slot.
The picture. Draw a horizontal number line for inputs and a vertical one for outputs. For each input x you get a height f ( x ) ; joining all those heights traces a curve (its graph).
Intuition Why the topic needs this
Everything we build — series for e x , sin x , etc. — is about copying a curve with a simpler machine (a polynomial). No notion of "function" ⇒ nothing to copy.
Definition Power notation
x n means "multiply x by itself n times": x 2 = x ⋅ x , x 3 = x ⋅ x ⋅ x . The small raised n is the exponent . Special cases: x 1 = x and x 0 = 1 (multiplying nothing gives the neutral number 1 ).
The picture. As n grows, x n for a small input like x = 0.1 shrinks dramatically: 0.1 , 0.01 , 0.001 , … . This "high powers become tiny near zero" is exactly why later terms in a series barely matter close to x = 0 .
A polynomial — the thing we approximate with — is just a weighted sum of powers: a 0 + a 1 x + a 2 x 2 + ⋯ . Each x n is one "building block".
The derivative f ′ ( x ) (read "f prime of x ") is the slope of the curve at the point x : how steeply the height is rising or falling right there. Also written d x d f ( x ) .
The picture. Zoom in on the curve until it looks like a straight line — that line's steepness (rise over run) is f ′ ( x ) . Positive slope = going up, negative = going down, zero = flat.
Intuition Why this tool and not another?
We want to pin down a curve at one point . The height f ( 0 ) alone gives a dot — infinitely many curves pass through one dot. The slope f ′ ( 0 ) says which direction it leaves; the next derivative says how it bends; and so on. Each derivative removes ambiguity. That is precisely why the topic needs derivatives — see Taylor series (general centre a) for the general-centre version.
Definition Repeated derivatives
Take the slope of the slope: f ′′ ( x ) (the second derivative ) measures bend / curvature . Do it again for f ′′′ ( x ) . In general f ( n ) ( x ) means "differentiate f a total of n times". The bracketed superscript ( n ) is a counter , not a power.
f ( n ) is not f raised to the n
f ( 3 ) ( x ) means "differentiate three times", not ( f ( x ) ) 3 . The parentheses around the 3 are the warning flag.
n ! (read "n factorial") means multiply all whole numbers from 1 up to n :
3 ! = 1 ⋅ 2 ⋅ 3 = 6 , 4 ! = 1 ⋅ 2 ⋅ 3 ⋅ 4 = 24 , 0 ! = 1.
By convention 0 ! = 1 (an empty product is 1 , matching x 0 = 1 ).
The picture. Factorials explode: 1 , 1 , 2 , 6 , 24 , 120 , 720 , … . Picture a staircase whose steps get impossibly tall very fast.
Intuition Why the topic needs factorials
When you differentiate x n a full n times, you strip one exponent each time and leave behind the product n ⋅ ( n − 1 ) ⋯ 1 = n ! . So a stray n ! appears in every coefficient — and we divide it back out. Watch it happen:
d x d x 3 = 3 x 2 , d x d 3 x 2 = 6 x , d x d 6 x = 6 = 3 ! .
The symbol n = 0 ∑ ∞ (Greek capital sigma) means "add up the following expression for n = 0 , then n = 1 , then n = 2 , ... forever". The n = 0 underneath is the start ; the ∞ on top means it never stops.
Read it slowly:
∑ n = 0 ∞ n ! x n = n = 0 0 ! x 0 + n = 1 1 ! x 1 + n = 2 2 ! x 2 + ⋯ = 1 + x + 2 x 2 + ⋯
Writing "+ ⋯ " is vague; ∑ states the exact rule for every term at once. It's shorthand, not new maths.
Adding infinitely many things sounds dangerous — surely the total is infinite? Not always. If the pieces shrink fast enough, the running total homes in on a finite number.
The picture. Plot the running total (called a partial sum ) after 1 , 2 , 3 , … terms. If those dots settle toward a horizontal level, the series converges to that level. If they run off to infinity or jump around, it diverges .
Definition Interval of convergence
The set of input values x for which the series settles is its interval of convergence . Outside it, the polynomial is nonsense even if the original function is fine. This is a whole topic on its own: Radius & interval of convergence .
ln ( 1 + x ) stops at x = − 1
At x = − 1 the series becomes − 1 − 2 1 − 3 1 − ⋯ , whose pieces shrink too slowly (they never accumulate to a finite total). So the total marches to − ∞ — matching ln ( 0 ) = − ∞ .
Definition Geometric series
A geometric series adds powers of a fixed ratio r : 1 + r + r 2 + r 3 + ⋯ . When ∣ r ∣ < 1 (the ratio is smaller than 1 in size) it converges to a tidy closed form:
1 + r + r 2 + ⋯ = 1 − r 1 ( ∣ r ∣ < 1 ) .
The picture. Each term is a fixed fraction of the one before, so the terms form a shrinking staircase whose total area is finite. Full derivation lives at Geometric series .
Intuition Why the topic reaches for it
We will get ln ( 1 + x ) for free by integrating 1 + x 1 , and 1 + x 1 is a geometric series with ratio r = − x :
1 + x 1 = 1 − ( − x ) 1 = 1 + ( − x ) + ( − x ) 2 + ⋯ = 1 − x + x 2 − x 3 + ⋯
Note the alternating signs — they come from r = − x , a classic sign trap.
Integrating is running differentiation backwards: given a slope function, recover the height function. Symbol: ∫ . The rule for a power raises the exponent and divides:
∫ x n d x = n + 1 x n + 1 + C .
The + C is an unknown constant, because shifting a curve up or down does not change its slope.
Intuition Why the topic needs it
To turn the geometric series for 1 + x 1 into ln ( 1 + x ) , we integrate term by term. The mystery constant C is fixed by knowing one value: ln ( 1 + 0 ) = ln 1 = 0 .
Definition Binomial coefficient
( k n ) (read "n choose k ") is a single number built from a falling product on top and a factorial below:
( k n ) = k ! n ( n − 1 ) ( n − 2 ) ⋯ ( n − k + 1 ) ( exactly k factors on top ) .
When n is a whole number ≥ 0 these are the rows of Pascal's triangle. Crucially, the top product makes sense even for a fractional n like 2 1 .
Intuition Why the topic needs it
The series for ( 1 + x ) n is just ∑ ( k n ) x k . This is the Binomial theorem (integer n) stretched to any real power — see the parent's 1 + x example, where n = 2 1 .
A function is even if its graph is a mirror image across the vertical axis (f ( − x ) = f ( x ) , e.g. cos x ). It is odd if it has 180° rotational symmetry about the origin (f ( − x ) = − f ( x ) , e.g. sin x ).
The picture. Even = reflection (like x 2 , a symmetric bowl). Odd = pinwheel (like x 3 , up on one side, down on the other). The power x n itself is even when n is even, odd when n is odd.
Intuition Why this saves work
sin x is odd, so its series may contain only odd powers — every even-power coefficient must vanish. Likewise cos x (even) keeps only even powers. Parity predicts which half the terms are zero before any calculation.
Definition Imaginary unit
i is defined by i 2 = − 1 — a number whose square is negative. The parent mentions e i x = cos x + i sin x (Euler's formula ); you do not need i to derive the five core series, but this is what the symbol means when it appears.
Slope = derivative f prime
Coefficient rule an = f n at 0 over n!
Where the series is valid
Which terms vanish in sin cos
Maclaurin series topic 4.3.17
Test yourself — cover the right side and answer out loud.
What does f ′ ( x ) measure at a point? The slope (steepness) of the curve there.
What does the superscript in f ( 4 ) ( x ) mean? Differentiate f four times — it is a counter, not a power.
Compute 4 ! 1 ⋅ 2 ⋅ 3 ⋅ 4 = 24 .
What is 0 ! and why? 0 ! = 1 ; an empty product is the neutral number 1 .
What is d x n d n x n ? n ! — this is why every Maclaurin coefficient carries a n ! 1 .
Expand n = 0 ∑ 2 n ! x n 1 + x + 2 x 2 .
When does 1 + r + r 2 + ⋯ converge, and to what? When ∣ r ∣ < 1 ; it converges to 1 − r 1 .
Write 1 + x 1 as a geometric series. 1 − x + x 2 − x 3 + ⋯ (ratio r = − x ).
What does ∫ x n d x give? n + 1 x n + 1 + C .
Evaluate ( 2 1/2 ) . 2 ! 2 1 ⋅ ( − 2 1 ) = − 8 1 .
Is sin x odd or even, and what does that force? Odd; only odd powers survive in its series.
What does "interval of convergence" tell you? The exact set of x where the series equals the function.