I have an exercise that reads; You jump from a 10-meter-high tower, calculate the time needed and the velocity just before I touch the ground, regardless of the mass of the body falling.
I've already solved it, but I need help. In the class we learn about calculus, therefore I tried to use it in order to calculate the time and velocity. The thing I don't understand is why calculus and not using the first method written below?
My solution without calculus:
$$ g = v / t = 10 m/s^2$$ $$v = d / t$$ $$ => g = d / t^2 $$ $$ t^2 = d / g $$ $$ t^2 = 10/10 $$ $$ => t = 1 s $$ $$ v = d / t = 10 / 1 = 10 m/s $$
With calculus:
$$ v = Δd / Δt $$ $$ g = v / t => g = Δd / Δt * t $$ $$ Δd = g * t * Δt $$ $$ Δd = \int_{0}^{t} 10 × t × Δt => 10 \int_{0}^{t} t × Δt$$
$$10 × ½ t² => t = √2 $$
thanks in advance