Weibull dist
WEIBULL.DIST Function¶
The WEIBULL.DIST function in Excel is used to calculate the Weibull distribution. It can return either the
probability density function (PDF) or the cumulative distribution function (CDF) of the Weibull distribution, depending
on the input parameters.
Key Features of WEIBULL.DIST:¶
- Statistical Analysis: Commonly used in reliability analysis, failure rate modeling, and life data analysis.
- Flexible Output: Can calculate either cumulative distribution (for probabilities) or probability density (for likelihood at a specific value).
- Shape and Scale Parameters: The function relies on these parameters to adjust the curve of the distribution.
Syntax:¶
- x: Required. The value for which you want to evaluate the function. Must be ≥ 0.
- alpha: Required. The shape parameter of the Weibull distribution. Must be > 0.
- beta: Required. The scale parameter of the Weibull distribution. Must be > 0.
- cumulative: Required. A logical value (TRUE or FALSE) that specifies the type of distribution to calculate:
TRUE: Returns the cumulative distribution function (CDF).FALSE: Returns the probability density function (PDF).
How It Works:¶
-
Cumulative Distribution Function (CDF): For
cumulative = TRUE, the function computes the probability that a random variable from the Weibull distribution is less than or equal tox: -
Probability Density Function (PDF): For
cumulative = FALSE, the function computes the likelihood or density at a specific valuex:
Where:
- F(x) is the cumulative probability.
- f(x) is the probability density.
- α (alpha) is the shape parameter.
- β (beta) is the scale parameter.
- e is the base of the natural logarithm.
Examples:¶
- Cumulative Distribution (CDF):
Suppose you want to calculate the cumulative probability for
x = 5withalpha = 2andbeta = 3:
Result: Returns the probability that the random variable is less than or equal to 5.
- Probability Density (PDF):
To calculate the PDF at
x = 5withalpha = 2andbeta = 3:
Result: Returns the likelihood of exactly 5 in the Weibull distribution.
- Fail-Safe Testing:
If you're measuring the probability of failure within a time threshold (e.g.,
x = 10), given a product lifetime modeled byalpha = 1.5andbeta = 12, you can compute:
Comparisons with Related Functions:¶
WEIBULL.DISTvsEXPON.DIST:WEIBULL.DISTallows for variable shapes of the distribution with the shape parameteralpha.EXPON.DISTis a specific case of the Weibull distribution wherealpha = 1.
WEIBULL.DISTvsNORM.DIST:WEIBULL.DISTis suited for modeling time-to-failure and reliability analysis.NORM.DISTis used for normal (Gaussian) distributions.
Notes:¶
- Input Requirements:
xmust be greater than or equal to 0.alphaandbetamust be positive values, otherwise, the function returns a#NUM!error.
- Logical
cumulativeInput:- Input can be a boolean value (
TRUEorFALSE) or numeric equivalents (1for TRUE,0for FALSE).
- Input can be a boolean value (
Applications:¶
- Reliability Engineering: Model time between failures of components or systems.
- Risk Analysis: Calculate probabilities of events occurring within specified ranges.
- Lifetime Predictions: Estimate useful life of products before failure.
- **Queuing Theory