Suppose there are 9 strangers. We will assign them into 3 groups and each group has exactly 3 people. For each grouping, the strangers who were assigned into the same group will get to know each other and they are not mutual stranger anymore. In the next grouping, the people that has known each other in the previous grouping, will not be assigned into the same group again.
How many times of grouping that we could possible make? (Which means at the end, it is not possible to form 3 groups that all of member in each group are mutual stranger)
Update: what if the number of stranger is m, and the number of group are n and m =3n
Four:
ABC DEF GHI ADG BEH CFI AEI BFG CDH AFH BDI CEG
We know this to be maximal: at the end, everyone is acquainted with everyone, so no improvement is possible.
For other $n$, I'm not exactly sure what we can do. It's clear that for $n=2$ we only get one matching, because any trio will now be guaranteed to have a pair from one or the other original matchings. Some thoughts:
That last one could use a little explaining, I guess. I'll do the case for $n=9$.
So first we arrange it in three rows:
ABCDEFGHI JKLMNOPQR STUVWXYZ@
And this gives groups like
AJS BKT ... IR@
andAKU BLV ... IJT
, and so forth, for nine total groupings.Then we take each row and turn it into a group of three rows:
ABC JKL STU DEF MNO VWX GHI PQR YZ@
And go through each of these three groups the same way, then concatenating the results from each group. So from this we get
ADG BEH CFI JMP KNQ LOR SVY TWZ UX@
,AEI BFG CDH JNR KOP LMQ SW@ TXY UVZ
, andAFH BDI CEG JOQ KMR LNP SXZ TV@ UWY
.Then finally we take each row in each of these groups and make that three rows:
A D G J M P S V Y B E H K N Q T W Z C F I L O R U X @
And then arranging those we only get one matching, which should be obvious.