Question: The value ex can be approximated by the sum 1 + x + x2/2! + x3/3! + ... + xn/n! Write a program that takes

The value ex can be approximated by the sum

1 + x + x2/2! + x3/3! + ... + xn/n!

Write a program that takes a value x as input and outputs this sum for n taken to be each of the values 1 to 100. The program should also output ex calculated using the predefined function exp. The function exp is a predefined function such that exp(x) returns an approximation to the value ex. The function exp is in the library with the header file cmath. Your program should repeat the calculation for new values of x until the user says she or he is through. use variables of type double to store the factorials or you are likely to produce integer overflow (or arrange your calculation to avoid any direct calculation of factorials). 100 lines of output might not fit comfortably on your screen. output the 100 output values in a format that will fit all 100 values on the screen. For example, you might output 10 lines with 10 values on each line.

In this question,

Do NOT use the cmath library except to verify the result of your cacluations

Do NOT use pow( )

Use the values of the numerator and denominator of the previous term to calculate the numerator and denominator of the current term.

Set precision to 5 significant digits

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!