There are $n$ random oberservations. Suppose $n$ is even number. We are interested in the ratio of each two. So there are $C_n^2=n(n-1)/2$ kinds of ratios. To study the property of the ratios we need independent assumption. So we decide to partition the $C_n^2$ combinations into $n-1$ sets and consider each separately. From set standpoint, by independence I mean each combination in a group has no elements in common. Additionaly, the $n$ elements in a group fully cover $1:n$, as shown in the example below.
is it always possible to partition the $C_n^2=n(n-1)/2$ combinations into $n-1$ groups satisfying above requirements? for example $n=6$, $C_6^2=15$
all combinations are
12 13 14 15 16 23 24 25 26 34 35 36 45 46 56
an independent partition containing $n-1=5$ groups is
- 12 34 56
- 13 25 46
- 14 26 35
- 15 24 36
- 16 23 45
I can prove that given a solution for $n$, $2n$ can be solved.
In addition, I can provide an algorithm for $n=2^k$
But what about any even number? anyone have ideas?
Thank you!