5

Consider The distribution of lifetimes, X(in months), of a particular type of component. The Cumulative distribution function (CDF) has the form

$$F(x)=\begin{cases} 1 - e^{-(x/3)^2},& \text{if} ~ x \gt 0\\\\ 0,&\text{otherwise}.\\\\ \end{cases}$$

How to calculate the median?

Amzoti
  • 56,093
Ria
  • 53

2 Answers2

3

HINT: Median is the point $x_0$ where cdf $F(x_0)=0.5$

EDIT: $$1-e^{-\frac{{x_0}^2}{9}}=0.5\iff e^{-\frac{{x_0}^2}{9}}=0.5\iff \frac{{x_0}^2}{9}=-\ln0.5\iff x_0=3(\ln 2)^{1/2}$$

Aang
  • 14,672
2

$F(x_0) = 1 - e^{-(x_0/3)^2}=0.5\implies -x_0^2/9=ln(0.5)\implies x_0=3 \sqrt{\ln(2)}$

Aang
  • 14,672
Bravo
  • 4,413