Let be the collection of subsets of , such that the intersection of any two sets in is non-empty.
What is the maximum number of elements of ? Enter your answer as the last two digits of this number.
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.
For any two sets in S to be non-empty, each set has to have at least one element, say x , in common. So, keeping x fixed, we can create all sets containing x in 2 9 9 ways. This will give us the maximum number of elements in S .
All that is left to do is to find last two digits of 2 9 9 :
x ≡ 2 9 9 ( m o d 1 0 0 ) We break it down into x ≡ 2 9 9 ( m o d 2 5 ) and x ≡ 2 9 9 ≡ 0 ( m o d 4 ) _ _ _ 1
Since 2 1 0 ≡ − 1 ( m o d 2 5 ) , we have 2 9 0 ≡ − 1 ( m o d 2 5 ) . Now 2 9 ≡ 1 2 ( m o d 2 5 ) . Combining both, we have x ≡ 2 9 9 ≡ 1 3 ( m o d 2 5 ) . _ _ _ _ _ 2
Now we use CRT to combine 1 and 2 together. We write x = 2 5 j + 1 3 . So, 2 5 j + 1 3 ≡ 0 ( m o d 4 ) or 2 5 j ≡ 3 ( m o d 4 ) . Solving for j, we have j ≡ 3 ( m o d 4 ) . Therefore, j = 4 k + 3 . Therefore, x = 2 5 ( 4 k + 3 ) + 1 3 or x = 1 0 0 k + 8 8 . Therefore, x ≡ 2 9 9 ≡ 8 8 ( m o d 1 0 0 ) .