Homework 1 - Taylor's Theorem and Errors
Due Date: September 8, 2023
Upload
Problems
- Find the third-order Taylor polynomial of the function at . Use to approximate . Find an upper bound for the error using the remainder term and compare the error to the actual error.
- Find the fourth-order Taylor polynomial of the function at . Use to approximate . Find an upper bound for the error using the remainder term and compare the error to the actual error.
- The number can be defined as . Let . Use Python's math module to obtain the "true" value to the constant .
- Compute the absolute and relative error in approximating with .
- Compute the absolute and relative error in approximating with .
- Write pseudocode for an algorithm that outputs the minimum positive integer such that for a given .
- Write a Python script to find if . What is and what is your approximation ? Print your Python script and include it with your assignment.
- Let and let be the th order Taylor approximation of centered at .
- Write pseudocode for an algorithm that outputs the minimum positive integer such that for some given and . Your pseudocode should contain explicit steps on how the approximation is computed, and thus you will need to know the general form of .
- Write a Python script to determine when and . What is ? What is your approximation? Print your algorithm and include it with your assignment. Note that .
- Repeat with and . Note that .