Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

The value e^x can be approximated by the sum 1 +X+(X^2)/2 + (X^3)/3...+X^n/n Wri

ID: 3626163 • Letter: T

Question

The value e^x can be approximated by the sum 1 +X+(X^2)/2 + (X^3)/3...+X^n/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 input e^x calculated using the predefined function exp. The function exp is a predefined function such that exp(x) returns an approx. to the value e^x. the function exp is in the library w/ the header file cmath. Your program should repeat the calculation for new values of x until the user says she/he is through. Use variables of type double to store the factorials or your are likely to produce integer flow (or arrange your calc 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.

Explanation / Answer

#include #include #include using namespace std; int main() { // Initialize variables int n; double x; double sum; double exp; // Sets the output to display up to 4 decimal places cout