Collisions: Momentum, Energy, and the Coefficient of Restitution

simulator beginner ~8 min
Loading simulation...
p = 20 kg·m/s — conserved before and after

With m₁ = 2 kg at v₁ = 10 m/s hitting stationary m₂ = 5 kg elastically: v₁' = -4.29 m/s (bounces back), v₂' = 5.71 m/s (moves forward). Total momentum 20 kg·m/s is conserved exactly.

Formula

Conservation of momentum: m₁v₁ + m₂v₂ = m₁v₁' + m₂v₂'
Elastic final velocities: v₁' = ((m₁-m₂)*v₁ + 2*m₂*v₂)/(m₁+m₂)
KE lost in inelastic: ΔKE = 0.5*(m₁*m₂/(m₁+m₂))*Math.pow(v₁-v₂, 2)*(1-Math.pow(e, 2))

The Unbreakable Law: Conservation of Momentum

When two objects collide, something remarkable happens: no matter how complicated the collision — whether they bounce, shatter, or stick together — the total momentum before the collision equals the total momentum after. This conservation law follows directly from Newton's third law and is one of the most fundamental principles in physics, holding true from subatomic particles to colliding galaxies.

Elastic vs. Inelastic: Where Does the Energy Go?

In a perfectly elastic collision (e = 1), kinetic energy is also conserved — the objects bounce apart with no energy loss. Billiard balls and atomic collisions are nearly elastic. In an inelastic collision, some kinetic energy converts to heat, sound, and deformation. In the extreme case (e = 0), the objects stick together — like a bullet embedding in a block — and the maximum possible kinetic energy is lost.

The Coefficient of Restitution

Real collisions fall between the elastic and perfectly inelastic extremes. The coefficient of restitution (e) quantifies where: it's the ratio of relative separation speed to relative approach speed. A superball has e ≈ 0.9 (very bouncy). A lump of clay has e ≈ 0 (no bounce). This single parameter lets us interpolate between the two extremes and predict post-collision velocities for any real-world impact.

Newton's Cradle and Beyond

Newton's cradle — the executive desk toy with swinging steel balls — is a beautiful demonstration of both conservation laws working together. When one ball strikes the row, exactly one ball swings out the other side at the same speed. Two balls in, two balls out. The constraints of conserving both momentum and energy simultaneously determine the unique solution, making the cradle's behavior seem almost magical.

FAQ

What is the difference between elastic and inelastic collisions?

In an elastic collision, both momentum and kinetic energy are conserved — objects bounce apart. In an inelastic collision, momentum is conserved but kinetic energy is not — some energy converts to heat, sound, or deformation. In a perfectly inelastic collision, the objects stick together, losing the maximum possible kinetic energy.

What is the coefficient of restitution?

The coefficient of restitution (e) measures how bouncy a collision is, defined as the ratio of relative speed after to before collision: e = |v₂' - v₁'| / |v₂ - v₁|. It ranges from 0 (perfectly inelastic, objects stick) to 1 (perfectly elastic, no energy loss). A tennis ball on concrete has e ≈ 0.75.

Why is momentum always conserved in collisions?

Momentum conservation follows from Newton's third law: during a collision, the force on object 1 from object 2 is equal and opposite to the force on object 2 from object 1. These forces act for the same duration, so the impulses are equal and opposite, meaning the total momentum cannot change.

What happens when a heavy object collides with a light one?

The heavy object barely changes velocity while the light object rebounds at nearly twice the heavy object's speed. In the extreme limit (ball hitting a wall), the ball reverses direction at the same speed. This is why a golf club (heavy) transfers energy efficiently to a golf ball (light).

Sources

Embed

<iframe src="https://homo-deus.com/lab/classical-mechanics/momentum-collision/embed" width="100%" height="400" frameborder="0"></iframe>
View source on GitHub