Divide the set of integers from 1 to 34 into two subsets A & B where the sum of the numbers in set A is equal to the product of the numbers in set B.
Enter this sum = product.
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.
If n is even then B can consist of the numbers 1 , ( 2 n ) − 1 , n . The product of these is 2 n 2 − n
The sum of the numbers in A is then 2 n 2 + n − 1 − ( 2 n − 1 ) − n = 2 n 2 − n
So B can consist of 1 , 1 6 , 3 4 with a product of 1 ∗ 1 6 ∗ 3 4 = 5 4 4
Note: for most n, there is more than one solution, but for n=34 the solution is unique. As far as I can tell it is the largest number with a unique solution.