Find the number of non-empty subsets (S) of such that .
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.
So we have a rule to add elements to a set. So we need to find sets for which this rule does not add any other elements. Let's start with the three sets (which we can show they do not contain any other elements), and then show there can be no other:
First set :
Start with S = { 2 } . If there were another element of this set, it should be written as g c d ( a , b ) a + b . Since only 2 belongs to the set so far, then the only other element we can add is 2 2 + 2 = 2 . Hence this set is a possible set with the property.
Second set :
Clearly the set N has this property.
Third set :
Consider the set N ∖ { 1 } . To show that 1 cannot be obtained we need to prove that g c d ( a , b ) a + b = 1 . This follows from a + b > g c d ( a , b ) .
No other sets?
Assume S is such a non-empty set which is not the set with only 2 as an element. Then there is some integer n ∈ S different from 2. Hence g c d ( n , n ) n + n = 2 belongs to the set too. From there on, we distinguish two cases:
First case ( n is odd)
If n is odd, then all odd number above n also belong to S : for any odd number o , one has g c d ( o , 2 ) o + 2 = o + 2 . Consider some odd number i and the odd number 3 i . Then g c d ( i , 3 i ) i + 3 i = 4 . So 4 belongs to S . But then g c d ( 4 , 2 ) 4 + 2 = 3 . So 3 belongs to S . So all odd numbers (except 1) belong to S . Since any even number larger than 7 is the sum of two distinct prime numbers (yes, I know, this is the Goldbach conjecture), any even number will belong to the set too. You can get 6 using 10 and 2 (10 you can get out 7 and 3).
Second case ( n is even and not 2)
If n is even, then g c d ( n , 2 ) n + 2 = 2 n + 1 . Let n 1 = 2 n + 1 and n 0 = n . Note that n 1 cannot be 2 (because we excluded that n 0 is 2) and that n 1 < n 0 . If n 1 is odd, go to the first case. Else look at n 2 : = g c d ( n 1 , 2 ) n 1 + 2 = 2 n 1 + 1 . If n 2 is odd, go to the first case. Else note that n 2 < n 1 (and n 2 cannot be 2). Repeat for n 3 , n 4 , ... until you get an odd number. Note the process cannot go on forever since n k < n k + 1 and n k is never 2.
Once you have an odd number, you have all integers ≥ 2 (see first case).