Let n be a positive integer greater than 3 which has the following property: take the set S n = { 2 , 3 , 4 , . . . , n } and divide it into two groups such that there always exists a group that has three numbers, a , b , c ( a can be equal to b ) that satisfies a b = c . Find the minimum value of n .
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.
I would phrase the question a little differently. You say: "take the set S n = { 2 , 3 , 4 , . . . , n } and divide it into two groups such that ..."
You want to say "take the set S n = { 2 , 3 , 4 , … , n } such that any partition of S n = A 1 ∪ A 2 has the property that there exists i ∈ { 1 , 2 } and a , b , c ∈ A i such that a b = c (with a = b allowed.)
The way you've phrased it, you're just saying that there exists a partition satisfying the property. But you want to say every partition satisfies the property.
Also, I would avoid using the word "groups", which has an algebraic meaning that you don't want. Just use "sets".
Apology for my poor phrasing...
Problem Loading...
Note Loading...
Set Loading...
We claim that the minimum value of n is 2 5 . Let A , B be two groups for S n that does not satisfy the condition a b = c , WLOG assume 2 ∈ A .
If n ≥ 2 5 , then
if 2 2 ∈ A , 2 , 2 , 2 2 ∈ A , which is impossible, so 2 2 ∈ B
if 2 4 ∈ B , 2 2 , 2 2 , 2 4 ∈ A , which is impossible, so 2 4 ∈ A
if 2 3 ∈ A , 2 , 2 3 , 2 4 ∈ A , which is impossible, so 2 3 ∈ B
However we cannot place 2 5 in any group that does not satisfy the condition, since if 2 5 ∈ A , then 2 , 2 4 , 2 5 ∈ A and if 2 5 ∈ B , then 2 2 , 2 3 , 2 5 ∈ B . Thus, when n ≥ 2 5 , the set S n must satisfy the condition, so we know n ≤ 2 5 .
Now, consider the following A , B ,
A ′ = { 2 , 3 , 1 6 , 1 7 , . . . , 3 1 } and B ′ = { 4 , 5 , . . . , 1 5 } , it does not satisfy the condition neither, and notice that for n < 2 5 there are two groups A ∩ A ′ and B ∩ B ′ , where A , B are whatever groups we chose, which does not satisfy the condition.
Thus, the minimum value is 2 5 = 3 2 .
Bonus, can you generalize if S n = k , k + 1 , . . . , n for some k > 1 ?