Dec 03, 2024 | 428 words | 4 min read
13.2.3. Task 3#
Introduction#
Recall from Section 7.2.3 that a Maclaurin series is an \(n^\text{th}\) degree polynomial that can be used to approximate a function around \(x = 0\). The exponential function, \(e^x\), can be approximated as follows:
Where the infinite series approximation converges with the actual function over all real numbers. Practically, for a finite approximation, the fewer terms that are used, the less accurate the approximation will be, particularly as \(x\) gets further from \(0\).
Part A#
Open up MATLAB and type
edit
in the Command Window. Then save your file as ma2_team_3_a_teamnumber.m. Make sure to use the MATLAB Template (ENGR133_MATLAB_Template.m
).Using the factorial function in MATLAB, write a program that uses the Maclaurin series (above) to approximate \(e^x\) with specific values of \(n\) and \(x\). The program will need to ask the user to input \(n\) and \(x\) (in this order). The program should also display the percent error of the error value with respect to a calculation of the actual value. See the example output in Sample Output below.
Publish your script as ma2_team_3_a_teamnumber.pdf
Note
You may want to revisit your flowchart created in Section 7.2.3 and make notes of changes that need to be made for MATLAB. You do not have to turn in a flowchart for this task.
Sample Output#
Use the values in Table 13.4 below to test your program.
Case |
\(n\) |
\(x\) |
---|---|---|
1 |
5 |
3 |
Ensure your program’s output matches the provided samples exactly. This includes all characters, white space, and punctuation. In the samples, user input is highlighted like this for clarity, but your program should not highlight user input in this way.
Case 1 Sample Output
>> ma2_team_3_a_teamnumber What is the n value? 5 What is the x value? 3 Approximate value: 18.40 Actual value: 20.09 Error: -8.4%
Part B#
Open up MATLAB and type
edit
in the Command Window. Then save your file as ma2_team_3_b_teamnumber.m. Make sure to use the MATLAB Template (ENGR133_MATLAB_Template.m
).Write a program that will generate as many terms as necessary to approximate the function to a specified level of accuracy (below a percent error threshold) at a specified value of \(x\). The program will need to ask the user to input \(x\) and the target error threshold (in this order). The program should also display the number of terms the series must contain before the target accuracy is achieved. See the example output in Sample Output below.
Publish your script as ma2_team_3_b_teamnumber.pdf
Note
You may want to revisit your flowchart created in Section 7.2.3 and make notes of changes that need to be made for MATLAB. You do not have to turn in a flowchart for this task.
Sample Output#
Use the values in Table 13.5 below to test your program.
Case |
\(x\) |
Error |
---|---|---|
1 |
3 |
5 |
Ensure your program’s output matches the provided samples exactly. This includes all characters, white space, and punctuation. In the samples, user input is highlighted like this for clarity, but your program should not highlight user input in this way.
Case 1 Sample Output
>> ma2_team_3_b_teamnumber Enter the value of x: 3 Enter the target error threshold percentage: 5 Target error threshold: 5% Actual value: 20.09 Terms needed: 7 Approximate value: 19.41