Lesson 14 of 15

Planck Units

Planck Units

The Planck scale marks where quantum mechanics and general relativity must both be important simultaneously. Built from the fundamental constants GG, \hbar, cc, and kBk_B, Planck units set the natural scale of quantum gravity.

The Planck Scales

lP=Gc31.616×1035 ml_P = \sqrt{\frac{\hbar G}{c^3}} \approx 1.616 \times 10^{-35} \text{ m}

tP=Gc55.391×1044 st_P = \sqrt{\frac{\hbar G}{c^5}} \approx 5.391 \times 10^{-44} \text{ s}

mP=cG2.177×108 kgm_P = \sqrt{\frac{\hbar c}{G}} \approx 2.177 \times 10^{-8} \text{ kg}

EP=mPc2=c5G1.22×1019 GeVE_P = m_P c^2 = \sqrt{\frac{\hbar c^5}{G}} \approx 1.22 \times 10^{19} \text{ GeV}

TP=EPkB1.417×1032 KT_P = \frac{E_P}{k_B} \approx 1.417 \times 10^{32} \text{ K}

Cosmological Significance

Inflation is thought to have occurred at energies near the Planck scale. The Big Bang singularity is a Planck-scale phenomenon where our classical description of spacetime breaks down.

The Planck time is the earliest moment after the Big Bang that our current physics can describe. Before t<tP5.4×1044t < t_P \approx 5.4 \times 10^{-44} s, a theory of quantum gravity is required.

Constants

Use:

  • =1.055×1034\hbar = 1.055 \times 10^{-34} J·s
  • G=6.674×1011G = 6.674 \times 10^{-11} m³/(kg·s²)
  • c=2.998×108c = 2.998 \times 10^8 m/s
  • 11 GeV =1.602×1010= 1.602 \times 10^{-10} J

Your Task

Implement three functions. All constants must be defined inside each function.

  • planck_length_m() — returns lP=G/c3l_P = \sqrt{\hbar G / c^3} in metres
  • planck_time_s() — returns tP=G/c5t_P = \sqrt{\hbar G / c^5} in seconds
  • planck_energy_GeV() — returns EP=c5/GE_P = \sqrt{\hbar c^5 / G} in GeV (divide by 1.602×10101.602 \times 10^{-10} J/GeV)
Python runtime loading...
Loading...
Click "Run" to execute your code.