Particle Physics: Difference between revisions
BloomWiki: Particle Physics |
BloomWiki: Particle Physics |
||
| Line 90: | Line 90: | ||
|} | |} | ||
'''Gaps in the Standard Model''': Despite its success, the Standard Model is incomplete. | '''Gaps in the Standard Model''': Despite its success, the Standard Model is incomplete. | ||
# '''Gravity''': It does not include general relativity. | |||
# '''Dark Matter/Energy''': It explains only 5% of the universe's mass-energy content. | |||
# '''Hierarchy Problem''': Why is the weak force so much stronger than gravity? | |||
# '''Matter-Antimatter Asymmetry''': Why is there so much more matter than antimatter in the observable universe? | |||
== Evaluating == | == Evaluating == | ||
Scientific validity is established by: | Scientific validity is established by: | ||
# '''Discovery''': Seeing the predicted resonance peak in accelerator data (e.g., the "5-sigma" discovery of the Higgs). | |||
# '''Symmetry''': Does the mathematical group theory (SU | |||
# xSU | |||
# xU | |||
# ) correctly predict the relationships between particles? | |||
# '''Unification''': Can different forces be merged at high energies (Grand Unified Theories)? | |||
# '''Anomaly Detection''': Small deviations from Standard Model predictions (like the Muon g-2 anomaly) are carefully evaluated as potential signs of "New Physics." | |||
== Creating == | == Creating == | ||
The Next Generation of High-Energy Physics: | The Next Generation of High-Energy Physics: | ||
# '''Beyond the Standard Model (BSM)''': Searching for Supersymmetry (SUSY) or Extra Dimensions. | |||
# '''Dark Matter Detection''': Direct detection experiments (LZ, XENON) searching for WIMPs (Weakly Interacting Massive Particles). | |||
# '''Future Circular Collider (FCC)''': A proposed 100km accelerator to study the Higgs in unprecedented detail. | |||
# '''Axion Research''': Searching for hypothetical light particles that could explain both CP violation and dark matter. | |||
[[Category:Physics]] | [[Category:Physics]] | ||
[[Category:Particle Physics]] | [[Category:Particle Physics]] | ||
Revision as of 14:36, 23 April 2026
How to read this page: This article maps the topic from beginner to expert across six levels � Remembering, Understanding, Applying, Analyzing, Evaluating, and Creating. Scan the headings to see the full scope, then read from wherever your knowledge starts to feel uncertain. Learn more about how BloomWiki works ?
Particle physics, also known as high-energy physics, is the study of the fundamental constituents of matter and radiation, and the interactions between them. It aims to answer the question: "What is everything made of, and how does it stay together?" The crowning achievement of this field is the Standard Model, a mathematical framework that successfully describes three of the four fundamental forces of nature (electromagnetism, the weak force, and the strong force). Through massive particle accelerators like the Large Hadron Collider (LHC), physicists recreate the conditions of the early universe to discover new particles and test the limits of our physical laws.
Remembering
- Quark — Fundamental constituent of matter that combines to form hadrons (like protons and neutrons).
- Lepton — Fundamental particles that do not undergo strong interactions (e.g., electrons, neutrinos).
- Boson — Force-carrying particles (e.g., photon, gluon, W and Z bosons).
- Fermion — Matter particles; include quarks and leptons (obey Pauli exclusion).
- Gluon — The boson that carries the strong force, binding quarks together.
- Higgs Boson — The particle associated with the Higgs field, which gives mass to other elementary particles.
- Standard Model — The current theoretical framework of particle physics.
- Neutrino — An extremely light, neutral lepton that rarely interacts with matter.
- Hadron — A composite particle made of quarks (e.g., protons, neutrons, mesons).
- Antimatter — Matter composed of antiparticles, which have the same mass but opposite charge as regular particles.
- Strong Force — The interaction that binds quarks into hadrons and holds the atomic nucleus together.
- Weak Force — The interaction responsible for radioactive decay and nuclear fusion in stars.
- Color Charge — The property of quarks and gluons that mediates the strong interaction (analogue to electric charge).
- LHC (Large Hadron Collider) — The world's largest and most powerful particle accelerator.
Understanding
The Standard Model organizes particles into a clear hierarchy based on their properties and interactions.
Matter Particles (Fermions): These are divided into three "generations" of increasing mass. 1. Quarks: Up, Down, Charm, Strange, Top, Bottom. (Protons are Up-Up-Down). 2. Leptons: Electron, Muon, Tau, and their corresponding neutrinos.
Force Carriers (Gauge Bosons):
- Photon: Electromagnetism.
- W and Z Bosons: Weak Nuclear Force (radioactivity).
- Gluons: Strong Nuclear Force (nuclear binding).
- Graviton: (Theoretical) Gravity.
The Higgs Mechanism: In the 1960s, physicists wondered why particles have mass. Peter Higgs and others proposed an invisible field permeating the universe. Particles that interact more strongly with this field (like the Top Quark) are heavy; those that don't (like the Photon) are massless. The discovery of the Higgs Boson in 2012 at CERN was the final piece of the Standard Model puzzle.
Applying
Conservation Laws in Particle Decay: <syntaxhighlight lang="python"> def is_decay_possible(initial_particle, final_particles):
"""
Checks if a decay process is allowed by basic conservation laws.
Representing particles as dicts with charge, lepton number, and baryon number.
"""
# Sum up charges and numbers
initial_charge = initial_particle['charge']
initial_lepton = initial_particle['lepton_num']
initial_baryon = initial_particle['baryon_num']
final_charge = sum(p['charge'] for p in final_particles)
final_lepton = sum(p['lepton_num'] for p in final_particles)
final_baryon = sum(p['baryon_num'] for p in final_particles)
# Check conservation
checks = {
"Charge": initial_charge == final_charge,
"Lepton Number": initial_lepton == final_lepton,
"Baryon Number": initial_baryon == final_baryon
}
return all(checks.values()), checks
- Example: Neutron -> Proton + Electron + Anti-neutrino (Beta Decay)
neutron = {'charge': 0, 'lepton_num': 0, 'baryon_num': 1} proton = {'charge': 1, 'lepton_num': 0, 'baryon_num': 1} electron = {'charge': -1, 'lepton_num': 1, 'baryon_num': 0} anti_neutrino = {'charge': 0, 'lepton_num': -1, 'baryon_num': 0}
allowed, details = is_decay_possible(neutron, [proton, electron, anti_neutrino]) print(f"Beta Decay Allowed: {allowed}") print(f"Details: {details}") </syntaxhighlight>
- Major Experiments
- CERN (LHC) → Discovery of the Higgs, searching for Supersymmetry.
- Fermilab → Tevatron (discovered Top Quark), Neutrino experiments (DUNE).
- IceCube → Detection of high-energy cosmic neutrinos in Antarctic ice.
- Super-Kamiokande → Neutrino oscillations (proving they have mass).
Analyzing
| Force | Carrier | Range | Relative Strength |
|---|---|---|---|
| Strong | Gluon | 10⁻¹⁵ m | 10³⁸ (Strongest) |
| Electromagnetic | Photon | Infinite | 10³⁶ |
| Weak | W, Z Bosons | 10⁻¹⁸ m | 10²⁵ |
| Gravity | Graviton (?) | Infinite | 1 (Weakest) |
Gaps in the Standard Model: Despite its success, the Standard Model is incomplete.
- Gravity: It does not include general relativity.
- Dark Matter/Energy: It explains only 5% of the universe's mass-energy content.
- Hierarchy Problem: Why is the weak force so much stronger than gravity?
- Matter-Antimatter Asymmetry: Why is there so much more matter than antimatter in the observable universe?
Evaluating
Scientific validity is established by:
- Discovery: Seeing the predicted resonance peak in accelerator data (e.g., the "5-sigma" discovery of the Higgs).
- Symmetry: Does the mathematical group theory (SU
- xSU
- xU
- ) correctly predict the relationships between particles?
- Unification: Can different forces be merged at high energies (Grand Unified Theories)?
- Anomaly Detection: Small deviations from Standard Model predictions (like the Muon g-2 anomaly) are carefully evaluated as potential signs of "New Physics."
Creating
The Next Generation of High-Energy Physics:
- Beyond the Standard Model (BSM): Searching for Supersymmetry (SUSY) or Extra Dimensions.
- Dark Matter Detection: Direct detection experiments (LZ, XENON) searching for WIMPs (Weakly Interacting Massive Particles).
- Future Circular Collider (FCC): A proposed 100km accelerator to study the Higgs in unprecedented detail.
- Axion Research: Searching for hypothetical light particles that could explain both CP violation and dark matter.