Shan WAN’s Post

Ex Nihilo - Simulating how matter emerges from “nothing” Recent results published in Nature Portfolio, inspired by experiments at the CERN and Brookhaven National Laboratory, suggest something fascinating: under extreme conditions, particles can emerge directly from quantum vacuum fluctuations. This weekend, I tried to understand that mechanism the only way I know how: I coded it. Important disclaimer: This is not a physically accurate simulation. A real model would require quantum field theory, experimental data (eg: CERN), and heavy computation. This is a conceptual model - designed to capture the logic, not the precision. How the model works (in simple terms) I represent the vacuum as a dynamic energy field: → At each timestep, random fluctuations are added → A damping factor prevents energy from diverging quantum_field += noise quantum_field *= 0.9 1. Energy threshold → matter appears Particles are only created when local energy exceeds a threshold: quantum_field > energy_threshold This is a simplified way to encode: no energy → no matter enough energy → conversion becomes possible 2. Matter is always created in pairs When a particle appears, its opposite appears with it: +1 (matter) and -1 (antimatter) This enforces a fundamental constraint: total charge remains zero No “single” creation. Only balanced systems. 3. Local correlation (shared origin) Pairs are generated in neighboring cells: neighbor_offset = random(-1, 1) Meaning: both particles come from the same fluctuation they are intrinsically linked at birth 4. Lifetime depends on energy The more energy a pair “borrows”, the shorter it lives: lifespan ∝ 1 / energy Inspired by uncertainty principles: high energy → fast annihilation low energy → longer persistence 5. Motion + annihilation Particles move across the grid: np.roll(...) Then eventually disappear: particles → 0 energy → returned to field What this really is Not a physics simulator. A translation layer between: abstract theory and algorithmic logic Same mindset I apply in business or law: → identify constraints → model them → observe emergent behavior #Python #Simulation #QuantumPhysics #Tech #ConceptModel #kaggle

  • scatter chart

What I find interesting is using platforms like Kaggle not just for datasets, but as a sandbox to experiment with abstract concepts. It’s a way to bridge the gap between theory and intuition. Of course, real simulations in this field require serious infrastructure (HPC, experimental data, QFT models), but even simplified models can help build a mental framework of what’s going on.

Like
Reply

Nom de l'article Nature Portfolio: Measuring spin correlation between quarks during QCD confinement | Nature

Like
Reply
See more comments

To view or add a comment, sign in

Explore content categories