Numerical Analysis I

MATH 345 : Fall 2023

Department of Mathematics - SUNY Geneseo
⇐ Back

Homework 1 - Taylor's Theorem and Errors

Due Date: September 8, 2023

Upload

Problems

  1. Find the third-order Taylor polynomial P3(x) of the function f(x)=(x1)ln(x) at x0=1. Use P3(0.5) to approximate f(0.5). Find an upper bound for the error |f(0.5)P3(0.5)| using the remainder term R3(0.5) and compare the error to the actual error.
  2. Find the fourth-order Taylor polynomial P4(x) of the function f(x)=xex2 at x0=0. Use P4(0.1) to approximate f(0.1). Find an upper bound for the error |f(0.1)P4(0.1)| using the remainder term R4(0.1) and compare the error to the actual error.
  3. The number e=2.7182818284590451 can be defined as e=k=01k!. Let Pn=k=0n1k!. Use Python's math module to obtain the "true" value to the constant e.
    1. Compute the absolute and relative error in approximating e with P5.
    2. Compute the absolute and relative error in approximating e with P10.
    3. Write pseudocode for an algorithm that outputs the minimum positive integer N such that |ePN|<ε for a given ε>0.
    4. Write a Python script to find N if ε=1×102. What is N and what is your approximation PN? Print your Python script and include it with your assignment.
  4. Let f(x)=cos(x) and let Pn(x) be the nth order Taylor approximation of f centered at x0=0.
    1. Write pseudocode for an algorithm that outputs the minimum positive integer N such that |f(z)PN(z)|<ε for some given ε>0 and z. Your pseudocode should contain explicit steps on how the approximation PN(z) is computed, and thus you will need to know the general form of Pn(x).
    2. Write a Python script to determine N when z=9.4248 and ε=1×104. What is N? What is your approximation? Print your algorithm and include it with your assignment. Note that z3π.
    3. Repeat with z=15.7080 and ε=1×104. Note that z5π.