Consider the following:
> [seq](x -> i*x,i = 1..3);
                 [x -> i x, x -> i x, x -> i x]
Why does it not produce output identical to the following?
> [x -> x,x -> 2*x,x -> 3*x];
                  [x -> x, x -> 2 x, x -> 3 x]

Please Wait...