A system consists of four identical components operating independently, each with an exponentially distributed lifetime. Determine the probability that the system experiences no failures within a specified time period, and the probability that exactly one component fails within a given interval.
Each component lifetime follows an exponential distribution with failure rate 𝜆 =
-3
10
per hour:
In[1]:=
dist=ExponentialDistribution1
1000
h
;
All four components must survive beyond 500 hours:
Compute the probability that exactly one of the four exponentially distributed component lifetimes is ≤ 1200 hours (i.e., exactly one failure within 1200 hours):
In[7]:=
prob2=ProbabilityExactlyK1,t1≤
1200
h
,t2≤
1200
h
,t3≤
1200
h
,t4≤
1200
h
,{t1,t2,t3,t4}ProductDistribution[{dist,4}]
Out[7]=
4(-1+
6/5
)
24/5
In[8]:=
N[%]
Out[8]=
0.0763759
Observe that the two methods give equivalent results: