For this question we learned there is both analytic and, as Monique and Andy remind us,
practical considerations. Both parts are necessary for good experimental design.
For the analytic part of the question, here is a slightly different approach*
Recognizing you are administering something in combination.
We have a group of 4 animals and we need 14 combinations.
Using combinatorics, if you have
a group of n objects and you chose r of them.
The number of http://www.mathwords.com/c/combination_formula.htm" may be found using the following equation:
_n C_r = \frac {n!} {r! (n-r)!}
For example, a group of size 2, choosing 1 animal at a time
2C1, i.e. n=2, r=1 _n C_r= \frac {2!}{1! (2-1)!} = \frac {2}{1} = 2
(here we've determined when choosing 1 animal at a time, there are 2 possibilities)
the other combinations follow:
How many total combinations do we expect for group size of 2 ?
nCr
2C0 = 1 combination choosing 0 animals 0
2C1 = 2 combinations choosing 1 animal (1) (2)
2C2 = 1 combination choosing 2 animals (1,2)
total number of combinations (power of two) = 2^n = 4
You may recognize these solutions as http://mathworld.wolfram.com/BinomialCoefficient.html"
or rows found in http://mathworld.wolfram.com/PascalsTriangle.html"
possible combinations are:
0 administering something to no subjects
1 given to subject 1
2 given to subject 2
(1&2) given to subjects 1&2
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`
with a group size of 4,
nCr
4C0 = 1 combination choosing 0 subjects 0
4C1 = 4 combinations choosing 1 subjects (1) (2) (3) (4)
4C2 = 6 combinations choosing 2 subjects (1,2) (1,3) (1,4) (2,3) (2,4) (3,4)
4C3 = 4 combinations choosing 3 subjects (1,2,3) (1,2,4) (1,3,4) (2,3,4)
4C4 = 1 combinations choosing 4 subjects (1,2,3,4)
total combinations (power of 2) 2^n = 16
we are looking for 14 combinations so group size of 4, has good promise
enumerating, the possible combinations:
0 (administering something to no subjects)
1 ( " to subject 1)
2 ( " to subject 2)
3 ( " to subject 3)
4 ( " to subject 4)
(1,2) ( " to subjects 1 and 2)
(1,3) ( " to subjects 1 and 3)
(1,4) ( " to subjects 1 and 4)
(2,3) ( " to subjects 2 and 3)
(2,4) ( " to subjects 2 and 4)
(3,4) ( " to subjects 3 and 4)
(1,2,3) ( " to subjects 1,2 and 3)
(1,2,4) ( " to subjects 1,2 and 4)
(1,3,4) ( " to subjects 1,3 and 4)
(2,3,4) ( " to subjects 2,3 and 4)
(1,2,3,4) ( " to subjects 1,2,3 and 4)
You can design the experiment choosing from the the above combinations.
If you did happen to know about binary numbering,
the above combinations translate to a coding scheme of:
animals (where 1=animal given a dose, 0=animal not receiving dose)
4321
0001 bottle 1 [dose given to animal(s) 1]
0010 bottle 2 ( " 2)
0100 bottle 3 ( " 3)
1000 bottle 4 ( " 4)
0011 bottle 5 ( " 1 and 2)
0101 bottle 6 ( " 1 and 3)
1001 bottle 7 ( " 1 and 4)
0110 bottle 8 ( " 2 and 3)
1010 bottle 9 ( " 2 and 4)
1100 bottle 10 ( " 3 and 4)
0111 bottle 11 ( " 1,2 and 3)
1011 bottle 12 ( " 1,2 and 4)
1101 bottle 13 ( " 1,3 and 4)
1110 bottle 14 ( " 2, 3 and 4)
* a h.s. student brought this method to my attention.