
Jake Z. answered 05/05/19
Experienced TA/Tutor for Computer Science & Programming Skills
So to solve this problem, you're going to want to find the value of t at the moment the arrow hits the ground. It hits the ground once the height of the arrow is 0 (in other words it is 0 feet above the ground AKA on the ground). This yields the equation 0 = -16t2 + 80t + 80
From here we can divide both sides by 16 to get:
0 = -t2 + 5t + 5
and then we can plug this into the quadratic equation to get
t = (-5 ±√(45))/-2
One of these 2 answers is negative, so we can exclude it because it's impossible to have a negative time elapsed, and the other is 5.854 seconds, which we then round to 5.9 seconds.
Hope this helped!