- #1
GemmaT
- 1
- 0
I'm currently developing a program which solves the displacement of an object using the standard acceleration equation [d=i*t + 0.5*a*t^2], where i=initial velocity, t=time and a=acceleration.
As the need has arisen to determine the time at which an object reaches a particular displacement (collision detection), I am currently using the equation [t = (sqrt(i^2 + 2ad) - i) / a] in order to solve for t.
The problem is, I cannot for the life of me see how the second equation is derived from the first using standard algebraic manipulations. Whilst my program operates correctly using the aforementioned equations, it would be nice if someone could explain the manipulations involved in order to procure this derivation.
Gemma.
As the need has arisen to determine the time at which an object reaches a particular displacement (collision detection), I am currently using the equation [t = (sqrt(i^2 + 2ad) - i) / a] in order to solve for t.
The problem is, I cannot for the life of me see how the second equation is derived from the first using standard algebraic manipulations. Whilst my program operates correctly using the aforementioned equations, it would be nice if someone could explain the manipulations involved in order to procure this derivation.
Gemma.