▲ | JohnKemeny 3 days ago | ||||||||||||||||||||||||||||||||||
A random walk on a graph is a stochastic process that starts at a vertex and, at each step, moves to a randomly chosen neighboring vertex. Formally: Given a graph, a random walk is a sequence of vertices [v1, v2, ..., vk] such that each v{i+1} is selected uniformly at random from the neighbors of vi. In weighted graphs, the next vertex is chosen with probability proportional to edge weights. | |||||||||||||||||||||||||||||||||||
▲ | seanhunter 3 days ago | parent [-] | ||||||||||||||||||||||||||||||||||
I’m pretty sure it’s not a requirement that the distribution is uniform and also not path-dependent as per the example I gave - a random walk where you’re not allowed to visit a node more than once. | |||||||||||||||||||||||||||||||||||
|