jaobyccdee said:
thx for replying. But i still have a question. What's the difference then between having three steps in 1D and 1 step in 3D?
A random walk by definition talks about probabilities of going up and down (or positive and negative): We are talking about deltas, or rather changes from an existing value at some time, to the next time increment.
By the nature of a random walk, you can't have three steps in one dimension: the only way for something to go is up or down.
Also you have to remember that every dimension is completely independent from the others. The x-dimension is completely independent from the y-dimension and the z-dimension.
The easiest way to describe this is by considering a point in three-dimensional space.
Lets say you have a point <x,y,z>. Now if you change the x-coordinate from x to x0, your new point is <x0,y,z>. Note that by changing the x to x0, the y and the z haven't changed: in other words they are independent.
If you wanted to have say all them connected, then all of them would have to be a function of one variable.
As an example let's consider our point example again: Let's say we have a point that is determined by <t,t + 2, t + 3>. If we change t to t0, that ends up affecting every co-ordinate by changing the value to <t0,t0 + 2, t0 + 3> which shows that this is not independent.
Basically if you had this kind of dependency for a random walk in three dimensions, you would have one random variable, call it T and three random variables that are functions of T.
If we use our analog example of the point, our "dependent random walk" (its not a real random walk, but I use the analogy to help our discussion) would have the random variables x(T), y(T), z(T) where x,y,z are functions of our random variable T. Note that these are all dependent on T.
But since every component in a 3D random walk is independent, that means we have three random variables instead of 1. So instead of our x(T), y(T), z(T) scenario we have x(A), y(B), z(C) where A,B,C are all independent. This is why we have a lot more probabilities in a 3D random-walk (2x2x2 as opposed to just 2).