TRUECALC
Functions

WEIBULL.DIST

Weibull distribution

Try it

When to use it

When should I use WEIBULL.DIST?

Use WEIBULL.DIST when modeling time-to-failure or reliability — it computes the probability that a component fails by a given time (cumulative=TRUE) or the instantaneous failure density (cumulative=FALSE), using shape (alpha) and scale (beta) parameters.

Used in

operations

Syntax

WEIBULL.DIST(x,alpha,beta,cumulative)

Examples

=WEIBULL.DIST(2.4,2,3,TRUE) // => 0.47270757595695134
=WEIBULL.DIST(2.4,2,3,FALSE) // => 0.2812226261562926

On this page