The Standard Model is a highly tested quantum-field framework for the strong, electromagnetic, and weak interactions and the elementary fields that participate in them. It is not a complete “periodic table of everything,” and gravity is not part of the Standard Model.
At an introductory level, group elementary fields into quarks, leptons, gauge bosons, and the Higgs field. Quarks carry colour charge and participate in the strong interaction; charged particles participate in electromagnetism; quarks and leptons participate in weak interactions. Gauge bosons represent the corresponding interactions in the framework.
type Interaction = "strong" | "electromagnetic" | "weak";
type Edge = { from: string; to: string; interaction: Interaction; sourceEdition: string };
const forbiddenClaim = edges.some((edge) => edge.interaction === ("gravity" as Interaction));
if (forbiddenClaim) throw new Error("gravity is outside this Standard Model map");
The type restriction is not a proof of physics. It is a guardrail against one common teaching error: silently placing gravity alongside the Standard Model gauge interactions as though it were already part of the same experimentally complete framework.
Feynman diagrams are another useful map, but they are not literal photographs of particles moving along tiny tracks. They organize terms in a calculation and show which interaction is being represented. A page should label the diagram's process, initial and final states, and approximation order before asking a learner to interpret it.
The framework does not settle every question a visitor may associate with particle physics. It does not provide a quantum theory of gravity, and observed phenomena such as dark matter and the matter–antimatter asymmetry motivate work beyond its standard minimal form. An overview should distinguish “not included in this model” from “known to be impossible.”
Prediction: A graph that names an interaction on every edge can be read without its color palette.
Make one quark–gluon relation, one charged-lepton–photon relation, and one lepton–W relation. Hide the colors and predict whether a reader can still identify the interaction from the text labels alone.Model the Standard Model as a sourced, labelled interaction graph. Separate elementary fields from composite particles, label every claimed force relation in words, and keep gravity and open problems visibly outside the framework's scope.
Treat the lesson as a small function before treating it as a fact to memorize. Give every value a unit, keep only the state needed for the next step, and make the output easy to inspect.
\[\text{observable output} = f(\text{inputs},\,\text{state})\]For Standard Model Overview, write down the quantities you can control, the values your program must retain, and the result a reader could inspect. In Nuclear and Particle Physics, the useful program is not the drawing: it is the smallest explicit model that makes a prediction you can test.
Prediction: changing one declared input while holding the others fixed should change only the outputs that the model connects to that input. Choose one input, predict the direction of change, then check a limiting case such as zero, a symmetric arrangement, or a familiar low-speed or small-change approximation.
This lesson is a teaching model, not a complete simulator. Before using it outside the stated question, check which interactions, scales, uncertainties, boundary conditions, and measurement limits it leaves out.
Treat Standard Model Overview as a contract: named inputs and units enter a rule, the rule produces an observable result, and a known limit or invariant checks whether the implementation deserves trust.
Present the Standard Model as a scoped, sourced framework with evidence and open boundaries.