Article 4ADCJ An infinite product challenge

An infinite product challenge

by
John
from John D. Cook on (#4ADCJ)

Gil Kalai wrote a blog post yesterday entitled "Test Your Intuition (or knowledge, or programming skills) 36." The challenge is to evaluate the infinite product

gil_kalai_prod.svg

I imagine there's an elegant analytical solution, but since the title suggested that programming might suffice, I decided to try a little Python. I used primerange from SymPy to generate the list of primes up to 200, and cumprod from NumPy to generate the list of partial products.

 cumprod( [(p*p+1)/(p*p-1) for p in primerange(1,200)] )

Apparently the product converges to 5/2, and a plot suggests that it converges very quickly.

gilkalai1.svg

Here's another plot to look more closely at the rate of convergence. Here we look at the difference between 5/2 and the partial products, on a log scale, for primes less than 2000.

gilkalai2.svg

A083gT4zj3s
External Content
Source RSS or Atom Feed
Feed Location http://feeds.feedburner.com/TheEndeavour?format=xml
Feed Title John D. Cook
Feed Link https://www.johndcook.com/blog
Reply 0 comments