Key Takeaways
- The PDF f(x) satisfies ∫_{-∞}^{∞} f(x) dx = 1
- The CDF F(x) = P(X ≤ x) for a random variable X
- PDF is non-negative: f(x) ≥ 0 for all x
- PDF f(x) ≥ 0 ∀x ∈ ℝ
- ∫ f(x) dx = 1 over support
- E[X] = ∫ x f(x) dx
- CDF F(x) = ∫_{-∞}^x f(t) dt
- PDF f(x) = F'(x) almost everywhere
- P(a < X ≤ b) = F(b) - F(a)
- Tail probabilities via CDF
- Normal distribution in finance models asset returns
- CDF used for p-values in hypothesis testing
- PDF kernel estimation for density estimation
- R uses pnorm for normal CDF
- Python scipy.stats.norm.pdf computes PDF
PDFs describe local probability density while CDFs accumulate probabilities across a range.
Applications in Statistics
- Normal distribution in finance models asset returns
- CDF used for p-values in hypothesis testing
- PDF kernel estimation for density estimation
- CDF for confidence intervals via pivotal quantities
- Exponential PDF/CDF in survival analysis
- Chi-squared CDF in goodness-of-fit tests
- T-distribution CDF for small sample tests
- F-distribution in ANOVA variance tests
- Poisson approximation via normal CDF for large λ
- Binomial CDF for proportion confidence
- Weibull PDF/CDF in reliability engineering
- Logistic CDF in logit models
- Gamma PDF in Bayesian priors
- Beta CDF for proportion modeling
- Multivariate normal PDF in PCA
- Empirical CDF in nonparametrics
- Gumbel CDF for extreme value theory
- Pareto PDF for heavy tails in finance
- Cauchy PDF no mean, CDF arctan
- Laplace PDF in signal processing
- Rayleigh PDF for wind speeds
- Inverse Gaussian in Brownian motion first passage
- Lognormal PDF for stock prices
- Dirichlet PDF for compositional data
- Von Mises PDF for circular data
Applications in Statistics Interpretation
Computational Aspects
- R uses pnorm for normal CDF
- Python scipy.stats.norm.pdf computes PDF
- Numerical integration for CDF from PDF
- FFT for PDF convolution
- Monte Carlo simulation via inverse CDF
- KDE bandwidth selection via CV
- Quantile regression minimizes CDF check function
- Numerical CDF inversion for quantiles
- Saddlepoint approximation for CDF
- Lattice algorithms for discrete CDF
- GPU acceleration for PDF evaluations
- Symbolic computation in Mathematica PDF[]
- Adaptive quadrature for integrals
- BIC for PDF model selection
- MCMC sampling from PDF
- Boostrap for empirical CDF
- Parallel computing for KDE
- Asymptotic expansions for CDF tails
- Table lookups for standard CDFs
- Rational approximations for normal CDF
- Finite difference for PDF from CDF numerically
- Vectorized computations in NumPy
- High precision libraries for CDF
- Uniform random via inverse CDF method
Computational Aspects Interpretation
Examples and Specific Distributions
- Normal PDF: 1/sqrt(2 pi sigma^2) exp(-(x-mu)^2/(2 sigma^2))
- Normal CDF approximated by erf(x/sqrt(2))
- Exponential PDF λ e^{-λx} for x≥0
- Exponential CDF 1 - e^{-λx}
- Uniform PDF 1/(b-a) on [a,b]
- Uniform CDF (x-a)/(b-a) on [a,b]
- Gamma PDF (β^α / Γ(α)) x^{α-1} e^{-βx}
- Beta PDF (Γ(α+β)/(Γ(α)Γ(β))) x^{α-1} (1-x)^{β-1}
- Chi-squared PDF with k df: 1/(2^{k/2} Γ(k/2)) x^{k/2 -1} e^{-x/2}
- T-distribution PDF Γ((ν+1)/2) / (sqrt(νπ) Γ(ν/2)) (1 + x^2/ν)^{-(ν+1)/2}
- F-distribution PDF complex hypergeometric form
- Lognormal PDF 1/(x σ sqrt(2π)) exp( -(ln x - μ)^2 / (2σ^2) )
- Weibull PDF (k/λ) (x/λ)^{k-1} e^{-(x/λ)^k}
- Pareto PDF α x_m^α / x^{α+1} for x ≥ x_m
- Cauchy PDF 1/(π (1 + x^2))
- Laplace PDF (1/(2b)) exp(-|x-μ|/b)
- Logistic PDF e^{-(x-μ)/s} / (s (1 + e^{-(x-μ)/s})^2 )
- Rayleigh PDF (x/σ^2) exp(-x^2/(2σ^2))
- Binomial CDF sum_{k=0}^floor(x) C(n,k) p^k (1-p)^{n-k}
- Poisson PDF e^{-λ} λ^k / k!, CDF regularized gamma
Examples and Specific Distributions Interpretation
Fundamental Definitions
- The PDF f(x) satisfies ∫_{-∞}^{∞} f(x) dx = 1
- The CDF F(x) = P(X ≤ x) for a random variable X
- PDF is non-negative: f(x) ≥ 0 for all x
- CDF is right-continuous with left limits
- F(-∞) = 0 and F(∞) = 1 for CDF
- PDF integrates to CDF: F(b) - F(a) = ∫_a^b f(x) dx
- For discrete variables, PDF is PMF, CDF is cumulative sum
- PDF represents density at a point
- CDF is the integral of PDF from -∞ to x
- PDF can be multimodal
- CDF is monotonically non-decreasing
- PDF for uniform distribution is 1/(b-a) on [a,b]
- CDF jumps at discontinuities for discrete parts
- PDF is zero outside support
- CDF defined for all real-valued random variables
- PDF derivative of CDF where differentiable
- CDF F(x) = ∫_{-∞}^x f(t) dt
- PDF f(x) = lim_{h→0} P(x ≤ X < x+h)/h
- CDF P(X ≤ x) includes equality
- PDF integrates to probability over intervals
- CDF is cadlag (continue à droite, limite à gauche)
- PDF for continuous uniform is constant
- CDF reaches 1 asymptotically
- PDF can be estimated nonparametrically
- CDF for exponential is 1 - e^{-λx}
- PDF undefined for discrete at points
- CDF continuous for absolutely continuous distributions
- PDF f(x) = dF(x)/dx where exists
- CDF bounded between 0 and 1
- PDF area under curve is 1
Fundamental Definitions Interpretation
Interrelationships PDF-CDF
- CDF F(x) = ∫_{-∞}^x f(t) dt
- PDF f(x) = F'(x) almost everywhere
- P(a < X ≤ b) = F(b) - F(a)
- Quantile function Q(p) = F^{-1}(p)
- Survival function S(x) = 1 - F(x)
- PDF hazard rate h(x) = f(x)/S(x)
- Empirical CDF converges to true CDF by Glivenko-Cantelli
- Differentiating CDF gives PDF under continuity
- Kolmogorov-Smirnov tests CDF equality
- PDF from CDF via fundamental theorem of calculus
- CDF from PDF by antiderivative
- Percentiles from CDF inverse
- Integration by parts links moments via PDF/CDF
- Von Mises transform relates smooth CDF to PDF
- QQ plots compare empirical CDF to theoretical
- Anderson-Darling tests PDF via CDF
- Probability integral transform U = F(X) ~ Uniform(0,1)
- CDF convolution for min/max of independents
- PDF of order statistics from CDF
- Copula links joint CDF to margins
- Differentiation under integral for parameter derivatives
- Normal PDF φ(x) = 1/√(2π) e^{-x^2/2}, CDF Φ(x) no closed form
- Normal scores from inverse CDF
- Uniform PDF used in simulation via inverse CDF
Interrelationships PDF-CDF Interpretation
Interrelationships PDF-CDF; wait no, https://en.wikipedia.org/wiki/Regular_variation
- Tail probabilities via CDF
Interrelationships PDF-CDF; wait no, https://en.wikipedia.org/wiki/Regular_variation Interpretation
Mathematical Properties
- PDF f(x) ≥ 0 ∀x ∈ ℝ
- ∫ f(x) dx = 1 over support
- E[X] = ∫ x f(x) dx
- Var(X) = ∫ (x-μ)^2 f(x) dx
- Moments from PDF via integrals
- PDF convolution for sum of independents
- Characteristic function φ(t) = ∫ e^{itx} f(x) dx
- PDF symmetric for symmetric distributions
- Tail behavior determines moments existence
- PDF transforms under variable change f_Y(y) = f_X(g^{-1}(y)) / |g'(g^{-1}(y))|
- Quantiles from CDF inverse
- PDF skewness γ = E[(X-μ)^3]/σ^3 from PDF
- Kurtosis from fourth moment integral
- PDF Laplace transform for MGF
- Entropy H = -∫ f log f dx maximized for uniform
- Fisher information I(θ) = ∫ (∂log f/∂θ)^2 f dx
- PDF orthogonal polynomials for expansions
- Mode at argmax f(x)
- Inflection points relate to skewness
- PDF support determines domain
- Bandwidth affects smoothness in kernel PDF
- PDF monotone implies unimodal
- Higher derivatives relate to cumulants
- PDF Fourier transform is characteristic function
- Asymptotic expansion via Edgeworth series
- Renyi entropy from PDF integrals
- PDF L_p norms for concentration
Mathematical Properties Interpretation
Sources & References
- Reference 1ENen.wikipedia.orgVisit source
- Reference 2MATHWORLDmathworld.wolfram.comVisit source
- Reference 3STATTREKstattrek.comVisit source
- Reference 4ITLitl.nist.govVisit source
- Reference 5SEEING-THEORYseeing-theory.brown.eduVisit source
- Reference 6BRILLIANTbrilliant.orgVisit source
- Reference 7MATHmath.stackexchange.comVisit source
- Reference 8PROBABILITYCOURSEprobabilitycourse.comVisit source
- Reference 9KHANACADEMYkhanacademy.orgVisit source
- Reference 10ONLINEonline.stat.psu.eduVisit source
- Reference 11MATHmath.libretexts.orgVisit source
- Reference 12STATLECTstatlect.comVisit source
- Reference 13MATHSISFUNmathsisfun.comVisit source
- Reference 14SAL KHANACADEMYsal Khanacademy.orgVisit source
- Reference 15STATSstats.stackexchange.comVisit source
- Reference 16ONLINECOURSESonlinecourses.nptel.ac.inVisit source
- Reference 17YOUTUBEyoutube.comVisit source
- Reference 18JSTORjstor.orgVisit source
- Reference 19STATstat.ethz.chVisit source
- Reference 20DOCSdocs.scipy.orgVisit source
- Reference 21NUMPYnumpy.orgVisit source
- Reference 22SCIKIT-LEARNscikit-learn.orgVisit source
- Reference 23DEVELOPERdeveloper.nvidia.comVisit source
- Reference 24REFERENCEreference.wolfram.comVisit source
- Reference 25CRANcran.r-project.orgVisit source






