{x + y, x + w, 2*z, y + x} /. {w, x, y, z} -> {0.2, 0.1, 0.5, 0.8}
does not work.
What I really want is, to use random values to have a look at the value of the experssion, like this:
{x + y, x + w, 2*z, y + x} /. {w -> 0.2, x -> 0.1, y -> 0.5, z -> 0.8}
If I have many variables, is there a better way to assign the values? I want to give {w,x,y,z}
{w,x,y,z} -> Table[RandomReal[], {i, 1, 4}]
Many thanks!