Let $X = \{A_1,A_2,... ,A_n\}$ be a set of distinct $3$-element subsets of $\{1, 2,... , 36\}$ such that
i) $A_i$ and $A_j$ have non-empty intersection for every $i,j$.
ii) The intersection of all the elements of $X$ is the empty set.
Show that $n ≤ 100$. How many such sets $X$ are there when $n = 100$?
Source: BMO 2005 round 2 question.
Please help !! I am not even able to proceed with the question I tried to come up with a recurrence relation but its not working. I have only been able to figure out the number when 36 is replaced by 6, which is an easy thing to do
I think I've made some progress with this, but I still haven't solved it. I believe that the problem is a special case of this theorem (which I can't prove yet):
Furthermore, I believe that, under the same hypotheses, every family of length $3N-8$ belongs to one of the two classes defined below. In what follows, $a,b,c,d$ represent pairwise distinct integers between $1$ and $N$.
It's easy to verify that both classes satisfy the requirements and clear that there are ${N\choose3}$ families in class A and $N{N-1\choose3}$ families in class B.
I've written a python script to verify this for $N=7$ and $N=8.$ It would probably take too long to run for $N=9.$ For $N=6$ the maximum length is $10$ as expected, but there are $1018$ families.
I've been trying to prove this by induction, though I don't see how to do the basis case without a computer. Since we can produce a family of size $3N-8$ we suppose that we have some larger family. What I want to say is that there must be some element of $[N]$ that belongs to at most $3$ of the $3-$subsets. (This is true for families of class A and B.) We can assume that this element is $N$. Removing all the $3-$subsets containing $N$ would give a family of $3-$subsets of $[N-1]$ with too many elements. I'm also hopeful that since we know that a maximum-length family of $3-$subsets of $[N-1]$ is of class A or class B, we can infer that the family formed by adding no more than $3$ subsets containing $N$ is also of one of these forms.
If this approach is to work, we must prove that there is no family $X$ satisfying the requirements such that every element of $[N]$ belongs to at least $4$ members of $X.$ So far, I don't even know how to approach this.
Here is my python script, if anyone is interested.