Time before visit number one, random walk

Click For Summary
SUMMARY

The discussion focuses on calculating the probability P(N ≥ 1000) in a random walk defined by a Markov chain with specific transition probabilities. The user outlines the properties of the Markov chain, noting it is irreducible and ergodic, with the transition probabilities defined as P0,0 = 1 - p and P0,1 = p. The user suggests that the problem may require approximation techniques due to the Markov property, which complicates the determination of state visits. They propose using MATLAB for calculations and mention that making state X=15 an absorbing state allows for a matrix-based solution.

PREREQUISITES
  • Understanding of Markov chains and their properties
  • Familiarity with transition probability matrices
  • Knowledge of MATLAB for computational simulations
  • Basic concepts of absorbing states in stochastic processes
NEXT STEPS
  • Explore Markov chain properties in depth, focusing on irreducibility and ergodicity
  • Learn how to construct and manipulate transition probability matrices
  • Study techniques for approximating probabilities in random walks
  • Practice using MATLAB for solving stochastic problems and simulations
USEFUL FOR

Mathematicians, statisticians, and students studying stochastic processes, particularly those interested in random walks and Markov chains.

Paalfaal
Messages
13
Reaction score
0
Hi there!

I'm working on a random walk-problem my professor gave me.

Given a MC with the following properties:
P0,0 = 1 - p
P0,1 = p
Pi,i-1 = 1 - pi
Pi,i+1 = pi
i [itex]\in[/itex][1,∞)
Xn: state at step number n

The chain is irreducible and ergodic and 0 < p ≤ 1

introducing N:
N = {min n > 0 : Xn = 15 | X0 = n0}

The problem to be calculated is:

P(N [itex]\geq[/itex] 1000).
for n0 = 0
and n0 = 10




My thoughts:

P(N [itex]\geq[/itex] 1000) = 1 - P(N < 1000) = 1 - [P(N = 999) + P(N = 998) + ...]

Now here's where it gets tricky (I think). It is very hard to determine an exact solution sice the markov property causes the chain to 'forget' if it has been to a state before. That is, we don't know if it's the first time we visit a state when we visit a state (correct me if I'm wrong here, but there is no 'easy' way to solve this problem).

By 'calculate' I wonder if he really means 'approximate'. Since Pi,i+1 gets so small for large i the answer can be approximated to:
P(N [itex]\geq[/itex] 1000) ≈ 1 - Ʃk=1998 Pi,14kP14,15
= 1 - P14,15Ʃk=1998Pi,14k
(don't worry about my summation shenanigans. MATLAB can solve this for me)
Obviously this approximation can only be good for realtively small p, and n0



I really want your thoughts on this problem. Are there any solutions that are more 'correct' than mine? Thank you
 
Last edited:
Physics news on Phys.org
If you make X=15 an absorbing state, you could write the solution in terms of powers of a 16 by 16 matrix.
 
bpet said:
If you make X=15 an absorbing state, you could write the solution in terms of powers of a 16 by 16 matrix.

Of course! Thank you very much :smile:
 

Similar threads

  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 3 ·
Replies
3
Views
794
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 11 ·
Replies
11
Views
2K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 9 ·
Replies
9
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 6 ·
Replies
6
Views
3K