Answer:
Explanation:
In all Markov-chain problems, the first thing to set up is the state space; in your case the system would be described by pairs which indicate the state of the beds, say e for empty, f for full and d for discharging. So one state would be a pair, for instance {e,d} would indicate that one bed is empty and one bed contains a patient that will leave on the next day. One possible state-space describing the clinic is,
S={{e,e},{e,d},{e,f},{d,f}}.
Note that in the problem (and in the model) there is no ordering in the beds and {e,d} is the same as {d,e}; note also that the case {f,f} is impossible because two guests cannot arrive together and, in case one bed is f on one day it would become d on the following day.
Once the state space is defined, you have to define the transition function which gives the probability of the next state given the current state. In such a small problem can be done by plain enumeration of cases with their associated probabilities p
- {e,e}: no guest arrives (stay in {e,e} with p=.5) or one guest arrives (move to {e,f}, with p=.5);
- {e,f}: Either one guest arrives, and the current guest stays (move to {d,f}with p=.25); one guest arrives and the current guest leaves (stay in {e,f}with p=.2); no guest arrives and the current guest stays (move to {d,e} with p=.25); no guest arrives and the current guest leaves (move to {e,e}with p=.25)
- {e,d}: no guest arrives (move to {e,e} with p=.5); one guest arrives (move to {e,f}with p=.5)
- {d,f}: two guests leave (move to {e,e}with p=.5); one guest leaves (move to {e,d} with p=.5)
Stationary probability: Let stationary probability of a state i
is given as PI(ij).So from the lingo results, the stationary probabilities are as follows.
PI(00)=0.182
PI(01)=0.182
PI(10)=0.159
PI(11)=0.250
PI(12)=0.091
PI(20)=0.023
PI(21)=0.068
PI(22)=0.045
Here PI(00)=0.182 represents the stationary probability of state 00.
Let the fraction of days where all beds are utilized is represented as PI(2).
Here PI(12) denotes the function, where for 2 consecutive days the 1
bed was utilized for 1 day and 2 beds were in use on the consecutive day.
So, PI(2) can be calculated as:
PI(2)=PI(12/2)+PI(20/2)+PI(21/2)+PI(22)
=0.091/2+0.023/2+0.068/2+0.045
=0.0455+0.0115+0.034+0.045
=0.136
So, 13.6% of times, all the beds are utilized.