Lifetimes of the particles

Learning goals

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

Background

Every particle is unique. 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 light. The formula to find the distance travelled in one lifetime is $ d= vt. $ Where $v$ is the speed of light and $t$ is the lifetime of the particle. The speed of light is $3\times10^8$ m/s$^2$.

To find the distance travelled with different momenta you need to know, the particles momentum, mass, and lifetime.

One concept in Einstein's special relativity is time dilation. This means moving clocks are measured to tick more slowly than an observer's "stationary" clock. This concept needs to be kept in mind when solving for the distance travelled at high velocities.

Some important equations you need to know are:

$E = \sqrt{(pc)^2 + (mc^2)^2}$

$\beta = \frac{v}{c}$

$\frac{p}{E} = \frac{\beta}{c}$

$\gamma = \frac{1}{\sqrt{1-\beta^2}}$

$t = \gamma t_0$

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.


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

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

c = 3e8 # m/s

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


B+/-  lifetime=0.00 s  distance=4.92e-04 m
D+/-  lifetime=0.00 s  distance=4.20e-04 m
J/Psi lifetime=0.00 s  distance=2.10e-12 m

Particles

  • $\mu^\pm$
  • $\tau^\pm$
  • $\pi^\pm$
  • $\pi^0$
  • $K^\pm$
  • $K^0_{\rm short}$
  • $K^0_{\rm long}$
  • $D^\pm$
  • $B^\pm$
  • $B0$
  • $J/ \psi$
  • $\Upsilon(1S)$

Challenge!

Finish the table for every particle listed above with an output of the particles name, the lifetime, the mass, the distance travelled in one lifetime, the momentum, and how far the travel in one lifetime given different momentum.


In [11]:
# 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 [2]:
# Your answer 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 [3]:
# Your answere here.

In [ ]: