Little-o Notation — Definition, Formula & Examples
Little-o notation describes a function that grows strictly slower than another function. Writing means becomes negligible compared to as approaches some limit.
We write as if . This means that for every , there exists a neighborhood of in which .
Key Formula
Where:
- = The function claimed to be asymptotically smaller
- = The comparison function
- = The point or direction of the limit (could be 0, ∞, etc.)
How It Works
To check whether , compute the limit of . If the limit equals zero, the little-o relationship holds. The point is often , , or another value relevant to the problem. Little-o is stronger than Big-O: implies , but not vice versa. In Taylor expansions, little-o captures the idea that the remainder term shrinks faster than the last included power of .
Worked Example
Problem: Show that as .
Form the ratio: Divide by .
Take the limit: Evaluate the limit as .
Conclude: Because the limit is , the definition is satisfied.
Answer: as , confirming that shrinks much faster than near zero.
Why It Matters
Little-o notation appears throughout calculus and analysis whenever you need to describe how fast a remainder or error term vanishes. It is the standard way to write Taylor's theorem with the Peano form of the remainder, e.g., . In algorithm analysis, it also distinguishes functions that are strictly slower-growing from those that merely share an upper bound.
Common Mistakes
Mistake: Confusing little-o with Big-O. Students sometimes treat and as interchangeable.
Correction: Big-O () means the ratio stays bounded; little-o () means the ratio goes to zero. Little-o is the strictly stronger condition.
