Question: Problem 1 ( 2 0 points ) Create a function to find roots using Bisection method. The function should take maximum iterations and maximum error

Problem 1(20 points)
Create a function to find roots using Bisection method. The function should take maximum
iterations and maximum error as input arguments. The function should check if maximum
iteration and maximum error is given as input arguments while calling the function. If not
defaults value of desired relative error should be 0.00001% and default value of maximum
iterations should be 50. The function should quit if either the relative error is less than the desired
relative error or iterations are greater than or equal to maximum iterations.
Use this function to determine the mass of the bungee jumper with a drag coefficient of 0.25
kgm to have a velocity of 36ms after 4 s of free fall. Note g=9.81ms2
The function to be evaluated is
f(m)=gmcd2tanh(gcdm2t)-v(t)
in MATLAB
Problem 1 ( 2 0 points ) Create a function to

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!