Processing math: 100%

Momentum

For two objects colliding in 1-dimension.

Before Collision:

v₁ = 2 m/sm₁ = 4 kgv₂ = -3 m/sm₂ = 6 kg

Basic Principles

Conservation of Momentum: The total momentum of the system (both objects) is the same before and after the collision.

Momentum is: Momentum=M=mv where: The total momentum before collision is: Mbefore=m1v1+m2v2=42+6(3)=8+(18)=10kg m/s
Write a programs for:
  1. Inelastic Collision: If the two objects stick together after the collision, what is their final velocity.
  2. Elastic Collision: Velocity of the first object (m₁) after the collision, if you are given the velocity of the second object after the collision, and the masses of both objects.
The underlying principle is that momentum is conserved after the collision, so the total momentum before collision is equal to the total momentum after collision.
Notes and Code Outcome

Inelastic Collision

In inelastic collisions the two objects stick together after they collide. Therefore, after collision they can be considered a single mass.
v₁ = 2 m/sm₁ = 4 kgv₂ = -3 m/sm₂ = 6 kg

After Collision

vₐ = ?mₐ = 10 kg

The total momentum after collision (Ma ) is equal to the momentum before collision (Mb ): Ma=Mb=10kg m/s Therefore after collision: Ma=mva10=10va1010=vv=1m/s

To write a program to calculate the final velocity, you can calculate values for each step, or you can do the algebra to determine a single equation for this problem.

Elastic Collision

In elastic collisions the objects bounce off of each other after they collide.

Determine the velocity of object 1 after the collision if the velocity of object 2 is -2 m/s after the collision.

To write a program to calculate the velocity of object 1 after collision, if you are given the starting velocities and masses, and the velocity of object 2 after the collision.