Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

3 revisited (10 points) In Assignment 1, you used the Gregory formula to compute an approximation of . Here, you will use Ramanujans series, discovered

3 revisited (10 points) In Assignment 1, you used the Gregory formula to compute an approximation of . Here, you will use Ramanujans series, discovered in 1910. It converges much faster than Gregorys, and has been used to calculate to billions of digits. Implement Ramanujan.java exactly like Gregory.java, taking a number n specified by the user on the command line and calculating using the first n terms of the Ramanujan series. The program should print this approximate value of , as well as the percentage error between this value and the one provided by Java in the constant Math.PI. Ramanujans series: 1 = 2 2 9801 P k=0 (4k)!(1103+26390k) (k!)43964k Notice that this formula makes use of the factorial function. Call your Factorial.calculate method from Problem 1. Extra credit: Look at the Java API definitions of BigDecimal and BigInteger. Rework your Factorial and Ramanujan code (call the classes something else, like RamanujanBig, so that you dont overwrite your regular-credit work) to use these instead, and calculate to 100 digits or more. Note that, in order for the terms to be perfectly accurate, you also need a BigDecimal representation of 2. There is unfortunately no native library support for calculating this; however, you can implement it yourself using a BigDecimal version of the evaluate method you will write in Problem 6. You will get a little extra credit simply by explaining (in comments in your Ramanujan code) how BigDecimal and BigInteger differ from ordinary doubles and ints, and why the latter are insufficient for calculating very precise values of .

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional IPhone And IPad Database Application Programming

Authors: Patrick Alessi

1st Edition

0470636173, 978-0470636176

Students also viewed these Databases questions