Size and Growth
The integers extend infinitely in both directions:
In number theory, one usually studies the size of an integer through its absolute value. The size of is measured by
For positive integers, this is simply . For negative integers, it removes the sign:
Growth concerns how quantities behave as becomes large. Many arithmetic questions are not about one fixed integer, but about infinitely many integers at once. For example, instead of asking whether is prime, one may ask how many primes are less than a large number .
Linear Growth
The simplest growth pattern is linear growth. A sequence grows linearly if its size is comparable to .
For example,
grows linearly because increasing by increases by .
Linear functions have the form
where and are fixed constants.
For large , the term dominates the constant . Thus
and
have essentially the same large-scale growth.
Polynomial Growth
A sequence has polynomial growth if it is bounded in size by a power of . Examples include
The sequence
has quadratic growth. For large , the highest-degree term dominates:
Polynomial growth appears frequently in counting problems, lattice point estimates, and complexity analysis.
Exponential Growth
Exponential growth is much faster than polynomial growth. A typical example is
The first few values are
Each step multiplies the previous value by .
More generally, if , then
grows exponentially.
Exponential growth dominates polynomial growth. For every fixed integer ,
once is sufficiently large.
This fact is often proved by induction or by estimating ratios.
Logarithmic Growth
Logarithmic growth is slower than polynomial growth. The logarithm measures how many times a number must be multiplied by a base to reach a given size.
For base , the quantity
is the number of doublings needed to reach .
For example,
because
Logarithms appear naturally in number theory. The number of binary digits of a positive integer is approximately
Thus logarithms measure the length of an integer when written in positional notation.
Comparing Growth Rates
The basic hierarchy of growth is
Here the symbol informally means “grows much more slowly than.”
For example, when ,
When ,
but
has more than thirty decimal digits.
The difference becomes enormous as increases.
Big-O Notation
To compare growth precisely, mathematicians use asymptotic notation.
We write
if there exists a constant and an integer such that
for every .
This means that eventually bounds the size of , up to a constant factor.
For example,
Indeed, for ,
Similarly,
Big-O notation ignores lower-order terms and constant factors. It records the large-scale rate of growth.
Growth and Arithmetic Problems
Growth estimates appear throughout number theory.
The prime counting function counts the number of primes less than or equal to . A central theorem of analytic number theory says that grows approximately like
The divisor function , which counts the number of positive divisors of , grows much more slowly than , but irregularly.
Factorials grow very quickly:
They grow faster than any exponential with fixed , once is large enough.
Growth as a Number-Theoretic Tool
Growth is not merely a way to describe size. It is often used to prove impossibility.
For example, if two integer expressions have incompatible growth rates, they cannot be equal for infinitely many values of . Many Diophantine arguments depend on comparing the sizes of terms.
Growth also appears in algorithms. An algorithm that factors integers by checking all possible divisors up to behaves very differently from one that checks only up to . The second is much faster because
grows much more slowly than
Thus the study of integer growth connects elementary arithmetic with analysis, computation, and modern number theory.