Intuition The one core idea
A continuous distribution is a way of smearing exactly one unit of "probability mass" over a range of numbers, like spreading one kilogram of butter over a slice of bread — thick where values are likely, thin where they are rare. Everything in the parent topic is just: choose the shape of the smear, then measure areas under it.
Before you can read a single formula in the parent note, you need to own the alphabet it speaks in. Below is every symbol and idea it uses, ordered so each one leans only on the ones above it. Nothing appears before it is earned.
Definition The number line and
[ a , b ]
A number line is just the ruler of all real numbers stretching left (negative) and right (positive). An interval [ a , b ] is the stretch of ruler from the number a to the number b , including both ends.
a = the left edge (smallest allowed value).
b = the right edge (largest allowed value).
Square bracket [ ] = endpoint included; round bracket ( ) = endpoint excluded.
Picture it: a horizontal ruler with two vertical fence-posts at a and b . The region between the posts is where our random quantity is allowed to land.
Why the topic needs it: every distribution lives on some stretch of the line — Uniform on [ a , b ] , Exponential on [ 0 , ∞ ) , Beta on [ 0 , 1 ] . The interval is the stage on which probability is spread.
Definition Random variable
A random variable X is a quantity whose value is decided by chance — the height of the next person you meet, the wait for the next bus. We write it with a capital letter X ; a specific value it might take we write with a small letter x .
Picture it: a pointer that will drop somewhere onto the number line, but you don't yet know where. Different runs of the experiment drop it in different places.
Why the topic needs it: the whole subject is about describing where the pointer tends to land . X is the thing; the distribution is the description of X 's habits.
P ( something ) = a number between 0 and 1 measuring how likely "something" is. 0 = impossible, 1 = certain, 0.5 = fifty-fifty.
P ( X ≤ x ) reads "the probability that X lands at or below the value x ."
The symbol ≤ means "less than or equal to"; > means "greater than."
Intuition Why probability becomes
area for continuous things
For a continuous X , the chance of hitting exactly one precise number (say exactly 3.0000 … ) is 0 — there are infinitely many nearby numbers to miss. So we never ask "chance of exactly x "; we ask "chance of landing in a range ," and that chance is an area under a curve.
Why the topic needs it: this single move — probability = area — is the engine of the entire chapter. Every formula is secretly "compute this area."
Definition Function notation
f ( x )
A function f is a machine: feed it a number x , it returns a number f ( x ) . The graph of f is the curve you get by plotting height f ( x ) above each point x .
Definition Probability density function (PDF)
The probability density function f ( x ) is the curve whose height tells you how concentrated the probability is near x — tall = likely neighbourhood, short = rare neighbourhood. Two rules make it legal:
f ( x ) ≥ 0 ( height never negative ) , ∫ − ∞ ∞ f ( x ) d x = 1 ( total area = 1 ) .
Common mistake "The height
f ( x ) is a probability."
Why it feels right: it sits between us and probability. Fix: height is density (probability per unit length ), not probability. It can even exceed 1 (e.g. a very narrow tall spike). Only area — height × width, added up — is a probability.
Why the topic needs it: f ( x ) is the "shape of the butter smear." Choosing f is choosing the distribution.
Definition The integral sign
∫ a b f ( x ) d x
∫ a b f ( x ) d x is a single instruction: "add up the area under the curve f from x = a to x = b ." Read the pieces:
∫ = a stretched "S" for S um.
d x = an infinitely thin slice of width along the x -axis.
f ( x ) d x = the area of one skinny rectangle: height f ( x ) times tiny width d x .
The ∫ a b glues all those slivers together from a to b .
this tool and not plain multiplication?
If the curve were a flat line of constant height c , area would just be c × ( b − a ) — simple multiplication. But probability curves bend : height changes as you move. Multiplication needs a constant height; the integral is the only tool that correctly totals a varying height by chopping the region into slivers thin enough that each is flat. That is exactly the question a probability asks: "how much area under a curvy shape?"
Why the topic needs it: P ( a ≤ X ≤ b ) = ∫ a b f ( x ) d x . Mean, variance, and every normalizing constant are integrals.
Definition Cumulative distribution function (CDF)
F ( x ) = P ( X ≤ x ) = ∫ − ∞ x f ( t ) d t is the running total of area collected from far left up to x . It climbs from 0 (left of everything) to 1 (right of everything) and never goes down.
(We use a dummy letter t inside because x is already busy naming the top edge.)
F ′ ( x )
The derivative F ′ ( x ) is the slope (steepness) of the CDF curve at x — how fast the running area is growing right there. Fast growth means lots of density: hence f ( x ) = F ′ ( x ) . The PDF and CDF are two views of one object: density is the slope of accumulated area; accumulated area is the sum of density.
Why the topic needs it: the parent derives every distribution by writing down either f or F and flipping between them with ∫ (going up) and ′ (going down).
E [ X ] and the mean μ
E [ X ] ("expected value") is the balance point of the density — where the curve would balance on a pivot. We call it the mean and name it μ (Greek letter "mu"):
μ = E [ X ] = ∫ − ∞ ∞ x f ( x ) d x .
Each sliver of area f ( x ) d x is weighted by its position x ; adding them gives the centre of mass.
σ
Variance Var ( X ) = E [ X 2 ] − μ 2 measures average squared spread — how far, squared, values sit from the mean on average. Its square root σ (Greek "sigma") is the standard deviation , a spread in the same units as X .
squared distance?
Plain distance from the mean averages to 0 (overshoots cancel undershoots). Squaring makes every gap positive, so they can't cancel — and it punishes big misses more. That is the question variance answers: "how wide is the smear?"
Why the topic needs it: every distribution is summarised by its ( μ , σ 2 ) , and the parent computes both as integrals for all five.
e and e − λ t
e ≈ 2.718 is the natural growth constant. e − λ t is a curve that starts at 1 (when t = 0 ) and decays smoothly toward 0 as t grows. The bigger the rate λ (Greek "lambda"), the faster the drop.
Intuition Why exponentials appear in waiting problems
e − λ t is the only shape with the property "the fraction lost per unit time is always the same." That constant-forgetting is exactly what a memoryless wait needs — see Poisson Process . So the tool is chosen because it matches the physics , not by accident.
Why the topic needs it: Exponential, Gamma, and Normal densities all contain an e factor; it controls how fast the tails thin out.
Definition Symbols you will meet
α , β (alpha, beta) — shape parameters; they bend a curve's silhouette.
Γ ( α ) — the Gamma Function , a smooth stand-in for the factorial: Γ ( n ) = ( n − 1 )! .
B ( α , β ) — the Beta Function , the exact area that normalises a Beta curve.
Φ (capital phi) — the CDF of the standard bell N ( 0 , 1 ) ; a table-lookup function.
π ≈ 3.14159 — the circle constant, showing up in the bell via 2 π .
Why the topic needs it: these are the normalising constants — the numbers you divide by so the total area equals exactly 1 . Without them a "density" would enclose the wrong amount of butter.
Number line and interval a to b
CDF F and derivative F prime
Exponential decay e to minus lambda t
Greek and special functions
Cover the right side and see if you can answer before revealing.
What does the height f ( x ) of a density represent (and what is it not )? Density = probability per unit length; it is not a probability. Only area under f is a probability, so f ( x ) can exceed 1 .
Why do we ask P ( a ≤ X ≤ b ) instead of P ( X = x ) for continuous X ? The chance of hitting one exact real number is 0 ; probability only accumulates over a range, as area.
What single instruction does ∫ a b f ( x ) d x encode? "Add up the area under the curve f from x = a to x = b ," by summing infinitely thin height-times-width slivers.
Why an integral rather than multiplication for area under f ? The height varies; multiplication needs constant height, so we chop into slivers thin enough to be flat and sum them.
How are the PDF f and CDF F related in both directions? F ( x ) = ∫ − ∞ x f ( t ) d t (integrate up) and f ( x ) = F ′ ( x ) (differentiate down — density is the slope of accumulated area).
What is the mean μ geometrically, and its integral form? The balance point of the density; μ = ∫ x f ( x ) d x .
Why square the distance from the mean in variance? So overshoots and undershoots cannot cancel to zero, and larger misses count more.
What does e − λ t do as t grows, and what does λ control? Decays smoothly from 1 toward 0 ; larger rate λ means faster decay.
What job do Γ , B , 2 π , and Φ all secretly do? They are normalising constants / area tools ensuring total probability is exactly 1 (and Φ reads off standard-normal areas).