Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The velocity v(t) of an object with mass m = 68.1 kg in free fall at time t is given by the following expression
The velocity v(t) of an object with mass m = 68.1 kg in free fall at time t is given by the following expression v(t) = mg (1-exp(-ct/m)) where g = 9.81m/s and the drag coefficient is c. At time t = 10 sec, the velocity of the object is measured as 40 m/s and we wish to use this mea- surement to estimate the value of the drag coefficient c. Note that c = 0 is a degenerate solution which is not useful in this case. (a) Write down an expression f(c) such that the solution of the equation f(c)=0 with respect to c yields an estimate of the value for the drag coefficient using the measurement made above. [10 marks] c=u. (b) Describe the method of bisection for finding the roots of a function f(x). Why is this called a 'bracketing' method? [10 marks] (c) Write a snippet of code in the Matlab language that implements the method of bisection for solving f(c) = 0 above. Use variables c_u, c_1 to indicate the upper and lower bounds, respectively, for the estimate of the root. Initialise the bracket using values c_u = 16 and c_1 = 14 and terminate your iterations when cua| 0.01. You can assume that the function myfunc (u) returns the value of your function f(c) above at [10 marks]
Step by Step Solution
★★★★★
3.50 Rating (167 Votes )
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started