Hi Matt, here is the definition of function s
s[t_] := -5 t^2 + 150 t + 25;
The value of s(0) can be obtained as follows
s[0]
for subparagraph (c), we derive with respect to t the function s in the following way
D[s[t], t]
Subsequently resolvermos s' = 0 with the help of solve
Solve[150 - 10 t == 0, t]
and as you can see on your graph of the function s, the maximum height is reached within 15 seconds, verify it with the command plot
Plot[s[t], {t, 0, 30}]
I hope that my help serve you so that you may resolve the following exercises,