Login
📚 Mostly Harmless Statistics
Chapters ▾
⇩ Download ▾

6.7 Chapter 6 Formulas

Uniform Distribution f(x)=1ba, for axb P(Xx)=P(X>x)=(1ba)·(bx) P(Xx)=P(X<x)=(1ba)·(xa) P(x1Xx2)=P(x1<X<x2)=(1ba)·(x2x1) Exponential Distribution f(x)=1μe(xμ), for x0 P(Xx)=P(X>x)=ex/μ P(Xx)=P(X<x)=1ex/μ P(x1Xx2)=P(x1<X<x2)=e(x1μ)e(x2μ)
Standard Normal Distribution μ=0,σ=1
z-score: z=xμσ
x=zσ+μ
Central Limit Theorem Z-score: z=x¯μ(σn)
Normal Distribution Probabilities: P(X ≤ x) = P(X < x) Bell curve with the left-tail area below a value left of the mean shaded green, illustrating the left-tail probability P(X <= x). Excel: =NORM.DIST(x,µ,σ,true) TI-84: normalcdf(-1E99,x,µ,σ)
P(X ≥ x) = P(X > x) Bell curve with the right-tail area above a value right of the mean shaded green, illustrating the right-tail probability P(X >= x). Excel: = 1–NORM.DIST(x,µ,σ,true) TI-84: normalcdf(x,1E99,µ,σ) P(x1 ≤ X ≤ x2) = P(x1 < X < x2) = Bell curve with the central area between two values on either side of the mean shaded green, illustrating the between probability P(x1 <= X <= x2). Excel: =NORM.DIST(x2,µ,σ,true)- NORM.DIST(x1,µ,σ,true) TI-84: normalcdf(x1,x2,µ,σ)
Percentiles for Normal Distribution: P(X ≤ x) = P(X < x) Bell curve with the left-tail area shaded green, illustrating the percentile case of finding the x-value with a given area to its left, P(X <= x). Excel: =NORM.INV(area,µ,σ) TI-84: invNorm(area,µ,σ)
P(X ≥ x) = P(X > x) Bell curve with the right-tail area shaded green, illustrating the percentile case of finding the x-value with a given area to its right, P(X >= x). Excel: =NORM.INV(1–area,µ,σ) TI-84: invNorm(1–area,µ,σ) P(x1 ≤ X ≤ x2) = P(x1 < X < x2) = Bell curve with the middle area between two values shaded green, illustrating finding the two x-values x1 and x2 that bound a given central area. Excel: x1 =NORM.INV((1–area)/2,µ,σ) x2 =NORM.INV(1–((1–area)/2),µ,σ) TI-84: x1 = invNorm((1–area)/2,µ,σ) x2 =invNorm(1–((1–area)/2),µ,σ)

Adapted from Mostly Harmless Statistics by Rachel Webb (Portland State University), hosted on LibreTexts (stats.libretexts.org) and licensed under CC BY-SA 4.0. Changes were made. License: CC-BY-SA-4.0.