Before you can read the parent note comfortably, you need to earn every symbol it throws at you. This page starts from a smart 12-year-old with zero notation and builds each piece, one on top of the last. Nothing here contradicts the parent — it is the scaffolding underneath it.
Prerequisite vault stops on the way: Bootstrap (statistics), Decision Trees, Bias-Variance Tradeoff, and the destination is the parent Bagging topic (and later Random Forests, Ensemble Methods).
Imagine you want to guess a house's price from its size. A model is a rule that eats an input and spits out a number. We write the input as x (the house's size) and the model's guess as f^(x) — read aloud: "f-hat of x".
Why does the parent treat f^(x) as random? Because if you had collected a slightly different dataset (a different sample of houses), you'd have fit a slightly different rule and gotten a slightly different guess for the very same house. The guess wobbles depending on which data you happened to see. A number that changes with luck-of-the-draw is exactly what we mean by a random variable.
Look at the red dot in the figure: same house x, but three different datasets gave three different predictions. That spread is the randomness we're about to name and measure.
Why does the topic need n? Because the whole magic number of bagging — that ≈37% of points get left out — is really a statement about how big your dataset is, in the limit of large n.
Here is the one physical action bagging is built on.
In the figure, card 3 was drawn twice (duplicate) and card 2 was never drawn (a gap — this becomes an out-of-bag point). This single "replace the card" step is what the bootstrap means, and it's why some points go missing.
Every prediction f^b(x) is a random variable (it depends on the lucky draw Db). Two numbers summarise its cloud — and both are for a fixed input x, so we keep the x visible.
The figure shows two clouds with the same centre μ(x) but different widths — small σ2(x) (tight) vs large σ2(x) (loose). Bagging's whole promise is: keep μ(x) fixed, shrink the width.
Read it with your new vocabulary: the shared-wobble partρσ2 comes straight from the covariance cross-terms and never shrinks; the personal-wobble partB1−ρσ2 comes from the diagonal and melts as B grows. If that sentence makes sense, you're ready for the parent page.
The parent claims (1−n1)n→e−1≈0.368. Where does e come from?
Why e and not just "compute the number"? Because n changes from problem to problem, but the answer barely moves once n is a few hundred — it locks onto the constant e−1. That stability is why the parent can quote a single "37%" for any large dataset.