{Introduction} This project computes π, the ratio of a circle's circumference to its diameter. It does so by summing the multiplicative inverses, or reciprocals, of all the square numbers, which can be represented as \sum_{n=1}^{\infty}\frac{1}{n^2}, equal to \frac{\pi^2}{6}. It then multiplies that number by 6 and takes the square root of THAT number, to end up with π. {Instructions} None