How was the number e discovered and why is it special?
Pi gets all the attention, but e seems just as important in calculus and logarithms. I know it's approximately 2.718 and it comes from compound interest, but who first discovered it and why does it show up in so many unrelated areas of mathematics and nature?
2 answers19 views
Loading comments...
2 Answers
The short answer is that infinite series converge when the terms get smaller fast enough. But the full explanation involves some beautiful mathematics.
**The classic example:**
Consider the series S = 1 + 1/2 + 1/4 + 1/8 + 1/16 + ...
Visualize a square of area 1. Color half of it (1/2). Then color half of what's left (1/4). Then half of what's left (1/8). You'll never color the entire square — there's always an uncolored sliver that gets smaller and smaller. The total colored area approaches 1, but never exceeds it. The sum converges to 1.
Actually, this series sums to 2, not 1. Let me recalculate: 1 + 1/2 + 1/4 + 1/8 + ... = 2.
**Why some series diverge:**
Compare it to the harmonic series: 1 + 1/2 + 1/3 + 1/4 + 1/5 + ...
Intuition says this should also converge because the terms get small. But it actually diverges! The trick is that you can group terms: 1 + 1/2 + (1/3+1/4) + (1/5+...+1/8) + ... Each group sums to at least 1/2, and there are infinitely many groups, so the total sum is infinite.
**The key insight:**
The terms must shrink fast enough for convergence. The series 1 + 1/2^p + 1/3^p + ... converges when p > 1 and diverges when p ≤ 1. The exponent p = 1 (the harmonic series) is the boundary between convergence and divergence.
**Formal test:**
The ratio test, integral test, and comparison test are the standard tools to determine if a series converges. But the geometric intuition is the most helpful: if the terms decay exponentially (like 1/2^n), the series converges; if they decay polynomially (like 1/n), it's trickier and depends on the exponent.
Loading comments...
Let me give you a thorough breakdown of this because the answer connects several deep ideas in mathematics.
**What are primes?**
A prime number is a positive integer greater than 1 that has exactly two divisors: 1 and itself. The first few are 2, 3, 5, 7, 11, 13... The number 1 is not prime by definition (it has only one divisor), and 2 is the only even prime.
**Why they never run out — Euclid's proof (c. 300 BCE):**
This is one of the most elegant proofs in all of mathematics. Here's how it works:
1. Assume there is a finite list of all primes: p₁, p₂, p₃, ..., pₙ.
2. Construct a new number N = (p₁ × p₂ × p₃ × ... × pₙ) + 1.
3. N is either prime or composite.
4. If N is prime, then we found a new prime not in our list — contradiction.
5. If N is composite, then it must have a prime factor. But N divided by any prime from our list leaves remainder 1 (because N = product + 1). So N's prime factor cannot be in our list — contradiction.
6. Either way, our assumption that the list was complete is false.
Therefore, there are infinitely many primes. This proof is over 2300 years old and still taught today because of its elegance.
**Why primes matter:**
The **Fundamental Theorem of Arithmetic** states that every integer greater than 1 can be written as a product of primes in exactly one way (ignoring order). Primes are the "atoms" of numbers — the building blocks from which all other integers are built.
This uniqueness is why they're so important. When you encrypt data on the internet, you're relying on the fact that multiplying two large primes is easy, but factoring their product back into primes is incredibly hard — even for supercomputers.
**Why they're hard to predict:**
The distribution of primes follows a rough pattern (the Prime Number Theorem says the nth prime is approximately n × ln(n)), but there's no simple formula that generates all primes. This irregularity is what makes them useful for cryptography and fascinating to mathematicians.
Loading comments...