At first his language was a little confusing -- when I saw "set" and then saw two 2s listed in his set. Are "set" and "multiset" often this interchangeable?
No, they aren't. This is just sloppy wording in the article. The concept of sets is deeply established in mathematics and when you talk about multisets rather than sets you have to state this explicitly.
The Easiest Hard Problem (2002)
11–20 of 34 posts
Re: The Easiest Hard Problem (2002)
#12Earlier quoted context omitted.
Why is it easy to prove that this particular set of numbers can be broken into equal subsets?
You just have to compare the number of subsets with the number of possible sum values. 1) There are 90 numbers, so we have 2^90 subsets. 2) All numbers are Since 2^90 > 10^27, we have more subsets than possible sum values. Hence, there are at least two subsets having the same sum. BTW, this is a beautiful application of the Pigeonhole principle: https://en.wikipedia.org/wiki/Pigeonhole_principle
Re: The Easiest Hard Problem (2002)
#13Re: The Easiest Hard Problem (2002)
#14Earlier quoted context omitted.
You just have to compare the number of subsets with the number of possible sum values. 1) There are 90 numbers, so we have 2^90 subsets. 2) All numbers are Since 2^90 > 10^27, we have more subsets than possible sum values. Hence, there are at least two subsets having the same sum. BTW, this is a beautiful application of the Pigeonhole principle: https://en.wikipedia.org/wiki/Pigeonhole_principle
> The sum of all 90 numbers is Why? (Obviously you wouldn't compute it so what's the "trick"?)
Re: The Easiest Hard Problem (2002)
#15Earlier quoted context omitted.
> The sum of all 90 numbers is Why? (Obviously you wouldn't compute it so what's the "trick"?)
The sum of 90 numbers in this context is considered to be easy (esp relative to finding the sum of many possible subsets).
Re: The Easiest Hard Problem (2002)
#16Re: The Easiest Hard Problem (2002)
#17Re: The Easiest Hard Problem (2002)
#18split 2,3,5 into 2 groups: (2,5) and (3) the difference of their products 2x5-3 = 7.
split 2,3,5,7 into 2 groups (3,7) and (2,5) the difference is 11. Note that (2,7) and (3,5) has a difference of 1 so don't go there.
5x11 - 2x3x7 = 13
Is it always possible to create a partition that produces the N+1th prime?
AFAIK this is a problem of my own conjuring, but I also know that most such things already exist and have a name.
Re: The Easiest Hard Problem (2002)
#19Re: The Easiest Hard Problem (2002)
#20The first heuristic algorithm that jumps to my mind to solve this problem goes like this: First sort the numbers into a list. Second take elements from the head of the list to construct a subset A. Third take elements from the tail to construct a subset B The second and third steps are done in such a way that the sum of A and B are nearly equal. Then one can hope that this procedure make the elements that are still i…