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
Data ScienceEvaluationReliability

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 First Agents Were Human

The First Agents Were Human

SEOs were running agent harnesses a decade before the word existed. The executors were people, the prompts were briefs, and the eval suite was an editor with a checklist.

James Phoenix
James Phoenix
Cover Image for Hosted Builds Are the Wrong Abstraction for Agentic Coding

Hosted Builds Are the Wrong Abstraction for Agentic Coding

Once agents increase commit throughput, the expensive part is no longer writing code. It is repeatedly verifying, building, and deploying it. So the build system has to move closer to controlled hardware, while the hosted platform becomes a dumb artifact receiver.

James Phoenix
James Phoenix