Given that for k2n (n=4 and k takes all integer values from 1 to n)
If we want to state the sum of all solutions is evenly divisible by n we write:
n
∑ k2n = 0 (mod n)
k=0
Is there an equally succinct way to state (in one sentence), that each solution taken individually, is evenly divisible by n?
12n= 0 (mod n) Ex. (4*1) = 4 = 0 (mod n)
22n = 0 (mod n) Ex. (4*4) = 16 = 0 (mod n)
32n = 0 (mod n) Ex. (4*9) = 36 = 0 (mod n)
42n = 0 (mod n) Ex. (4*16) = 64 = 0 (mod n)
– John May 28 '14 at 22:50