Given a set has elements, namely . If you want to divide this set in 12 subsets (no empty) such that the sum of each subset of is the same, what is the smallest possible value of ?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The sum of the elements of the initial set A , is 2 n ( n + 1 ) , so we're looking for the least possible positive integer vale of n , such that 2 n ( n + 1 ) is divisible by 1 2 . thus, 2 4 ∣ n ( n + 1 ) . Note that the sum of each subset must be equal or greater than n (the greatest element of A ), cause n must be included in a subset.
As n and n + 1 are consecutive integers, they will have distinct parity, hence, 8 ∣ n or 8 ∣ ( n + 1 ) , and, 3 ∣ n or 3 ∣ ( n + 1 ) . From here, we can do trial and error in order to find the value of n . Easily, we can discard n = 7 , 1 6 . If n = 8 or n = 1 5 , then the sum of the elements of each subset is 3 and 1 0 , that are less than 8 and 1 5 , respectively. If n = 2 3 , we can form the subsets as follows:
{ 1 , 2 2 } , { 2 , 2 1 } , . . . , { 1 1 , 1 2 } , { 2 3 } .
n = 2 4 is a possible value, but it's not the least possible value.