Homework 3 - Fixed Point Iteration
Due Date: October 1, 2023
Problems
- Write a Python function to implement Fixed-Point iteration. The heading of your function should be:
wheredef FixedPointIter(g, p0, eps, Nmax = 10000):
is the input function, is the initial condition of the sequence,eps
is the tolerance, and is the maximum number of iterations. The syntax indicates that is an optional input and when an input value for is not given the default value of is used. Hence, valid calls toFixedPointIter
are
Include your Python code of your defined>> FixedPointIter(g, p0, eps) >> FixedPointIter(g, p0, eps, 20000) >> FixedPointIter(g, p0, eps, 50)
FixedPointIter
. - Apply the Fixed-Point Theorem to show that
has a unique fixed point on the interval . Use yourFixedPointIter
function to find such that where . - An object in free-fall is subject to the force of gravity and the force due to air resistance. The height
of an object of mass dropped from an initial height of is given by where ft/s is the acceleration of an object due to gravity and is the coefficient of air resistance. Suppose that , , and . Let be the time it takes for the object to hit the ground, that is, when .- Let
. Assuming that has a zero at , show that has a fixed point at . - Prove that the Fixed-Point theorem is applicable to
on the interval , and thus conclude that has a unique fixed point in the interval . - Let
be the sequence generated by fixed-point iteration using with initial condition . Use the corollary to the Fixed-Point Iteration theorem to estimate the minimum that guarantees with . - Use your
FixedPointIter
function to find such that . What is the actual ?
- Let
- Perform four iterations of Newton's method by hand for
with initial condition . Show all your work. - In this problem, you will approximate the fixed point of
from question (2) using Newton's method applied to the function . Clearly, a zero of is a fixed point of . Apply Newton's method, with initial condition , on the function and determine the minimum iteration of Newton's method that returns an approximation to the zero of with error bounded by where . Compare your results with those of Problem (2).