Relativistic kinematics

Learning goals

  • Relativistic kinematics.
  • Standard model particles.

Background

If you know the mass of a particle, most of the time you know what that particle is. However, there is no way to just build a single detector that gives you the mass. You need to be clever and make use of Special relativity, specifically relativistic kinematics.

To determine the mass ($m$) of a particle you need to know the 4-momenta of the particles ($\mathbf{P}$) that are detected after the collision: the energy ($E$), the momentum in the x direction ($p_x$), the momentum in the y direction ($p_y$), the momentum in the z direction ($p_z$).

$$\mathbf{P} = (E,p_x,p_y,p_z)$$\begin{equation*} m = \sqrt{E^2-(p_x^2+p_y^2 + p_z^2)} \end{equation*}

Let's code!

Here is some sample code that reads in data from a small sample file from the CMS experiment. It loops over data from many different proton-proton collisions.

If you haven't already, you will want to go through the data model (also included when you cloned this directory) exercise so you know how to pull out the relevant information.

For each collision, you can get the 4-momenta of the jets, muons, electrons, and photons produced in these collisions.


In [ ]:
# Import standard libraries #
import numpy as np
import matplotlib.pylab as plt
%matplotlib notebook

# Import custom tools # 
import h5hep 
import pps_tools as pps

# Download the file #
file = 'dimuons_1000_collisions.hdf5'
pps.download_drive_file(file)
print("Reading in the data....")

# Read the data in as a list #
infile = '../data/dimuons_1000_collisions.hdf5'
collisions = pps.get_collisions(infile,experiment='CMS',verbose=False)
    
print(len(collisions))

Challenge!

Copy this sample code and use it to calculate the mass of the muons. Make a histogram of this quantity.

Hint!

Make sure you do this for all the muons! Each collision can produce differing numbers of muons, so take care when you code this up.

Your histogram should look something like the following sketch, though the peak will be at different values.

The value of the peak, should be the mass of the particle Check your answer!

You should also make histograms of the energy and magnitude of momentum ($|p|$). You should see a pretty wide range of values for these, and yet the mass is a very specific number.


In [ ]:
from IPython.display import Image
Image(filename='images/muons_sketch.jpeg')

In [ ]:
# Your code here

Suppose we didn't know anything about special relativity and we tried calculating the mass from what we know about classical physics.

$$KE = \frac{1}{2}mv^2 \qquad KE = \frac{p^2}{2m} \qquad m = \frac{p^2}{2KE}$$

Let's interpret the energy from the CMS data as the kinetic energy ($KE$). Use classical mechanics then to calculate the mass of the muon, given the energy/KE and the momentum. What does that histogram look like?

Your histogram should not look like the last one! We know that the Classical description of kinematics is not accurate for particle moving at high energies, so don't worry if the two histograms are different. That's the point! :)


In [ ]:
# Your code here