A Byte of PhysicsLogo

Cosmology and the Big Bang

Cosmology connects a model of an expanding universe with observations such as redshift, distance indicators, and background radiation. The Big Bang model does not say that matter exploded from one point into empty space. In the standard picture, distances between sufficiently separated, unbound galaxies change because the large-scale geometry of space evolves.

Think like a programmer

A cosmology plot is a parameterized computation. Persist the parameter set, dataset version, coordinate definition, unit system, uncertainty interval, and redshift range. A timeline with no model or data label is an illustration, not a reproducible result.

Model checklist

Inputs
Redshift or distance data, a cosmological parameter set, uncertainty model, and coordinate convention.
State
The parameter values, dataset version, and derived scale or expansion history.
Rule
Relate redshift and expansion to predicted distances or recession trends under the chosen model.
Output
A Hubble plot, scale-factor history, or parameter estimate with uncertainty.
Check
At low redshift, the simplified model should recover an approximately linear recession-speed versus distance trend.

Start with a low-redshift teaching model

Hubble's law is a useful local approximation:

\[v\approx H_0d\]

H0 is a fitted expansion-rate parameter, not a universal velocity. v is a recession-speed description used in the approximation, and d is a distance under a stated convention. At larger redshift, use an expansion model and distance definition appropriate to the question instead of extending this line without warning.

Redshift is measured from a wavelength shift:

\[z=\frac{\lambda_{\mathrm{observed}}-\lambda_{\mathrm{emitted}}}{\lambda_{\mathrm{emitted}}\]
const redshift = (observedWavelengthNm - emittedWavelengthNm) / emittedWavelengthNm;
if (redshift < 0) note("This source is blueshifted in the chosen convention");

The computation is simple; the inference is not. A redshift measurement needs a correctly identified spectral feature, calibration, uncertainties, and a model for converting it to a cosmological distance or time.

What an expansion visual must say

An expanding-balloon analogy can help show that every marked point can see other points receding without a special centre on the surface. It is not a literal picture of the universe: it has one fewer spatial dimension, a physical outside, and a centre in the embedding room that the cosmological model does not require.

Likewise, a timeline of the early universe should label its parameter assumptions and evidence status. Do not imply a simulation directly observes the earliest moments, or that a single plot settles questions about dark matter, dark energy, or initial conditions.

Try this experiment

Prediction: At fixed H0 in the low-redshift approximation, doubling distance doubles the predicted recession speed.

Choose a stated H0 and two distances d and 2d. Predict the second speed, calculate it, then name one reason this linear calculation should not be used unchanged at high redshift.

Where this model breaks

This lesson omits general-relativistic distance calculations, structure formation, selection effects, calibration systematics, parameter fitting, and the full uncertainty budget. Hubble's law here is a low-redshift model, not a universal velocity formula or proof of a unique cosmic history.

Summary

Cosmology is evidence-backed parameter estimation. Record the data and conventions, use low-redshift formulas only in their range, and label every visual as an approximation rather than an origin animation.

Glossary

Self-check

  1. What does the low-redshift Hubble law predict when distance doubles?
  2. Why is the balloon analogy useful but incomplete?
  3. Which metadata makes a cosmology plot reproducible?

Sources

Model contract

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})\]
Inputs
Quantities you set or measure, with units and useful bounds.
State
Values the program must retain to reproduce the next result.
Rule
The relationship or update that turns inputs and state into a result.
Check
A known limit, unit check, invariant, or measured result that can expose a bad model.

Implement the idea as a model

For Cosmology and the Big Bang, 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.

Guided experiment

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.

Where this model breaks

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.

Summary

Treat Cosmology and the Big Bang 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.

Glossary

  • Input: a measured value or chosen parameter supplied to a model.
  • State: the smallest set of values needed to continue or reproduce a model.
  • Validation: comparing an output with a known result, limit, invariant, or measurement.

Self-check

  1. Which values are inputs, and which values must remain state?
  2. What observable result would tell you the model is behaving as expected?
  3. Which assumption would you test first before applying the model to a real system?

Model review: turn Cosmology and the Big Bang into a test

Present cosmic-history models with explicit parameters, coordinates, data provenance, and uncertainty.

  1. Name the inputs and units that the nuclear and particle physics model needs.
  2. Separate the state you must keep from values you can calculate when needed.
  3. Write one rule that maps the current state and inputs to an observable result.
  4. Choose a limiting case, unit check, invariant, or known result before trusting an output.
  5. State one assumption you would change before using this simplified model for a real decision.

Share to: