Calculate PDF, CDF, and descriptive statistics for the Weibull distribution. Model equipment failure times, extreme values, and reliability data.
Last updated: March 2026
Determines shape (k > 1: increasing failure rate; k = 1: constant rate)
Scaling parameter (stretch factor)
Point at which to evaluate PDF/CDF (x ≥ 0)
Median
0.783220
Mode
0.480750
Std Dev (σ)
0.612936
The Weibull distribution is a continuous probability distribution widely used to model the lifetimes of objects and phenomena. It describes how long something lasts before it fails, and is central to reliability engineering, quality control, and failure analysis.
The Weibull distribution is defined by two parameters: shape (k) and scale (λ). The shape parameter controls the distribution's behavior:
The scale parameter λ stretches the distribution horizontally and represents the characteristic life — the time at which about 63.2% of items have failed.
Use Weibull distribution for reliability data, failure rates, material strength, and extreme value phenomena. Fitting k and λ to historical failure data predicts future equipment lifetimes and guides maintenance schedules.
Equipment Maintenance: Projected Failure Time
Shape (k) determines the distribution's form: <1 means early failures, =1 means constant rate, >1 means wear-out. Scale (λ) stretches the curve horizontally; larger λ shifts failures later in time.
Maximum likelihood estimation (MLE) or least-squares regression on log-transformed data. Many software packages (R, Python) automate this. Once fitted, your k and λ values model the specific equipment.
Exponential is a special case: k=1. Weibull generalizes it. Exponential models purely random failures (no memory). Weibull with k>1 models realistic wear-out dynamics.
At x = λ: F(λ) = 1 − exp(−1) ≈ 0.632. This is why λ is called the 'characteristic life' — about 63.2% of items fail by this time.
No. Both must be positive. k>0 ensures PDF integrates to 1. λ>0 ensures the scale is meaningful. Negative values violate the distribution's mathematical definition.
At x=0: CDF=0 (no failures yet), but PDF(0) depends on k. When k>1: PDF(0)=0 (smooth start). When k=1: PDF(0)=1/λ (exponential). When 0<k<1: PDF(0) diverges to infinity. Be cautious with k<1 near x=0.
Related Tools
Gaussian probabilities.
Z-score from probability.
Binary outcome probabilities.
Rare event frequency.
Time between events.
Equal probability distribution.