Lifetimes

Learning goals

  • Relativistic kinematics.
  • Standard model particles.
  • Special Relativity.

Background

Every type of particle has different characteristics. They each have different masses, lifetimes, decay methods and many other properties.

To find the distance a particle travels in one lifetime, you need to know the lifetime of the particle and the speed of the particle. Classically, the formula to find the distance travelled in one lifetime is $ d= vt. $ Where $v$ is the speed of light and $t$ is the time the particle lives before it decays.

However, in many particle physics experiments, the particles are moving close to (but always less than!) the speed of light and this means that they experience time dilation, which means their internal clocks run more slowly.

Suppose a particle lives for the length of time equal to its mean lifetime. This quantity is defined in the particle's rest frame, which means that the time that we measure in the lab (in our particle physics experiment) is generally longer. The really useful quantity we are looking for is the flight-length: the distance the particle travels between the time it is created and the time it decays. This flight-length is longer in the lab, because of the time dilation effect. The distance measured in the lab is the mean free path and is given by

$$d = \gamma \beta c \tau$$

where $\beta = v/c$ and $\gamma = \frac{1}{\sqrt{1-\beta^2}}$.

Let's code!

Here is a sample code that creates a table of the lifetime and distance traveled in one lifetime for three different particles, but the distance is calculated incorrectly.


In [ ]:
particles = ["B+/-","D+/-","J/Psi"]

lifetimes = [1.64e-12,1.4e-12,7e-21]

c = 3e8 # m/s

v = c

for p,l in zip(particles,lifetimes):
    distance = v*l
    print "%-5s  lifetime=%4.2e s     distance traveled=%4.2e m" % (p,l,distance)

Particles

  • $\mu^\pm$
  • $\tau^\pm$
  • $\pi^\pm$
  • $\pi^0$
  • $\rho^0$
  • $K^\pm$
  • $K^0_{\rm short}$
  • $K^0_{\rm long}$
  • $K^*(892)$
  • $D^\pm$
  • $B^\pm$
  • $B0$
  • $J/ \psi$
  • $\Upsilon(1S)$
  • proton
  • neutron
  • $\Delta^+$
  • $\Lambda^0$
  • $\Lambda_c$

Challenge!

Finish the table for every particle listed above with an output of the particle's name, the lifetime, the mass, the momentum, and how far they travel in one lifetime assuming a momentum of 1 GeV/c, 10 GeV/c, and 100 GeV/c. You may need the following relativistic relationships.

$$\vec{\beta} = \frac{\vec{pc}}{E} \qquad \qquad E^2 = (mc^2)^2 + (pc)^2$$

In [ ]:
# Your code here

The scale of many modern physics detectors ranges from the order of centimeters to 10's of meters. Given that information, what particles do you think will actually live long enough to travel through parts of the detector?


In [ ]:
# Your code here

Which particles will decay (on average) before they reach the detectors? This means that these particles have to be reconstructed from their decay products.


In [ ]:
# Your code here

Make a plot where the x-axis is the names of the above particles (or a number corresponding to each, where the number/particle relationship is clearly identified) and the y-axis is the lifetime of the particle. Color code the data points according to whether the primary decay is EM, weak, or strong. {\it Do not plot the proton and neutron on this plot}. Do you see the "pattern"? You may need to use a log-scale for the y-axis.


In [ ]:
# Your code here