Homework 2 - Bisection Method
Due Date: September 19, 2023
Report all answers to 8 decimal places. If you are asked to prove a statement and you use a theorem from class then state what the theorem is.
Problems
- Use the bisection method to find an approximation
to the zero of the function on the interval such that . Show all your steps on how you arrived at and what the intervals are. How many iterations of the Bisection method were necessary and what is ? (In this question, you are not asked to use Python to implement the Bisection method but rather to implement the method by hand and calculator.) - The growth of a certain population can be modeled via the function
where is the size of the population at time , is the initial size of the population, is the birth rate of the population, and is the rate of immigration. Suppose that , , and . Use your Python bisection method to find an approximation to the birth rate such that . Once you find , use it to compute the value and compare it to 1564000. - Let
and . Use your Python bisection method to find an approximation to the point where the graphs of and intersect. Find so that . - Let
for .- Use the
matplotlib
module to plot on the interval . Label the -axis of your plot and give it a title. Print and include your plot in your submission. (Hint: See the Python code below on how to make a basic plot.) - From your plot, notice that
has a minimum in the interval . Use your Python bisection method to find an approximation to the minimum point of in .
and are the hyperbolic cosine and sine function, respectively, and thenumpy
module has built-in functions to evaluate and .import numpy as np import matplotlib.pyplot as plt #%% Basic plot N = 200 t = np.linspace(-2 * np.pi, 2 * np.pi, N) y = np.sin(t) plt.plot(t, y) plt.xlabel('time (s)') plt.ylabel('voltage (mV)') plt.title('Sine function') plt.grid(True) plt.savefig("sin_plot.pdf") #plt.show() #%% Two plots together x1 = np.linspace(0.0, 5.0) x2 = np.linspace(0.0, 2.0) y1 = np.cos(2 * np.pi * x1) * np.exp(-x1) y2 = np.cos(2 * np.pi * x2) plt.subplot(2, 1, 1) plt.plot(x1, y1, 'ko-') plt.title('Two plots') plt.ylabel('Damped oscillation') plt.subplot(2, 1, 2) plt.plot(x2, y2, 'r.-') plt.xlabel('time (s)') plt.ylabel('Undamped') #%% Something interesting: Floating-point precision x = 0.1 y = 0.2 z = 0.3 x + y == z print('0.1 = {:.17f}'.format(x)) print('0.2 = {:.17f}'.format(y)) print('0.3 = {:.17f}'.format(z)) print('0.1 + 0.2 = {:.17f}'.format(x+y)) np.round(x + y, decimals=8) == np.round(z, decimals=8)
- Use the
- Let
for .- Prove that
has a zero in the interval . - Find
such that for all , and thus proving that is Lipschitz. (Hint: Use theorems from class.) - Based on your
, analytically find such that , where is the th term of the sequence generated by the Bisection method on the interval . - For
, use your Python bisection method to find such that .
- Prove that