try ai
Popular Science
Edit
Share
Feedback
  • Infinite Products

Infinite Products

SciencePediaSciencePedia
Key Takeaways
  • The convergence of an infinite product ∏(1+an)\prod (1+a_n)∏(1+an​) is determined by the convergence of the related infinite series ∑an\sum a_n∑an​, especially when convergence is absolute.
  • Taking the logarithm is the primary tool for analyzing infinite products, as it transforms a product into a more familiar infinite series.
  • The Weierstrass factorization theorem allows functions, such as the sine function, to be constructed as an infinite product built from their roots.
  • The Euler product formula expresses the Riemann zeta function as an infinite product over prime numbers, creating a fundamental bridge between continuous analysis and discrete number theory.

Introduction

While many are familiar with adding an infinite list of numbers to form a series, a natural question arises: what happens if we multiply them instead? This question opens the door to the world of infinite products, a concept as foundational and powerful as its additive counterpart. Far from being a mere mathematical curiosity, infinite products provide a unique lens to construct functions, solve complex problems, and reveal profound connections between what seem like disparate areas of mathematics. This article serves as a guide through this elegant theory. The first section, ​​Principles and Mechanisms​​, will lay the groundwork, defining infinite products and exploring the critical tools for determining their convergence—from clever telescoping cancellations to the transformative power of logarithms. Subsequently, the section on ​​Applications and Interdisciplinary Connections​​ will showcase these ideas in action, illustrating how infinite products build functions from their roots, evaluate surprising constants, and forge a spectacular bridge between analysis and number theory.

Principles and Mechanisms

Multiplication, Ad Infinitum

We’ve all spent time with infinite sums, or series. We have a good feeling for what it means to add up an infinite number of terms and get a finite answer. For instance, we know that 1+12+14+18+…1 + \frac{1}{2} + \frac{1}{4} + \frac{1}{8} + \dots1+21​+41​+81​+… adds up to 2. The terms get small, and they get small fast enough. But what happens if we change the operation? What if, instead of adding, we try to multiply an infinite number of terms?

This leads us to the idea of an ​​infinite product​​. We write it like this:

P=∏n=1∞an=a1⋅a2⋅a3⋅…P = \prod_{n=1}^{\infty} a_n = a_1 \cdot a_2 \cdot a_3 \cdot \dotsP=∏n=1∞​an​=a1​⋅a2​⋅a3​⋅…

Just like with series, our first question is about convergence: Does this product "settle down" to a specific value? Here, things get a little trickier. With sums, we need the terms to go to zero. With products, you might guess we need the terms ana_nan​ to go to one. And you’d be right! But that’s not the whole story. If the terms are all slightly larger than one, the product could shoot off to infinity. If they are all slightly smaller than one, it could dwindle down to zero. We need a more robust way to think about this. By convention, we say a product converges if its limit is finite and, importantly, ​​non-zero​​. A product that goes to zero is said to ​​diverge to 0​​, because in many applications, we lose all information when the result is zero, much like a sum that goes to infinity.

The Magic of Telescoping Products

Sometimes, a seemingly monstrous product collapses into something wonderfully simple. This often happens when there's a hidden cancellation, a phenomenon known as a ​​telescoping product​​. It's the multiplicative cousin of a telescoping series, where intermediate terms cancel out, leaving just the beginning and the end.

Let's look at a beautiful example. At first glance, the product

P=∏n=2∞n3−1n3+1P = \prod_{n=2}^{\infty} \frac{n^3-1}{n^3+1}P=∏n=2∞​n3+1n3−1​

seems rather intimidating. What could this possibly converge to? Let's not be afraid of it; let's take it apart. A little bit of high-school algebra for the sum and difference of cubes lets us rewrite the general term:

n3−1n3+1=(n−1)(n2+n+1)(n+1)(n2−n+1)\frac{n^3-1}{n^3+1} = \frac{(n-1)(n^2+n+1)}{(n+1)(n^2-n+1)}n3+1n3−1​=(n+1)(n2−n+1)(n−1)(n2+n+1)​

This might not seem much simpler, until we notice a sneaky relationship between the quadratic terms. Let f(n)=n2−n+1f(n) = n^2-n+1f(n)=n2−n+1. Then a little calculation shows that f(n+1)=(n+1)2−(n+1)+1=n2+n+1f(n+1) = (n+1)^2 - (n+1) + 1 = n^2+n+1f(n+1)=(n+1)2−(n+1)+1=n2+n+1. So, our fraction is actually:

n−1n+1⋅f(n+1)f(n)\frac{n-1}{n+1} \cdot \frac{f(n+1)}{f(n)}n+1n−1​⋅f(n)f(n+1)​

Now, look what happens when we write out the partial product PN=∏n=2NanP_N = \prod_{n=2}^{N} a_nPN​=∏n=2N​an​. It splits into two parts:

PN=(∏n=2Nn−1n+1)⋅(∏n=2Nf(n+1)f(n))P_N = \left( \prod_{n=2}^{N} \frac{n-1}{n+1} \right) \cdot \left( \prod_{n=2}^{N} \frac{f(n+1)}{f(n)} \right)PN​=(∏n=2N​n+1n−1​)⋅(∏n=2N​f(n)f(n+1)​)

The second part is a perfect telescoping product: f(3)f(2)⋅f(4)f(3)⋅⋯⋅f(N+1)f(N)=f(N+1)f(2)\frac{f(3)}{f(2)} \cdot \frac{f(4)}{f(3)} \cdot \dots \cdot \frac{f(N+1)}{f(N)} = \frac{f(N+1)}{f(2)}f(2)f(3)​⋅f(3)f(4)​⋅⋯⋅f(N)f(N+1)​=f(2)f(N+1)​. The first part is also telescoping, though a bit more subtly. All the terms cancel except for a few at the beginning and end. When the dust settles, the partial product simplifies dramatically to:

PN=23⋅N2+N+1N2+NP_N = \frac{2}{3} \cdot \frac{N^2+N+1}{N^2+N}PN​=32​⋅N2+NN2+N+1​

Taking the limit as N→∞N \to \inftyN→∞, the fraction on the right goes to 1. The grand, infinite product collapses beautifully to a simple rational number: P=23P = \frac{2}{3}P=32​. This is the magic of hidden structure!

The Logarithmic Bridge: From Products to Sums

Telescoping products are elegant but rare. For the vast majority of infinite products, we need a more powerful, general tool. And here comes the masterstroke, a trick that has been central to mathematics for centuries: if you have a problem with multiplication, turn it into a problem about addition. We do this with the ​​logarithm​​.

If we have a product PN=∏n=1N(1+an)P_N = \prod_{n=1}^{N} (1+a_n)PN​=∏n=1N​(1+an​), we can take its natural logarithm:

ln⁡(PN)=ln⁡(∏n=1N(1+an))=∑n=1Nln⁡(1+an)\ln(P_N) = \ln\left( \prod_{n=1}^{N} (1+a_n) \right) = \sum_{n=1}^{N} \ln(1+a_n)ln(PN​)=ln(∏n=1N​(1+an​))=∑n=1N​ln(1+an​)

Suddenly, our infinite product is transformed into an infinite series! The question of the product's convergence is now tied to the convergence of this sum of logarithms.

  • If ∑ln⁡(1+an)\sum \ln(1+a_n)∑ln(1+an​) converges to a finite value SSS, then the product ∏(1+an)\prod (1+a_n)∏(1+an​) converges to exp⁡(S)\exp(S)exp(S), which is a finite non-zero number.
  • If ∑ln⁡(1+an)\sum \ln(1+a_n)∑ln(1+an​) diverges to +∞+\infty+∞, the product diverges to +∞+\infty+∞.
  • If ∑ln⁡(1+an)\sum \ln(1+a_n)∑ln(1+an​) diverges to −∞-\infty−∞, the product ​​diverges to 0​​.

This logarithmic bridge is our main tool for navigating the world of infinite products. It allows us to bring the entire, well-developed machinery of infinite series to bear on this new type of problem.

Convergence: A Tale of Two Series

The logarithmic bridge is powerful, but can we simplify it further? For the product ∏(1+an)\prod(1+a_n)∏(1+an​) to stand any chance of converging, the terms (1+an)(1+a_n)(1+an​) must approach 1, which means the ana_nan​ must approach 0. And when xxx is very small, we know a wonderful approximation from calculus:

ln⁡(1+x)≈x\ln(1+x) \approx xln(1+x)≈x

This simple approximation is the key. It suggests that the convergence of the series of logarithms, ∑ln⁡(1+an)\sum \ln(1+a_n)∑ln(1+an​), should be intimately related to the convergence of the series of the terms themselves, ∑an\sum a_n∑an​. And indeed, this is the case. For terms ana_nan​ that are not pathologically strange (e.g., for an>0a_n > 0an​>0), a fundamental theorem emerges:

​​The infinite product ∏(1+an)\prod (1+a_n)∏(1+an​) converges if and only if the infinite series ∑an\sum a_n∑an​ converges.​​

This is a fantastic result. It reduces a new, complex question about infinite multiplication to a familiar question about infinite addition. Let's see it in action. Does the product over the inverse squares of prime numbers, ∏k=1∞(1−1pk2)\prod_{k=1}^{\infty} (1 - \frac{1}{p_k^2})∏k=1∞​(1−pk2​1​), converge to a non-zero value?.

According to our theorem, this is the same as asking if the series ∑k=1∞1pk2\sum_{k=1}^{\infty} \frac{1}{p_k^2}∑k=1∞​pk2​1​ converges. The primes are a subset of the integers, so every term in this sum is also a term in the famous sum ∑n=1∞1n2\sum_{n=1}^{\infty} \frac{1}{n^2}∑n=1∞​n21​. We know this latter series converges (to the famous value π26\frac{\pi^2}{6}6π2​, a discovery by Euler). Since the sum over primes is smaller than the sum over all integers, it must also converge. Therefore, our product converges to a finite, non-zero value. It does not vanish into nothingness.

A Deeper Look: The Subtle Dance of Convergence

You might be tempted to think that if ∑an\sum a_n∑an​ converges, then ∏(1+an)\prod(1+a_n)∏(1+an​) always converges to a non-zero number. But nature, as always, is more subtle than that. The approximation ln⁡(1+x)≈x\ln(1+x) \approx xln(1+x)≈x is only the first term of a series:

ln⁡(1+x)=x−x22+x33−…\ln(1+x) = x - \frac{x^2}{2} + \frac{x^3}{3} - \dotsln(1+x)=x−2x2​+3x3​−…

What if the first term, xxx, forms a convergent series, but the second term, −x2/2-x^2/2−x2/2, makes mischief?

Consider the product P=∏n=2∞(1+(−1)nn)P = \prod_{n=2}^{\infty} \left(1 + \frac{(-1)^n}{\sqrt{n}}\right)P=∏n=2∞​(1+n​(−1)n​). The corresponding series is ∑n=2∞(−1)nn\sum_{n=2}^{\infty} \frac{(-1)^n}{\sqrt{n}}∑n=2∞​n​(−1)n​. This is a classic alternating series. Since 1n\frac{1}{\sqrt{n}}n​1​ decreases to zero, the series converges. So, does the product converge? Let's look at the logarithm:

∑n=2∞ln⁡(1+(−1)nn)=∑n=2∞[((−1)nn)−12((−1)nn)2+… ]\sum_{n=2}^{\infty} \ln\left(1 + \frac{(-1)^n}{\sqrt{n}}\right) = \sum_{n=2}^{\infty} \left[ \left(\frac{(-1)^n}{\sqrt{n}}\right) - \frac{1}{2}\left(\frac{(-1)^n}{\sqrt{n}}\right)^2 + \dots \right]∑n=2∞​ln(1+n​(−1)n​)=∑n=2∞​[(n​(−1)n​)−21​(n​(−1)n​)2+…]

=∑n=2∞((−1)nn−12n+higher order terms)= \sum_{n=2}^{\infty} \left( \frac{(-1)^n}{\sqrt{n}} - \frac{1}{2n} + \text{higher order terms} \right)=∑n=2∞​(n​(−1)n​−2n1​+higher order terms)

We see the sum is made of several parts. The first part, ∑(−1)nn\sum \frac{(-1)^n}{\sqrt{n}}∑n​(−1)n​, is our convergent alternating series. The higher order terms form a series that converges quickly. But look at the middle term: ∑−12n\sum -\frac{1}{2n}∑−2n1​. This is just −12-\frac{1}{2}−21​ times the harmonic series, which diverges to −∞-\infty−∞! The divergent negative part completely overwhelms the delicate convergence of the alternating series. The entire sum of logarithms diverges to −∞-\infty−∞. And what does that mean for our product? It means P=exp⁡(−∞)=0P = \exp(-\infty) = 0P=exp(−∞)=0.

This is a beautiful and counter-intuitive result. The product ​​diverges to 0​​, even though the simple test on ∑an\sum a_n∑an​ seemed to promise convergence. This distinction between ​​absolute convergence​​ (where ∑∣an∣\sum|a_n|∑∣an​∣ converges and everything is safe) and ​​conditional convergence​​ (where ∑an\sum a_n∑an​ converges but ∑∣an∣\sum|a_n|∑∣an​∣ does not) is just as crucial for products as it is for series. In the complex plane, the possibilities are even richer, with different parts of the logarithm's expansion conspiring to produce convergence where you might not expect it.

The Grand Synthesis: Building Functions from Their Roots

So far, we have used infinite products to calculate numbers. But their true power, their grand purpose, is in building functions.

Think about a polynomial. If you know its roots (its zeros), you can build the polynomial. If a polynomial has roots at z1,z2,…,zNz_1, z_2, \dots, z_Nz1​,z2​,…,zN​, it can be written as P(z)=C(z−z1)(z−z2)…(z−zN)P(z) = C(z-z_1)(z-z_2)\dots(z-z_N)P(z)=C(z−z1​)(z−z2​)…(z−zN​). What if a function has an infinite number of roots? Could we build it in the same way, as an infinite product?

The answer is a resounding yes, and it is one of the most beautiful ideas in all of mathematics. The star of this story is the sine function. We know that sin⁡(πz)\sin(\pi z)sin(πz) is zero whenever zzz is an integer: z=0,±1,±2,…z = 0, \pm 1, \pm 2, \dotsz=0,±1,±2,…. Treating these zeros like the roots of a polynomial, we can construct the sine function as an infinite product. After careful arrangement, we arrive at this spectacular formula, first discovered by Euler:

sin⁡(πz)πz=∏n=1∞(1−z2n2)\frac{\sin(\pi z)}{\pi z} = \prod_{n=1}^{\infty} \left(1 - \frac{z^2}{n^2}\right)πzsin(πz)​=∏n=1∞​(1−n2z2​)

This is the ​​Weierstrass factorization​​ of the sine function. It tells us that this transcendental function, defined by geometry or differential equations, can be perfectly built from its infinite set of roots using simple quadratic factors. This connects the discrete (the integer roots) to the continuous (the smooth function).

This is not just a theoretical curiosity; it's an incredibly powerful tool. By expanding both sides of this equation as a power series and comparing the coefficients for the z2z^2z2 term, Euler was able to prove his famous solution to the Basel problem: ∑n=1∞1n2=π26\sum_{n=1}^{\infty} \frac{1}{n^2} = \frac{\pi^2}{6}∑n=1∞​n21​=6π2​. These product representations can also be used to evaluate complex-looking numerical products in a snap.

This idea extends far beyond sine. Many important functions in mathematics and physics, like the Gamma function, have canonical infinite product representations. These products reveal the soul of the function—its zeros. And these representations are not isolated facts; they are deeply interconnected. For instance, the product for the sine function can be elegantly derived from the product representation of the Gamma function and its famous reflection formula, Γ(z)Γ(1−z)=πsin⁡(πz)\Gamma(z)\Gamma(1-z) = \frac{\pi}{\sin(\pi z)}Γ(z)Γ(1−z)=sin(πz)π​, weaving a rich tapestry of connections across different fields of mathematics.

In some areas, like number theory, these products are used in a purely formal way. When dealing with an object like Euler's function, ∏n=1∞(1−qn)\prod_{n=1}^{\infty} (1 - q^n)∏n=1∞​(1−qn), one doesn't even have to think about the value of qqq. The product is treated as a machine that generates a sequence of coefficients. To find the coefficient of any particular power, say qkq^kqk, you only need to multiply out a finite number of the initial terms. This process is always finite and well-defined, giving us a powerful algebraic tool without worrying about analytic convergence.

From simple cancellations to the logarithmic bridge, from the subtleties of convergence to the construction of functions from their very essence, the theory of infinite products is a perfect illustration of the unity and beauty of mathematics. It shows us how a simple change in perspective—from adding to multiplying—can open up an entirely new and breathtaking landscape.

Applications and Interdisciplinary Connections

Now that we have acquainted ourselves with the machinery of infinite products, a natural question arises: "What is all this for?" It is a fair question. Mathematics is not merely a collection of elegant theorems and intricate formulas; it is a lens through which we can understand the world. The theory of infinite products, as it turns out, is a particularly powerful lens. It reveals a stunning unity across seemingly disparate fields, connecting the smooth undulations of trigonometric functions to the discrete, stubborn world of prime numbers. In this chapter, we will embark on a journey to see how these products are not just mathematical curiosities, but indispensable tools in the workshop of the scientist and the mathematician.

The central idea, you will recall, is that for many well-behaved functions, knowing all the places where the function is zero is enough to reconstruct the function entirely. It's as if you could rebuild a complex clock just by having a list of the precise locations where its gears must mesh. This "factorization" of a function into its roots opens up a spectacular playground of possibilities.

The Calculus of Functions: Building New from Old

Let us begin with a simple, yet remarkable, observation. These infinite product representations are not static museum pieces. They are living things, and we can perform a kind of "calculus" on them. We can combine them, divide them, and transform them to discover new truths.

Consider the famous product for the sine function, which we have already met:

sin⁡(πz)πz=∏n=1∞(1−z2n2)\frac{\sin(\pi z)}{\pi z} = \prod_{n=1}^{\infty} \left(1 - \frac{z^2}{n^2}\right)πzsin(πz)​=n=1∏∞​(1−n2z2​)

This formula contains all the zeros of sine at the integers. But what about its close cousin, the cosine function? The zeros of cos⁡(πz)\cos(\pi z)cos(πz) are not at the integers, but at the half-integers: ±12,±32,…\pm \frac{1}{2}, \pm \frac{3}{2}, \dots±21​,±23​,…. Can we find a product for cosine? We could try to build it from scratch, but there is a more beautiful way, a way that shows the deep consistency of mathematics. We can use a simple trigonometric identity that every high school student knows: sin⁡(2θ)=2sin⁡(θ)cos⁡(θ)\sin(2\theta) = 2\sin(\theta)\cos(\theta)sin(2θ)=2sin(θ)cos(θ).

If we replace zzz with 2z2z2z in the sine product, we get a product for sin⁡(2πz)\sin(2\pi z)sin(2πz). On the other hand, we can use the identity to write cos⁡(πz)=sin⁡(2πz)2sin⁡(πz)\cos(\pi z) = \frac{\sin(2\pi z)}{2\sin(\pi z)}cos(πz)=2sin(πz)sin(2πz)​. Now, we have an expression for cosine as a ratio of two infinite products. What happens when we write it out? The product for sin⁡(2πz)\sin(2\pi z)sin(2πz) contains terms for all integers, both even and odd. The product for sin⁡(πz)\sin(\pi z)sin(πz) in the denominator cancels out exactly the even terms from the numerator, leaving behind only the terms corresponding to the odd integers. After a bit of algebra, what remains is a breathtakingly simple product whose factors are zero precisely at the half-integers. And so, the cosine product emerges, not from a new calculation, but as a direct consequence of the sine product and basic trigonometry:

cos⁡(πz)=∏n=1∞(1−z2(n−1/2)2)\cos(\pi z) = \prod_{n=1}^{\infty} \left(1 - \frac{z^2}{(n-1/2)^2}\right)cos(πz)=n=1∏∞​(1−(n−1/2)2z2​)

This is a wonderful piece of magic! The algebraic structure of the functions is perfectly mirrored in the arithmetic of their infinite products. Once we have products for sine and cosine, deriving one for the tangent function, their ratio, is a straightforward exercise in this new calculus.

The Art of Evaluation: Unlocking Surprising Constants

Beyond building new functions, infinite products provide a powerful method for evaluating expressions that seem, at first glance, hopelessly complex. Imagine you are faced with calculating the value of this product:

P=∏n=1∞(1−x4n4)P = \prod_{n=1}^\infty \left(1 - \frac{x^4}{n^4}\right)P=n=1∏∞​(1−n4x4​)

Where would one even begin? The terms get closer and closer to 1, so the product converges, but to what? The path forward comes from a simple algebraic trick: the difference of squares. We can write each term as:

(1−x4n4)=(1−x2n2)(1+x2n2)\left(1 - \frac{x^4}{n^4}\right) = \left(1 - \frac{x^2}{n^2}\right) \left(1 + \frac{x^2}{n^2}\right)(1−n4x4​)=(1−n2x2​)(1+n2x2​)

This splits our formidable product into two more manageable pieces. The first part, ∏(1−x2/n2)\prod (1 - x^2/n^2)∏(1−x2/n2), is immediately recognizable. It is just the product for sin⁡(πx)/(πx)\sin(\pi x) / (\pi x)sin(πx)/(πx)! But what about the second part, ∏(1+x2/n2)\prod (1 + x^2/n^2)∏(1+x2/n2)? This looks new. Here, we take a bold leap of imagination, a leap that is the heart of complex analysis. What if we take the sine product formula, which we know works for any complex number zzz, and we feed it a purely imaginary number, z=ixz = ixz=ix? The term z2/n2z^2/n^2z2/n2 becomes (ix)2/n2=−x2/n2(ix)^2/n^2 = -x^2/n^2(ix)2/n2=−x2/n2. The product becomes:

∏n=1∞(1−(ix)2n2)=∏n=1∞(1+x2n2)\prod_{n=1}^\infty \left(1 - \frac{(ix)^2}{n^2}\right) = \prod_{n=1}^\infty \left(1 + \frac{x^2}{n^2}\right)n=1∏∞​(1−n2(ix)2​)=n=1∏∞​(1+n2x2​)

This is exactly the second piece of our puzzle! And what is the left side of the equation? It's sin⁡(πix)/(πix)\sin(\pi ix) / (\pi ix)sin(πix)/(πix). Using the beautiful identity sin⁡(iy)=isinh⁡(y)\sin(iy) = i\sinh(y)sin(iy)=isinh(y), which connects trigonometry to its hyperbolic counterpart, this simplifies to sinh⁡(πx)/(πx)\sinh(\pi x) / (\pi x)sinh(πx)/(πx). By combining these two results, we arrive at the final, elegant answer: the seemingly intractable product is nothing other than sin⁡(πx)sinh⁡(πx)(πx)2\frac{\sin(\pi x)\sinh(\pi x)}{(\pi x)^2}(πx)2sin(πx)sinh(πx)​. This journey reveals a hidden, profound unity between trigonometric functions, hyperbolic functions, and infinite products, a connection forged in the fires of complex numbers.

This is not an isolated trick. Another "master key" for evaluating products is the Gamma function, Γ(z)\Gamma(z)Γ(z), which extends the factorial to all complex numbers. It, too, has an infinite product representation. This allows us to evaluate whole families of products whose terms are rational functions of the index nnn, expressing them compactly in terms of this most fundamental of special functions.

A Bridge to Number Theory: The Secrets of the Primes

Perhaps the most profound application of infinite products lies in a field that seems worlds away from continuous functions: the study of whole numbers. Number theory is the land of primes, the indivisible atoms of our number system. In the 18th century, Leonhard Euler made a discovery that forever linked the continuous world of analysis to the discrete world of primes. He showed that the sum of the reciprocals of the powers of the integers—the Riemann zeta function, ζ(s)\zeta(s)ζ(s)—could be written as an infinite product over only the prime numbers.

ζ(s)=∑n=1∞1ns=∏p is prime11−p−s\zeta(s) = \sum_{n=1}^\infty \frac{1}{n^s} = \prod_{p \text{ is prime}} \frac{1}{1-p^{-s}}ζ(s)=n=1∑∞​ns1​=p is prime∏​1−p−s1​

This identity is not just a formula; it is the Fundamental Theorem of Arithmetic in disguise. When you expand the product on the right side, each term 11−p−s\frac{1}{1-p^{-s}}1−p−s1​ becomes a geometric series 1+p−s+p−2s+…1 + p^{-s} + p^{-2s} + \dots1+p−s+p−2s+…. Multiplying these series for all primes—say, for p=2,3,5,…p=2, 3, 5, \dotsp=2,3,5,…—generates a sum. A typical term in this sum is formed by picking one element from each series, such as (2−s)a1(3−s)a2(5−s)a3…(2^{-s})^{a_1} (3^{-s})^{a_2} (5^{-s})^{a_3} \dots(2−s)a1​(3−s)a2​(5−s)a3​…. This is precisely (p1a1p2a2p3a3… )−s(p_1^{a_1} p_2^{a_2} p_3^{a_3} \dots)^{-s}(p1a1​​p2a2​​p3a3​​…)−s. The Fundamental Theorem of Arithmetic tells us that every integer nnn has exactly one such prime factorization. Therefore, every term n−sn^{-s}n−s appears exactly once in the expanded product. The sum is the zeta function.

This Euler product is an incredibly powerful tool. For instance, if we want to study properties of odd primes, we can simply take the full Euler product for ζ(s)\zeta(s)ζ(s) and multiply it by the one factor it's missing—the factor for the prime 222. This immediately gives us a closed-form expression for the product over all odd primes, providing a way to analytically "sieve" for primes with certain properties. The failure of such a product to exist in number systems without unique factorization underscores how special this connection is, a specialty restored by the deeper theory of ideals.

The true magic, however, comes when we turn this connection on its head. Can we use infinite products to learn about the zeta function? Indeed, we can. The values of ζ(s)\zeta(s)ζ(s) at even integers, like ζ(2),ζ(4),…\zeta(2), \zeta(4), \dotsζ(2),ζ(4),…, were a great mystery until Euler came along. One modern way to find them uses the very first product we saw, the one for sin⁡(πz)\sin(\pi z)sin(πz). Or even better, let's use the one we just evaluated, for sin⁡(πx)sinh⁡(πx)(πx)2\frac{\sin(\pi x)\sinh(\pi x)}{(\pi x)^2}(πx)2sin(πx)sinh(πx)​, which we know is equal to ∏(1−x4/n4)\prod (1-x^4/n^4)∏(1−x4/n4). We have two different representations for the same function. One is an infinite product. If we expand this product, we get a power series in xxx whose coefficients are sums involving ∑1/n4\sum 1/n^4∑1/n4, ∑1/n8\sum 1/n^8∑1/n8, and so on—the very zeta values we seek! The other representation is as a combination of sine and hyperbolic sine. We can find the power series for this form using standard calculus. Since the two power series must be identical, we can simply equate the coefficients term by term to solve for ζ(4)\zeta(4)ζ(4), ζ(8)\zeta(8)ζ(8), and all the other values of ζ(4k)\zeta(4k)ζ(4k) in terms of powers of π\piπ. It's a spectacular triumph of intellectual synthesis, linking trigonometry, Taylor series, and the deepest constants of number theory in one beautiful argument.

Finally, these products serve as an "analytic microscope." The product form ∏(1−z/zn)\prod (1-z/z_n)∏(1−z/zn​) tells you a function's zeros. The reciprocal, 1/∏(1−z/zn)1/\prod (1-z/z_n)1/∏(1−z/zn​), therefore, has its poles—its infinite singularities—at precisely those locations znz_nzn​. Knowing the location and nature of these poles is the key to one of the most powerful computational tools in physics and engineering: the residue theorem. Infinite products thus provide a direct map to the most important features of a function's landscape in the complex plane.

From building new functions to evaluating enigmatic constants, and from revealing the secrets of prime numbers to mapping the very anatomy of functions, the theory of infinite products is a testament to the interconnectedness and utility of mathematical ideas. It is a simple concept that, once understood, unlocks doors to entire new worlds.