[Math] Balanced Latin Square

experimental-mathematicslatin-square

For making a good Between-Object user study, this is suggested to use a Latin Square to give all the different conditions, different order of representation of those conditions. However, when the number of conditions grow, the number of representation grows exponentially so a Balanced Latin Square is replaced. My question here is that, for the case of balanced one, does it have to cover all the conditions equally?
For example, if we have 4 conditions, is it wrong we just test it with 6 participants? or the number of participants has to be a coefficient of 4?

since the formula to make the Balanced Latin Square is 1, 2, n, 3, n-1, 4, n-2 if we put n=4, it will become:

1-2-4-3
2-3-1-4
3-4-2-1
4-1-3-2

here, it is a Balanced Latin Square for 4 different representation conducted with 4 participant. my question is that if we add two more participant it will become like:

1-2-4-3
2-3-1-4
3-4-2-1
4-1-3-2

1-2-4-3
2-3-1-4

is this a correct Balanced Latin square or it should be for a coefficient of 4 -number of participant? like:

    1-2-4-3
    2-3-1-4
    3-4-2-1
    4-1-3-2

    1-2-4-3
    2-3-1-4
    3-4-2-1
    4-1-3-2

Best Answer

What you have aren't balanced latin squares mainly because they aren't even squares.:) You need to have the same number of rows as columns. So a balanced latin square of order 6 would be

$$\begin{matrix} 1&2&3&6&4&5\\ 2&3&4&1&5&6\\ 3&4&5&2&6&1\\ 4&5&6&3&1&2\\ 5&6&1&4&2&3\\ 6&1&2&5&3&4\\ \end{matrix} $$

In other words you need to have the same number of participants as condition to be able use the balanced latin square approach. Or rather you need to have the same number of participant groups. So really the number of participants must be a multiple of the number of conditions/treatments what have you.

Edit A nice brief exposition can be found here. It also includes an explanation of how to deal with the situation that the number of conditions you have is odd.

Related Question