Probability & Statistics

James Phoenix
James Phoenix

Foundational for decision-making under uncertainty.


Engineering Applications

  • A/B Testing: Confidence intervals, p-values, sample size calculations
  • Ranking Systems: Bayesian inference, prior/posterior updates
  • Error Budgets: Expected value, variance, percentiles
  • Retry Logic: Exponential backoff, jitter calculations
  • Capacity Planning: Percentile estimation, tail distributions

Key Concepts

Expected Value

E[X] = Σ x_i * P(x_i)

Use for: Comparing strategies with uncertain outcomes

Variance & Standard Deviation

Var(X) = E[(X - μ)²]
σ = √Var(X)

Use for: Understanding spread of outcomes, risk assessment

Bayes’ Theorem

P(A|B) = P(B|A) * P(A) / P(B)

Use for: Updating beliefs with new evidence, ranking systems

Leanpub Book

Read The Meta-Engineer

A practical book on building autonomous AI systems with Claude Code, context engineering, verification loops, and production harnesses.

Continuously updated
Claude Code + agentic systems
View Book

Confidence Intervals

CI = x̄ ± z * (σ/√n)

Use for: A/B testing, sample size planning


Quick Reference: Distributions

Distribution Use Case
Normal Central limit theorem, aggregates
Exponential Time between events, retry timing
Poisson Event counts per interval
Binomial Success/failure counts
Beta Probability of probability (ranking)

System Design Connections

Retry with Jitter

delay = min(cap, base * 2^attempt) + random(0, jitter)

Prevents thundering herd, smooths load.

Percentile Latency

p50 tells you typical experience.
p99 tells you tail experience.
p99.9 tells you worst-case SLO risk.


Related

Topics
Ab TestingBayesian InferenceProbability TheoryStatistical ModelingSystem Reliability

Newsletter

Become a better AI engineer

Weekly deep dives on production AI systems, context engineering, and the patterns that compound. No fluff, no tutorials. Just what works.

Join 306K+ developers. No spam. Unsubscribe anytime.


More Insights

Cover Image for The Semantic Triangle: Mock Screens, PoC Backend, and Spec File Beat Any One Alone

The Semantic Triangle: Mock Screens, PoC Backend, and Spec File Beat Any One Alone

Three artefacts. Three reduced ambiguities. One projection task instead of three inventions.

James Phoenix
James Phoenix
Cover Image for Contracts Parallelize Agents

Contracts Parallelize Agents

If you’re waiting for Agent A to finish before starting Agent B, you’re wasting time. Define the contract between them and dispatch both now.

James Phoenix
James Phoenix