Solved – Determine Weibull parameters (scale and shape) from hazard rate

distributionshazardweibull distribution

I have a hazard rate given by a 2-parameters Weibull distribution, in the form:

$$h(t) = \cfrac{B}{A} \, \left({\cfrac{t}{A}}\right)^{B – 1}$$

where $A=$ scale parameter and $B=$ shape parameter.
I don't have a lot of knowledge about probability distributions, but I would like to use this one to reproduce the famous bathtub curve.

How can I establish the proper value of $A$ and $B$ in order to obtain 3 distributions like these:

enter image description here
enter image description here
enter image description here

For the green one (constant hazard rate) I know that the ordinate of the line is given by $B/A$, therefore in the example it is 0.1 ($B/A=1/10=0.1$); but for the other two I would like to establish some formula that permits me to establish the value of A and B in order to:

  1. do not exceed never the value of $h(t) = 1$
  2. decrease (or increase) asymptotically until to (from to) the same value of the constant part (e.g. 0.1 in the previous example) so I can "stick" them together at the end like in the following image.

enter image description here

Best Answer

I realize that the question is already three years old, but I think an answer may be of general interest.

I think your question is based on a rather common misconception. The bathtub curve for failure modelling is often being discussed in the literature using three Weibull distributions, one for the infant mortality phase of the curve, one for the random phase, and one for the phase of wear out failures. This is fine conceptually. But trying to build a model based on this same approach of "stitching together" Weibull distributions is a hassle, and, depending on your use case, may not work at all.

Fortunately, there are several approaches to generalizing the Weibull distribution in order to be able to model bathtub curves in practice. Sarhan and Apaloo (2013) may be a good starting point if you're interested in this way of treating the problem.

Related Question