Before Collision:
Conservation of Momentum: The total momentum of the system (both objects) is the same before and after the collision.
Momentum is: $$ \text{Momentum} = M = m \cdot 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 ): $$ \begin{align} M_{a} &= M_{b} \\ &= -10 \; \text{kg m/s} \end{align} $$ Therefore after collision: $$ \begin{align} M_{a} &= m \cdot v_a \\ -10 &= 10 \cdot v_a \\ \frac{-10}{10} &= v \\ v &= -1 \; \text{m/s} \end{align} $$ |
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.
|