๐Ÿงฎ Brain Teaser

The Infinite Product That Knows ฯ€\pi

Consider the infinite product

P=โˆn=2โˆžn2n2โˆ’1.P = \prod_{n=2}^{\infty} \frac{n^2}{n^2 - 1}.

Evaluate PP in closed form.

Hint: think about telescoping, or think about a famous infinite product formula you know.

infinite producttelescopingconvergenceelegant closed form

Answer: Infinite Product Telescoping to 2

Key Idea / Intuition

Each factor n2n2โˆ’1\frac{n^2}{n^2-1} splits as nnโˆ’1โ‹…nn+1\frac{n}{n-1} \cdot \frac{n}{n+1}. When you write out the partial product, two separate telescoping products emerge โ€” one marching upward, one marching downward โ€” and their product collapses beautifully to 22. No ฯ€\pi is needed in the end; the answer is a clean integer!

(The title was a small misdirection: ฯ€\pi appears in Wallis's product ฯ€2=โˆ(2n)(2n)(2nโˆ’1)(2n+1)\frac{\pi}{2} = \prod \frac{(2n)(2n)}{(2n-1)(2n+1)}, which superficially resembles this, but here the answer turns out to be 22.)


Formal Proof / Solution

Step 1: Factor each term.

n2n2โˆ’1=n2(nโˆ’1)(n+1)=nnโˆ’1โ‹…nn+1.\frac{n^2}{n^2-1} = \frac{n^2}{(n-1)(n+1)} = \frac{n}{n-1} \cdot \frac{n}{n+1}.

Step 2: Write the partial product.

PN=โˆn=2Nnnโˆ’1โ‹…โˆn=2Nnn+1.P_N = \prod_{n=2}^{N} \frac{n}{n-1} \cdot \prod_{n=2}^{N} \frac{n}{n+1}.

Telescoping the first product:

โˆn=2Nnnโˆ’1=21โ‹…32โ‹…43โ‹ฏNNโˆ’1=N.\prod_{n=2}^{N} \frac{n}{n-1} = \frac{2}{1}\cdot\frac{3}{2}\cdot\frac{4}{3}\cdots\frac{N}{N-1} = N.

Telescoping the second product:

โˆn=2Nnn+1=23โ‹…34โ‹…45โ‹ฏNN+1=2N+1.\prod_{n=2}^{N} \frac{n}{n+1} = \frac{2}{3}\cdot\frac{3}{4}\cdot\frac{4}{5}\cdots\frac{N}{N+1} = \frac{2}{N+1}.

Step 3: Combine.

PN=Nโ‹…2N+1=2NN+1.P_N = N \cdot \frac{2}{N+1} = \frac{2N}{N+1}.

Step 4: Take the limit.

P=limโกNโ†’โˆž2NN+1=2.P = \lim_{N\to\infty} \frac{2N}{N+1} = \boxed{2}.

Sanity check: Each factor n2n2โˆ’1>1\frac{n^2}{n^2-1} > 1, so the product should exceed 11 โ€” check. The factors approach 11 fast enough (like 1+1/n21 + 1/n^2) for convergence โ€” check. And indeed the closed form 22 is surprisingly clean.

Conceptual remark: This is the "harmonic telescope" trick in its purest form. The same splitting idea โ€” writing a ratio as a product of two ratios that telescope in opposite directions โ€” reappears in partial fractions, in evaluating โˆ‘1/n(n+1)\sum 1/n(n+1), and in verifying Wallis's product. Recognizing when a product or sum has a hidden telescoping structure is one of the most versatile tools in elementary analysis.

Type: Complex AnalysisEdit on GitHub โ†—