I'm thinking following problem.
There are five pairs of couples (So, ten people total) and $k$ clubs satisfying following three conditions. Let $A,B$ are arbitrary people among those 10,
- If $A$ and $B$ are a couple, they never belong to same club.
- If $A$ and $B$ are two people and not a couple, exactly one club contains both of them.
- There exists at least one person that belongs to exactly two clubs.
What is the minimum number $k$ satisfying above conditions?
I believe the graph theoretic interpretation is useful to solve this problem. To get some intuition, I tried three couples case. and it seems minimal $k$ is $4$, I think. but for the case of five couples, I still don't know. Is there any systematic way to approach these kinds of problems? Also, can we solve above problem for arbitrary $n$ couples case?
The answer is $\mathbf{k = 14}$.
Consider the more general question where the number of couples is a parameter. In the case of just one couple the minimal system has $k=3$, with one person belonging to two clubs, and the other person belonging to a different club. Therefore suppose there are $n\ge 2$ couples.
Condition 3 implies that there is some person $u$ in precisely two clubs $C$ and $D$. Suppose $v$ is some person not in $C$ or $D$; in particular, $v\ne u$. By condition $2$, if $v$ and $u$ are not a couple, then they must be in some club in common, so $v\in C$ or $v\in D$, a contradiction. Hence $v$ is the unique partner of $u$. It follows that $C$ and $D$ have $2n-1$ members between them. By condition 2 the unique member common to both $C$ and $D$ is $u$. Moreover, no club can have more than $n$ members by condition 1 and the pigeonhole principle. Hence both $C$ and $D$ have exactly $n$ members.
Now consider two people $x\in C\setminus \{u\}$, $y\in D\setminus \{u\}$. If $x$ and $y$ are a couple then there must be some clubs $E_{xv|y}$ and $E_{yv|x}$ such that $x\in E_{xv|y}$ and $y\in E_{yv|x}$, and (by condition 2) clubs $E_{xv|y}$, $E_{yv|x}$, $C$, and $D$ must be pairwise distinct. Otherwise $x$ and $y$ are not a couple, and by condition 2 there must be some club $C_{xy}$ in which both $x$ and $y$ are members. Now $C_{xy}$, $C$, and $D$ must be pairwise distinct clubs, and $u\not\in C_{xy}$ by condition 2. Suppose $w \in C_{xy}\setminus \{x,y\}$. By condition 2, $w\not\in C$ and also $w\not\in D$, so $w=v$. This means that the clubs $C_{xy}$ either contain only $x$ and $y$, or contain $x$, $y$, and $v$ and no other members. Since there must be a club $C_{xy}$ for each $x\in C\setminus \{u\}$ and $y\in D\setminus \{u\}$ that are not partners, there are at least $(n-1)(n-2)$ such clubs.
If $n=2$ then there are no such clubs $C_{xy}$, but denoting the other couple by $x,y$, there are at least the four distinct clubs $C$, $D$, $E_{xv|y}$, and $E_{yv|x}$. This can be achieved with $k=4$ clubs that each have precisely two of the people as members. So now suppose $n\ge 3$, when there exist some such clubs $C_{xy}$. Then there must be at least $(n-1)(n-2)+2$ clubs. Now let $C_{xy}=\{x,y\}$ for each $x \in C\setminus \{u\}$ and $y \in D\setminus \{u\}$ that are not a couple. Now pick a set of pairs $\{(x_1,y_1),(x_2,y_2),\dots,(x_{n-1},y_{n-1})\} \subseteq (C\setminus \{u\})\times (D\setminus\{u\})$ such that $\{u,x_1,x_2,\dots,x_{n-1},y_1,y_2,\dots,y_{n-1}\} = C\cup D$ and $x_i,y_i$ are not a couple for any $i = 1,2,\dots n-1$, and add $v$ to $C_{x_i y_i}$ for each $i=1,2,\dots,n-1$. There are precisely $(n-1)(n-2)+2$ such clubs, and these satisfy all three conditions. Hence this system achieves the smallest possible $k$ and has $(n-1)(n-2)+2$ clubs.
In the case $n=5$ this is $k = 14$ clubs; in this system $u$ is a member of two clubs with $5$ members each, $v$ belongs to four clubs with three members each, and the other $8$ people belong to four clubs each, one with $5$ members
and three with three, one with three, and two with two.Thanks to @bof for pointing out an error in the witness I was proposing for the upper bound, and to @browngreen for an error in the final summary; the parts in italics indicate the fix.