I have some decent problems with performing a double summation. The Sum is as follows
Sum[ f[M[2, 1],M[2, 2]] , {M[2, 1], -Border, Border} , {M[2, 2], -Border, Border} ] over some function f, and this summation gives me the right result. However I want to generalize this thing in the following way
Sum[ Sum[ f[M[2, 1],M[2, 2]] , {M[2, i], -Border, Border}] , {i, 1, 2} ] which doesn't give me the right result and I cannot understand why. Can anybody tell me what is going wrong here and more importantly, how to make this generalized sum work?!
greets mike