Markov model on a sequence of numbers

  • Context: High School 
  • Thread starter Thread starter iheadset
  • Start date Start date
  • Tags Tags
    Model Numbers Sequence
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 2K views
iheadset
Messages
3
Reaction score
0
Dear Sir,
Assuming that my lottery machine can generate 10 numbers (0..9), in which 0 and 9 are supposed to be starting and ending states of my Markov chain. I apply Markov chain to model each number appearance because I would want to modify the random generation process into, say, my own process, such that each currently output number will show up in dependence of the previously generated number.
Now I would like to run my generator 1000 times and given the probability for any number to reach the end state is x, how can I calculate the sum of probabilities of all integral sequences then ?
Thank you Sir.
 
Physics news on Phys.org
Hey iheadset.

When you say sum of probabilities do you mean the sum of them at each transition point or the sum of events at the final transition?
 
  • Like
Likes   Reactions: iheadset
chiro said:
Hey iheadset.

When you say sum of probabilities do you mean the sum of them at each transition point or the sum of events at the final transition?
Yes, that is right Sir. I would like to find that sum.
 
That means you are looking at a T + T^2 + T^3 + ... + T^n matrix to find the sum of these transition matrices.

If you supply an initial probability as your vector and apply it to the above sum there is only one more thing to do - which is to find intersections in events and remove them as they will be "double counted".

You will probably have to resort to the Markov property to do this and generate identities which you can use to find them.
 
'You can try permutation and combinations'. I think it is the easiest method to solve the problem and also you get approximate method. You can try this.