Assume you have some random walk, what's the general approach to solving a problem where the question asks for the probability of reaching a certain point given a maximum of "n" steps? Is this type of problem still a random walk problem?
I'm self learning random walks.
A good resource for this sort of thing is ME Fisher's "Walks, Walls, and Wetting":
https://link.springer.com/content/pdf/10.1007/BF01009436.pdf
The basic idea is to:
Calculate the probability that you instead don't reach the point in $n$ steps.
Find this probability by summing over the probabilities of all walks that never reach the point.
In the crucial step, realize that, starting at $0$ and reaching $n-a$ without ever passing through $n$ is equal to the probability of reaching $n-a$ minus the probability of reaching $n+a$. The idea is that each path that reaches $n-a$ after passing through $n$ can be mapped one-to-one with a different path that instead goes to $n+a$.