Let be a set of 6 integers taken from with the property that if and are elements of with then is not a multiple of What is the least possible value of an element in ?
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.
Mathematica code
Select[Subsets[Range@12,{6}],!Or@@(IntegerQ[#2/#]&@@#&/@Subsets[#,{2}])&]
returns all the S sets
{4, 5, 6, 7, 9, 11}, {4, 6, 7, 9, 10, 11}, {5, 6, 7, 8, 9, 11}, {5, 7, 8, 9, 11, 12}, {6, 7, 8, 9, 10, 11}, {7, 8, 9, 10, 11, 12}
So the answer is 4