Equation for height as a function of time under gravity

  • Context: Undergrad 
  • Thread starter Thread starter nhmllr
  • Start date Start date
  • Tags Tags
    Function Gravity
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 11K views
nhmllr
Messages
183
Reaction score
1
If I were to create a function for height affected by gravity (as a function of time) would it be
height = initial upwards velocity * time - gravity * time2
OR
height = initial upwards velocity * time - 2 * gravity * time2
OR something else, and why?
I thought it would be the first one, but after trying to solve some problems, upon checking my work it seems like it would be the second one.
 
Last edited:
Physics news on Phys.org
Good answer. But it has small differences.
height = initial height + initial upward velocity * time - 0.5* gravity * time^2
where moving direction is the counter gravity direction.
 
Doc Al said:
Neither of those are correct. The correct expression would be:
height = initial upwards velocity * time - 0.5 * gravity * time2

(Review the https://www.physicsforums.com/showpost.php?p=905663&postcount=2".)

Ah. After reviewing my work, it turns out that I should have meant to divide by two instead of multiply.
In anycase, what is the reason behind that 1/2? What's it doing that makes it right? It probably has something to do with integrals, because it's in the t2 term, but what?
 
Last edited by a moderator:
nhmllr said:
It probably has something to do with integrals, because it's in the t2 term, but what?
The acceleration is constant. Integrating once gives the velocity:
v = v0 + at

A second integration gives the position:
x = x0 + v0t + 1/2at2

Setting x = height, x0 = 0, and a = -g, gives the equation you need:
h = v0t - 1/2gt2
 
Doc Al said:
The acceleration is constant. Integrating once gives the velocity:
v = v0 + at

A second integration gives the position:
x = x0 + v0t + 1/2at2

Setting x = height, x0 = 0, and a = -g, gives the equation you need:
h = v0t - 1/2gt2

Thanks, I get it now