There are other calculations for Pi which work in a similar manner. A more complex series was devised by the Indian mathematician Ramanujan which calculates Pi very accurately but which needs knowledge of some more functions in Excel. This series is implemented more as a mechanical exercise in Excel rather than as a lesson in understanding Ramanujan's mathematics! The Ramanujan series uses factorials which are calculated in Excel using the FACT() function. FACT(4) returns 24, that is 4 x 3 x 2 x 1. The mathematical notation for factorial is '!'.)
The Ramanujan series is as follows:
<
This looks forbidding but
if we break it down carefully in a spreadsheet we can show how it works. We
proceed as follows:
Find the square root of 8 in cell B2 and then divide it by 9801 in cell B3.
Create a sequence 0..6 in the A column
Calculate 4n! in B6
Calculate n!^4 in C6
Calculate (4n!) / (n!^4) in D6
Calculate 26390 x 26390n in E6
Calculate 396 ^ 4n in F6
Calculate (26390 x 26390n) / (396 ^ 4n) in G6
Multiply the terms in D6 and G6 in H6
Select cells B6 to H6 and use the copy marker to apply the formulae to rows underneath
Put the sum of the values in the H column in E2
In G2 multiply the total in E2 by the value in B3 (SQRT(8)/9801)
In E3 find 1/G2 which provides the estimation of Pi
For comparison copy the value of Pi from Excel's function PI() into G3
Use the Back Button to Return to the previous page