Solving the 2D Collision Between Particles of Same Mass

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
Littlepig
Messages
97
Reaction score
0

Homework Statement


Ok, I'm making an algorithm to calculate some stuff, and meanwhile, i needed to compute a 2D collision between 2 particles of same mass.

To work that out, I needed to change referential to Mcenter. The problem was there...


Homework Equations


Vcm=(v1+v2)/2 (m1=m2)
velocity addition by Galileo

The Attempt at a Solution


ok, Vcm=(v1+v2)/2
so, v1cm=v1-Vcm=v1-(v1+v2)/2=(v1)/2-(v2)/2
in the same way:
v2cm=v2-Vcm=v2-(v1+v2)/2=(v2)/2-(v1)/2

Now, the problem is: this too equations are L. Dependent, that means the matrix related to it isn't invertible, so, after i calculate the Vfinal in CM referencial, i can't change it to lab referential.
 
Physics news on Phys.org
Littlepig said:
so, after i calculate the Vfinal in CM referencial, i can't change it to lab referential.
Why not? Just do the reverse of what you did to get to the CM frame: Instead of subtracting (V1 + V2)/2, add it.
 
ah, duh, yeah

Tks Doc Al