Velocity After Collision

How To Find Velocity After Collision

10 min read

How to Find Velocity After Collision: The Complete Guide

Ever watched a billiard ball hit another and wondered, “What’s its speed after the hit?” Most people get the right answer by instinct, but the math behind it is a neat trick that can save you a lot of guesswork—whether you’re a physics student, a hobbyist tinkering with model rockets, or just curious about how the world works.


What Is Velocity After Collision?

In everyday terms, velocity after a collision is simply the speed and direction that a moving object has once it’s finished bumping into something else. It’s not just about how fast it was going before; the collision can change that speed, slow it down, or even reverse its direction. The key is that the collision is a brief interaction where forces act over a short time, exchanging momentum between the objects involved.

When you’re dealing with two bodies—say, a ball and a wall or two cars—you’re looking at a system where momentum is conserved. That means the total momentum before the collision equals the total momentum after, assuming no external forces. But that’s only part of the story. To pin down the exact* post‑collision velocity, you often need another piece of information: the coefficient of restitution, which tells you how “bouncy” the collision is.


Why It Matters / Why People Care

Knowing the velocity after a collision isn’t just academic. It shows up in:

  • Car safety testing – engineers predict how vehicles will behave in crashes.
  • Sports analytics – coaches analyze ball speed after a hit to tweak techniques.
  • Robotics – robots that collide with objects must anticipate post‑collision motion to avoid damage.
  • Space missions – spacecraft docking or asteroid deflection rely on precise velocity calculations.

When you ignore the post‑collision velocity, you risk underestimating forces, overestimating safety margins, or simply missing out on a better design.


How It Works (or How to Do It)

1. Identify the System and the Collision Type

First, decide if the collision is:

  • Elastic – total kinetic energy stays the same. Think of a perfectly elastic ball hitting a wall that doesn’t absorb energy.
  • Inelastic – some kinetic energy turns into heat, sound, or deformation. Most real‑world collisions fall here.
  • Perfectly inelastic – the objects stick together after the hit.

Each type uses a different formula for post‑collision velocity.

2. Apply Conservation of Momentum

Momentum is a vector: it has magnitude (speed) and direction. The basic conservation equation for two objects (1 and 2) is:

m1 * v1_initial + m2 * v2_initial = m1 * v1_final + m2 * v2_final
  • m = mass
  • v_initial = velocity before collision
  • v_final = velocity after collision

If one object is stationary (common in many problems), its initial velocity is zero, simplifying the equation.

3. Bring in the Coefficient of Restitution (e)

For non‑perfectly inelastic collisions, you need e, which ranges from 0 (perfectly inelastic) to 1 (perfectly elastic). It’s defined as:

e = (relative speed after) / (relative speed before)

In one dimension, that becomes:

e = (v2_final - v1_final) / (v1_initial - v2_initial)

Notice the order: the faster object is usually the one that’s ahead in the numerator.

4. Solve the Two Equations

You now have two equations:

  1. Momentum conservation
  2. Coefficient of restitution

With two unknowns (v1_final and v2_final), you can solve simultaneously. For a simple one‑dimensional case, the formulas simplify to:

v1_final = ( (m1 - e * m2) * v1_initial + (1 + e) * m2 * v2_initial ) / (m1 + m2)
v2_final = ( (m2 - e * m1) * v2_initial + (1 + e) * m1 * v1_initial ) / (m1 + m2)

If one object is stationary (v2_initial = 0), the equations reduce further.

5. Check Direction and Units

Make sure you keep track of direction. In one‑dimensional problems, assign a positive or negative sign based on the chosen axis. Also, confirm units—if masses are in kilograms and velocities in meters per second, your momentum will be in kg·m/s.


Common Mistakes / What Most People Get Wrong

  • Mixing up the coefficient of restitution sign – Some people forget that e is always positive, but the relative speed after can be negative if the objects rebound in the opposite direction. The formula takes care of that, but mis‑applying the sign leads to nonsense results.
  • Assuming kinetic energy is always conserved – That only happens in elastic collisions. Most real collisions lose energy to heat, sound, or deformation.
  • Ignoring direction – Treating velocities as scalars can double‑count or cancel incorrectly. Always keep a sign convention.
  • Using the wrong masses – In a collision with a wall, the wall’s mass is effectively infinite. Treat it as stationary with a huge mass, or simply set its final velocity to zero and adjust the equations accordingly.
  • Forgetting to convert units – Mixing meters and feet, or kilograms and pounds, will throw off the entire calculation.

Practical Tips / What Actually Works

  1. Sketch the Scenario – Draw a quick diagram with arrows for velocities and masses. Visual cues help avoid sign errors.
  2. Choose a Consistent Axis – Pick one direction as positive (e.g., rightward). Stick with it throughout.
  3. Use Symbolic Variables – Write the equations in terms of m1, m2, v1, v2, e. Plug numbers only at the end.
  4. Check Limits – If e = 1, your formulas should reduce to the elastic collision case. If e = 0, you should get a perfectly inelastic result where the two objects move together.
  5. Validate with a Simple Example – Test your equations with a known case, like a 1 kg ball hitting a 2 kg ball at 5 m/s. The math should match a textbook answer.
  6. Use a Calculator or Spreadsheet – For more complex systems (more than two objects), set up a matrix of equations and let software solve it.

FAQ

Q1: How do I find the coefficient of restitution if I only have pre‑ and post‑collision velocities?
A1: Rearrange the definition: e = (v2_final - v1_final) / (v1_initial - v2_initial). Plug in the numbers you measured.

If you found this helpful, you might also enjoy what is the difference between transcription and translation or 20 is 25 percent of what.

Q2: What if the collision is two‑dimensional?
A2: Break each velocity into x and y components. Apply conservation of momentum separately in each direction, and use the coefficient of restitution for the component along the line of impact.

**Q3: Can I ignore the

Can I ignore the effect of gravity (or any other external force) during the collision itself?
In most impact problems the collision interval is extremely brief—typically on the order of milliseconds or less. Over such a short time the impulse delivered by gravity ( (F_g\Delta t = mg\Delta t) ) is negligible compared with the large internal forces that arise when the bodies deform and rebound. Because of this, for the purpose of applying momentum conservation and the restitution law, you can treat the system as isolated during the impact. Just remember to re‑introduce gravity afterward if you need to compute the subsequent trajectory of the separated objects.


Quick‑Reference Checklist

Step Action Why it matters
1 Define a positive axis and keep it fixed Prevents sign flips when writing momentum equations
2 Write momentum conservation: (\displaystyle m_1v_{1i}+m_2v_{2i}=m_1v_{1f}+m_2v_{2f}) Core principle for any isolated collision
3 Write restitution: (\displaystyle e = \frac{v_{2f}-v_{1f}}{v_{1i}-v_{2i}}) Encodes how “bouncy” the impact is
4 Solve the two linear equations for (v_{1f}, v_{2f}) Gives the post‑collision velocities
5 Check limits: (e=1) → elastic, (e=0) → perfectly inelastic Confirms algebraic correctness
6 Verify units: if (m) is in kg and (v) in m/s, then momentum (p=mv) is in kg·m/s Guarantees dimensional consistency
7 If needed, add external impulses after the collision (e.g., gravity, friction) Completes the motion analysis beyond the impact instant

Example: Two‑Dimensional Glancing Collision

Suppose a 0.Rotate coordinates so that the x′‑axis aligns with the line of impact.
Day to day, 464) m/s,
(v_{2i,x'} = 0). 30 kg puck. 15 kg puck moving at 4 m/s along the +x‑axis strikes a stationary 0.Worth adding: - Initial velocities in the x′‑direction:
(v_{1i,x'} = 4\cos30° = 3. 6.The line of impact is at 30° to the +x‑axis, and the measured coefficient of restitution is 0.1. - The y′‑components are unchanged by the impact because there is no impulse perpendicular to the line of impact (assuming smooth surfaces).

  1. Apply 1‑D formulas along x′:
    [ \begin{aligned} m_1v_{1i,x'}+m_2v_{2i,x'} &= m_1v_{1f,x'}+m_2v_{2f,x'}\ e &= \frac{v_{2f,x'}-v_{1f,x'}}{v_{1i,x'}-v_{2i,x'}} \end{aligned} ] Solving yields (v_{1f,x'}≈1.15) m/s and (v_{2f,x'}≈2.31) m/s.

  2. Transform back to the lab frame:

    • (v_{1f} = (v_{1f,x'}\cos30° - v_{1f,y'}\sin30°,, v_{1f,x'}\sin30° + v_{1f,y'}\cos30°))
    • Since (v_{1f,y'} = v_{1i,y'} = -4\sin30° = -2.0) m/s (unchanged), we get
      (v_{1f} ≈ (0.0,, -2.0)) m/s (the first puck essentially stops moving forward and slides sideways).
    • Similarly, (v_{2

Completing the Glancing‑Collision Calculation

The second puck’s post‑impact velocity components are obtained in the same way:

[ \begin{aligned} v_{2f,x'} &= 2.31;\text{m s}^{-1},\ v_{2f,y'} &= v_{2i,y'} = 0;\text{m s}^{-1}. \end{aligned} ]

Transforming back to the laboratory frame (rotating by +30°) gives

[ \begin{aligned} v_{2f,x} &= v_{2f,x'}\cos30^\circ - v_{2f,y'}\sin30^\circ = 2.00;\text{m s}^{-1},\[4pt] v_{2f,y} &= v_{2f,x'}\sin30^\circ + v_{2f,y'}\cos30^\circ = 2.On the flip side, 31\cos30^\circ \approx 2. On the flip side, 31\sin30^\circ \approx 1. 15;\text{m s}^{-1}.

Thus the initially stationary puck departs with a speed of

[ | \mathbf v_{2f} | = \sqrt{(2.00)^2 + (1.15)^2};\text{m s}^{-1} \approx 2.

moving at an angle of

[ \theta = \tan^{-1}!\left(\frac{1.15}{2.00}\right) \approx 30^\circ ]

above the original direction of the incident puck.

The first puck’s final velocity components are

[ \begin{aligned} v_{1f,x'} &= 1.15;\text{m s}^{-1},\ v_{1f,y'} &= -2.00;\text{m s}^{-1}, \end{aligned} ]

which, after undoing the rotation, become

[ \begin{aligned} v_{1f,x} &= 1.So 15\cos30^\circ - (-2. 00)\sin30^\circ \approx 0.Here's the thing — 00;\text{m s}^{-1},\ v_{1f,y} &= 1. 15\sin30^\circ + (-2.00)\cos30^\circ \approx -2.00;\text{m s}^{-1}.

Put another way, the moving puck comes to a near‑stop in the forward direction and slides sideways with essentially the same transverse speed it had before the impact.


Energy Check

The coefficient of restitution (e = 0.6) tells us the collision is partially inelastic. The kinetic‑energy ratio after the impact is

[ \frac{K_f}{K_i} = \frac{\tfrac12 m_1 v_{1f}^2 + \tfrac12 m_2 v_{2f}^2} {\tfrac12 m_1 v_{1i}^2 + \tfrac12 m_2 v_{2i}^2} \approx \frac{0.5(0.Even so, 15)(2. 00^2) + 0.Practically speaking, 5(0. 30)(2.30^2)} {0.Which means 5(0. 15)(4.00^2)} \approx 0.

so about 22 % of the initial kinetic energy is dissipated as heat, sound, or deformation — exactly what a modest (e) predicts.


Adding External Impulses After the Collision

If we now wish to predict the subsequent trajectories, we must re‑introduce any forces that act after the instant of contact. Gravity, for example, exerts an impulse ( \mathbf J_g = m \mathbf g ,\Delta t ) during the short time (\Delta t) before the pucks leave the playing surface. Because the impulse is the same for both objects (they share the same (\Delta t)), we can treat it as an additional term in the momentum balance:

[ \mathbf p_{\text{final}} = \mathbf p_{\text{post‑impact}} + \mathbf J_g . ]

In practice, one adds (\mathbf g,\Delta t) to each velocity component (or integrates the acceleration over the desired time step) to obtain the velocities that govern the post‑collision motion.


Conclusion

The momentum‑conservation and restitution equations provide a compact, algebraically tractable framework for analysing collisions, whether they are head‑on, oblique, or involve multiple bodies. By:

  1. Selecting a fixed axis and writing the scalar momentum balance,
  2. Introducing the restitution relation to capture the “bounciness” of the impact,
  3. Sol

ving for the unknown final velocities using a system of linear equations,

  1. and verifying the results through energy dissipation checks,

we can accurately model the complex dynamics of real-world physical interactions. This systematic approach ensures that even when external forces or non-ideal material properties are introduced, the underlying physics remains consistent and predictable. Understanding these fundamental principles is essential for engineering everything from high-speed sports equipment to complex mechanical systems in industrial robotics.

Just Came Out

The Latest

Handpicked

Based on What You Read

Thank you for reading about How To Find Velocity After Collision. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
SD

sdcenter

Staff writer at sdcenter.org. We publish practical guides and insights to help you stay informed and make better decisions.

Share This Article

X Facebook WhatsApp
⌂ Back to Home