In Freedonia, every day is either cloudy or sunny (not both). If it's sunny on any given day, then the probability that the next day will be sunny is $\frac 34$. If it's cloudy on any given day, then the probability that the next day will be cloudy is $\frac 23$.
a. In the long run, what fraction of days are sunny?
b. Given that a consecutive Saturday and Sunday had the same weather in Freedonia, what is the probability that that weather was sunny?
I tried using weighted coins, but that didn't work. Can I get two answers, one for each problem, solution not necessary, as I need to figure out which of my methods leads to the correct answer. Thanks.
I found a congruent problem, but it didn't have answers I could comprehend.
Consider a 'cycle': Start with a sunny day; probability of changing to a rainy day is 1/4. so on average a run of sunny days will be four days long. Then (by similar logic) there will be a run of rainy days averaging four days in length. Average cycle length is 7 days of which 4 are sunny. Answer to (a) is 4/7.
Addendum: Here is a simulation of 100,000 steps of the chain using R software, where state 0 = Sun and state 1 = Rain. (Note that @GrahamKemp's excellent Answer, posted while I was working on this, uses 1 = Sun and 0 = Rain.)
For your part (a), We already know that the steady-state distribution has sum 4/7 of the time; this is consistent with simulation results. For your part (b), the required conditional probability is 3/5, again consistent with simulation results.
A sketch of my rationale for (b) is $P(\text{SS}) = (4/7)(3/4) = 3/7,\;$ $P(\text{RR}) = 2/7.\;$ So the answer is $\frac{3/7}{3/7 + 2/7}.$
You asked for answers to check against the ones you already obtained. I have tried to give them to you in a way that may show you how to think about such simple Markov chains from points of view that may not be in your textbook.