Question 23 - Problems - Chapter 2¶
Problem:¶
The position of a runner is given by $x = 4.0t-0.50t^2$, where x is in meters and t is in seconds.
Question:¶
What is the average speed between t = 0 and t = 8.0 s?
(Hint: Find the maximum value of x to determine each of the outward and backward distances.)
Solution:¶
The runner's trajectory is described by a parabola. He thus travels back and forth in distance.
The factor of t squared is negative so the top of the parabola points upwards.
We can determine the furthest distance the runner travels when the derivative of the distance is zero.
$$
\frac{dx}{dt}=\frac{d}{dt}(-0.5t^2+4t)
$$
We find the turn aroud point by solving for speed = 0
$$
\implies-0.5x2t+4=0
$$
$$
\implies t=\frac{-4}{-1}
$$
$$
\implies t = 4
$$
We could also let Python do the derivative using the Sympy (Symbolic Python) library. by mean of excersice we will do this here.