Stetson University Program Help Simple Coding Exam Practice I have a program and I need help, let it be simple coding please and I have all instruction in the file. Chapter 7: Program 5 – Approximation to π
CSCI111: Introduction to Computing
Assigned: Friday, April 3, 2020
Due: Friday, April 10, 2020 at midnight on Blackboard
Consider the following function.
1
π
where a(k) =
=
√
2 2
(a(0) + a(1) + a(2) + . . .)
9801
(4k)!(1103 + 26390k)
.
(k!)4 3964k
This gives
√ ∞
1
2 2 X (4k)!(1103 + 26390k)
.
=
π
9801
(k!)4 3964k
k=0
The notation n! indicates a factorial. In general n! = n(n − 1)(n − 2) · · · (2)(1) and 0! = 1 by definition. Python computes factorials by using a function from the math library. So, for example, 5! =
math.factorial(5). So you will need to import math in your program.
Requirements for this program are as follows:
1. Your program must include a comment header with Author, Assignment (Program 5), Description,
and Due Date
2. Write a function to compute a general term in the sum. The function should allow an integer argu(4k)!(1103 + 26390k)
ment, k. Call the function A and it should return the value given by:A(k) =
(k!)4 3964k
3. Write a function called pi recip. The function should use a while loop to sum the terms, (A), until
√
2 2
the last term of the sum is less than 10−15 . Once the sum is done, it should be multiplied by 9801
.
4. Use the result of pi recip to get an approximation for π.
5. Print with clear explanation the computed estimate of π and Python’s version of π which is math.pi.
6. Your program that you submit must be a script in a file named program5 WillM.py where you
replace WillM with your first name and last initial.
7. Submit just that program on Blackboard under Chapter 7, Program 5.
Purchase answer to see full
attachment
Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.
You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.
Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.
Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.