Before Collision:
Conservation of Momentum: The total momentum of the system (both objects) is the same before and after the collision.
Momentum is: Momentum=M=m⋅v where:Notes and Code | Outcome |
---|---|
Inelastic CollisionIn inelastic collisions the two objects stick together after they collide. Therefore, after collision they can be considered a single mass.After Collision The total momentum after collision (Ma ) is equal to the momentum before collision (Mb ): Ma=Mb=−10kg m/s Therefore after collision: Ma=m⋅va−10=10⋅va−1010=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 CollisionIn 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.
|