Frontier Intuitive Probability / Statistics — Interview Grill

100+ active-recall questions calibrated for OpenAI / DeepMind / Anthropic research-scientist rounds. Each is a 60-second oral exam answer. Pair with INTUITIVE_QUESTIONS_DEEP_DIVE.md.


Section A — Framing checklist (Q1–7)

  1. List the 7 framing checklist items in order.
  2. When does a problem call for Bayesian vs frequentist framing?
  3. When is a problem a classification vs estimation vs decision?
  4. Why is it important to state the loss function before computing?
  5. What's the difference between MAP and posterior mean as point estimates? Under what loss is each optimal?
  6. What does "asymptotic" mean and when do you reach for it?
  7. State a single-sentence summary of the framing approach.

Section B — Bayesian classification (Q8–18)

  1. Sketch Bayes' rule with priors and likelihoods.
  2. Define the likelihood ratio and the prior odds.
  3. State the Neyman-Pearson lemma.
  4. Why is the LRT optimal at fixed false-positive rate?
  5. For i.i.d. samples, how does the log-likelihood ratio scale with ?
  6. What's the expected log-likelihood ratio under ? (Hint: it's a familiar quantity.)
  7. State the sample complexity formula for distinguishability.
  8. Why is sample complexity rather than ?
  9. What's Chernoff information? How is it related to Bayes error rate?
  10. Walk through the Bayes error rate formula .
  11. Two-class question — under asymmetric loss, how does the threshold shift?

Section C — MLE, MAP, method of moments (Q19–27)

  1. State the MLE objective.
  2. Three asymptotic properties of MLE.
  3. What's Fisher information?
  4. What's the Cramér-Rao lower bound?
  5. When is MLE biased in finite samples? Give an example.
  6. Compare MLE with MAP — when are they the same?
  7. Why is MAP not the optimal Bayesian estimator under squared loss?
  8. When does method of moments beat MLE?
  9. What does "asymptotically efficient" mean?

Section D — Concentration and tail bounds (Q28–36)

  1. State Markov's inequality.
  2. State Chebyshev's inequality.
  3. State Hoeffding's inequality (precise form).
  4. When does Hoeffding apply but Bernstein doesn't?
  5. When does Bernstein give a sharper bound than Hoeffding?
  6. What's the moment generating function and why does it matter for Chernoff?
  7. When does CLT apply?
  8. CLT — what's the rate of convergence (Berry-Esseen)?
  9. For binary outcomes with , , what's the 95% CI half-width?

Section E — KL divergence and information theory (Q37–46)

  1. Define KL divergence and state two key properties.
  2. Why is KL asymmetric?
  3. Sketch KL between two univariate Gaussians with same variance.
  4. Why does KL matter for distinguishability?
  5. State the relationship between KL and Bayes error exponent.
  6. What's the Fano inequality?
  7. What's mutual information in one sentence?
  8. Why is KL the "natural" loss in maximum-likelihood / VAE / diffusion?
  9. Why is reverse-KL different from forward-KL in posterior approximation?
  10. KL as coding excess — explain.

Section F — Sequential decision / bandits (Q47–53)

  1. Define the multi-armed bandit problem.
  2. What's UCB and what regret does it achieve?
  3. What's Thompson sampling?
  4. Why doesn't -greedy achieve regret in general?
  5. Distinguish regret minimization from best-arm identification.
  6. What's the Track-and-Stop algorithm for?
  7. How does bandit theory connect to RLHF?

Section G — Importance and rejection sampling (Q54–58)

  1. State the importance-sampling identity.
  2. When does importance sampling have high variance?
  3. Why does importance sampling appear in PPO?
  4. Walk through rejection sampling.
  5. When is rejection sampling impractical (acceptance rate)?

Section H — Stein and shrinkage (Q59–62)

  1. State the James-Stein result.
  2. Why is James-Stein "paradoxical"?
  3. How does shrinkage relate to Bayesian priors?
  4. How does this connect to weight decay in deep learning?

Section I — The two-distribution scenario, fully drilled (Q63–75)

  1. State the question in one sentence.
  2. What's the Bayes-optimal decision rule?
  3. Three approaches to estimating and from arrays.
  4. Tradeoff between parametric (Gaussian) vs KDE.
  5. When is discriminative classification (logistic regression on combined data) better than generative?
  6. How do you quantify confidence in the classification of a new sample?
  7. What if both and are tiny — how do you handle?
  8. Sample complexity scaling: — derive the intuition.
  9. What if priors are unknown?
  10. What if the loss is asymmetric?
  11. KDE bandwidth — how do you pick it?
  12. What's Silverman's rule of thumb?
  13. Walk me through the 90-second oral answer end to end.

Section J — Brain-teaser style (Q76–95)

  1. Coin flip: 10 heads in a row. given prior on bias?
  2. Two arrays of size from continuous distributions. New point. Decide source.
  3. Birthday problem — formula and answer for 50%.
  4. Monty Hall — and why it breaks under random host.
  5. uniform — compute .
  6. — what's ?
  7. Sum of i.i.d. exponentials — what distribution?
  8. Why is median more robust than mean?
  9. Estimate via Monte Carlo.
  10. Detect a change-point in a Gaussian stream — algorithm?
  11. German tank problem — MLE and MVUE.
  12. Welch's -test — when?
  13. AB test: — should you ship?
  14. Power calculation: detect vs at 5% Type-I, 5% Type-II — sample size?
  15. Variance of sample variance for Gaussian — formula?
  16. Estimate the mean from 3 samples — what's the CI?
  17. Empirical CDF vs density estimation — what's the gotcha?
  18. Test if a sample is normal — three methods.
  19. Two-sample distribution test — Kolmogorov-Smirnov vs Mann-Whitney vs -test.
  20. Estimate KL between two empirical distributions — three methods.

Section K — Common follow-up probes (Q96–105)

  1. "What if your prior is wrong?"
  2. "What's the variance of your estimator?"
  3. "What if the distributions overlap heavily?"
  4. "What's your sample complexity?"
  5. "What if you don't know the parametric family?"
  6. "What if the loss is asymmetric?"
  7. "How would this fail in production?"
  8. "Why are you confident in your estimator?"
  9. "Compare with another method — bias-variance trade-off?"
  10. "Connection to information theory?"

Quick fire (Q106–125)

  1. One line: Bayes' rule.
  2. One line: likelihood ratio test.
  3. One line: Neyman-Pearson lemma.
  4. One line: KL between two Gaussians.
  5. One line: Cramér-Rao bound.
  6. One line: Hoeffding inequality.
  7. One line: CLT.
  8. One line: UCB.
  9. One line: Thompson sampling.
  10. One line: importance sampling.
  11. One line: James-Stein.
  12. One line: Chernoff information.
  13. One line: Bayes error rate.
  14. One line: empirical CDF.
  15. One line: KDE.
  16. One line: Welch's -test.
  17. One line: power of a test.
  18. One line: change-point detection.
  19. One line: German tank problem.
  20. One line: discriminative vs generative classification.

Self-grading

  • 110+ correct: ready for frontier-lab probability rounds.
  • 80–109: re-read framework sections (§2–§8) and the worked examples (§10).
  • 50–79: re-read full deep dive then redo.
  • <50: spend three days drilling the deep dive.

5-day drill plan

  • Day 1: §1 (framing) + §2 (Bayesian classification). Drill A, B.
  • Day 2: §3 (MLE) + §4 (concentration). Drill C, D.
  • Day 3: §5 (KL) + §6 (bandits) + §7 (importance) + §8 (Stein). Drill E, F, G, H.
  • Day 4: §9 (two-distribution scenario, memorize the 90-second answer) + §10 (25 worked questions). Drill I, J.
  • Day 5: §11 (follow-up probes) + §12 (senior signals) + Quick fire. Whiteboard 5 random questions end-to-end out loud.