lowball
- 2
- 0
Homework Statement
Performance of a car wash center is modeled by the single-server Bernoulli queueing process with 2-minute frames. Cars arrive every 10 minutes, on the average. The average service time is 6 minutes. Capacity is unlimited. If there are no cars at the center at 10 am, compute the probability that one car is being washed and another car is waiting at 10:04 am.
Homework Equations
Δ = 2 min
λ_A = .1 min^{-1}
λ_S = .167 min^{-1}
p_A = λ_AΔ = .2
p_S = λ_SΔ = .333
p_{00} = 1-p_A = .8
p_{01} = p_A = .2
(1-p_A)p_S = .267
(1-p_S)p_A = .133
1 - .267 - .133 = .6
The Attempt at a Solution
Using the above calculations I formed this transition probability matrix:
P = \begin{pmatrix}<br /> .8 & .2 & 0 & 0 & \dots\\<br /> .267 & .133 & .6 & 0 & \dots\\<br /> 0 & .267 & .133 & .6 & \dots\\<br /> 0 & 0 & .267 & .133 & \dots\\<br /> \vdots & \vdots & \vdots & \vdots & \ddots<br /> \end{pmatrix}
With no cars in the system, the initial distribution is:
P_0 = \begin{pmatrix}1&0&0&0\end{pmatrix}
With a frame size of 2 minutes, 10:04 is 2 frames away from 10:00, thus the distribution after 2 frames is:
P_2 = P_0P^6 = \begin{pmatrix}1&0&0&0\end{pmatrix}\cdot P^2
= \begin{pmatrix}.6934&.1866&.12&0\end{pmatrix}
And the probability for two cars to be in the system after 2 frames is P_2(2) = .12
But that's not accepted as the right answer. The answer in the back of the book says \frac{2}{75}, but that's not even anywhere in the matrix of P^2. Any idea what I'm doing wrong?