If I start a random walk at (a, b) in the x-y plane (say, 5, 5), how do I calculate the probability that the first time I hit the y axis, I land on a positive y value?
I am not sure how to go about calculating this -- I just read the Wikipedia article on random walks and it didn't give me enough intuitive information to start working on this problem. I realize the probability must be > 1/2 if b > 0 because of the initial bias in the positive y-direction.
My initial thought was to calculate a radius of all possible destinations within some number of time steps, and take the ratio of reachable points on the positive y axis to all reachable points on the y axis as my answer, but I don't know if this approach is correct. If anyone can give me some tips I can work on it more.