One idea, 4 fields
Bayesian Updating
The unifying principle
Start from the product rule of probability, . Rearranging gives Bayes' theorem:
Because is just a normalizer, the working form is proportionality:
The key invariant across every field: replicators/beliefs that predicted the observed data better get up-weighted, exactly in proportion to their relative likelihood. That single sentence is the bridge.
How it shows up in each field
Maths — the theorem itself
The form: pure conditional probability. Notation is . It is the source; everything else is a specialization. The clean intuition is odds form, which strips away the normalizer:
Example. A disease has prevalence . A test with sensitivity and false-positive rate . A positive test gives . Base rate dominates — the update is real but modest.
AI-ML — learning as posterior inference
The form: parameters are the hypothesis, data is the evidence.
Maximum-likelihood training maximizes ; L2 regularization is literally a Gaussian prior ( is of ). Naive Bayes classifiers, Kalman filters, and Bayesian neural nets are direct applications; even SGD is an online approximation to sequential updating. Example. A spam filter starts with prior . The word "lottery" has vs for ham. Seeing it drives posterior spam-odds up by a Bayes factor of .
Stock-Market — repricing on news
The form: a trader's belief about an asset's true value is a prior; earnings reports, macro data, and order flow are evidence. Prices move because the market posterior moves.
The efficient-market ideal is that price = current Bayesian posterior mean; surprise (news minus expectation) drives returns, mirroring . Overreaction/underreaction are miscalibrated likelihoods; anchoring is an over-weighted prior. Example. A stock is priced expecting $1.00 EPS. Actual EPS is $1.20. The 20¢ surprise — not the level — moves the price; if the prior expectation had already been $1.20, the same report barely budges it. Same "surprise-scaled" update as the disease test.
Biology — evolution as belief revision
The form: a population is a "belief distribution" over genotypes; the frequency of type is its prior probability, fitness is its likelihood of surviving/reproducing. Replicator dynamics is a Bayesian update:
Genotype frequency prior, fitness likelihood, next generation posterior. Natural selection literally renormalizes by relative fitness each generation. Example. Antibiotic-resistant bacteria at frequency with relative fitness under the drug vs for susceptibles: after exposure their frequency updates to — the environment is "evidence" up-weighting the fitter hypothesis.
Why this bridge matters
What transfers is a single mental checklist: prior, likelihood, surprise, renormalize.
- Biology → ML: the replicator equation is multiplicative-weights update, which is softmax/exponentiated-gradient learning. Evolution gives geometric intuition for why boosting and mixture-of-experts work: reweight by performance.
- Maths → Markets: odds form explains why only surprise moves prices — the prior is already baked in. It also warns of the base-rate fallacy: a "99% accurate" signal on a rare event is mostly noise.
- ML → Biology/Markets: overfitting = trusting a coincidental likelihood spike; the cure (a prior/regularizer) is the same cure for evolutionary stochastic drift and for traders over-updating on one earnings call.
- The deep unlock: iterated multiplication of likelihoods → addition of information (log-evidence). Learning, adaptation, and price discovery are all accumulating log-evidence over time, and all share the same failure mode — a zero prior can never be revived (). In evolution that's an extinct allele; in ML a dead neuron; in markets a bankrupted belief. Never assign a hard zero.
Connections
- 01-Probability-Theory
- 02-Conditional-Probability-and-Odds
- 07-Bayesian-Inference-and-Priors
- 11-Naive-Bayes-and-Kalman-Filters
- 14-Regularization-as-Priors
- 22-Efficient-Market-Hypothesis
- 23-Earnings-Surprise-and-Price-Reaction
- 31-Replicator-Dynamics
- 34-Natural-Selection-and-Fitness
#bridge