FINE TUNING ENGINEERING LABS

MATH LAB

V1.0

MATHEMATICAL PROBABILITY

Here at FTEL we like to share knowledge. Our FTEL pages are built for illustration purposes as the Math is complex for an online simulator and would take the user a non friendly time to compute. We have used the power of Python to calculate the odds with the following code below were you can test it for yourself.

"Why Python?." We use Python for its powerful libraries (NumPy) that can handle complex calculations. It is clean and intuitive code makes it ideal for scientific and engineering reasearch.

We have based our Math on the following formula:

๐Ÿ“ FINE-TUNING FORMULA

"P_total = โˆ(i=1 to n) P_i"

Where:

P_total = Combined life-permitting probability

P_i = Life-permitting window for constant i

n = Number of constants (30+)

P_total = P_cosmo ร— P_strong ร— P_gravity ร— P_em ร— ... ร— P_neutrino_15 = (1ร—10โปยนยฒโฐ) ร— (5ร—10โปยณ) ร— (1ร—10โปยณ) ร— (3ร—10โปยณ) ร— ... ร— (1ร—10โปยฒโต) = 10-X (approx) = 1 in 10X

๐Ÿงฎ RUN IT YOURSELF

๐Ÿ”ฅ CHALLENGE: Copy โ†’ Paste โ†’ RUN โ†’ See what answer you get!

Your PC will calculate the impossibility.

๐Ÿ CODE: 10 KEY CONSTANTS

import numpy as np

windows = {
    'cosmo_constant': 1e-120,
    'strong_force': 0.005,
    'gravity': 0.001,
    'em_coupling': 0.003,
    'weak force': 1e-2,
    'Higgs': 1e-34,
    'e_mass':  1e-4,
    'fine_struc': 1e-4,
    'entropy': 1e-10,
    'density': 1e-60,

}

total_prob = np.prod([w for w in windows.values()])
print(f"Combined Universe permitting odds: 1 in {1/total_prob:.2e}")
        

Copy โ†’ python script.py โ†’ Watch your PC CRUNCH 10^X - Solve X to find out!

๐Ÿš€ YOUR TURN

  1. Copy code block
  2. pip install numpy (if needed)
  3. python fine_tuning.py
  4. What does the probabilty tell you?