My solution was to just add up binomials where you choose $2$ people from a smaller and smaller pool of people (since with every choice $2$ people become unavailable): $$\sum_{k=1}^{10} {{2k+1}\choose2}$$ was my answer (it evaluates to $825$).
But according to my textbook the correct answer is $21! / (2^{10} * 10!)$, which is far from $825$... not only do I have no idea why, but I can't see what's wrong with my answer.
Just for reference, the question in full is: There are $21$ students in a biology class. The students must pair up to work as lab partners, but, of course, one student will be left over to work alone. In how many ways can the students be paired up?"
Any help is appreciated.
I dislike both answers. First, I will make the assumption that the specific order in which the groups are chosen does not matter. Next, I will make the assumption that the order of the people within the groups does not matter.
Now... Let us begin by choosing which of the $21$ students will work alone. The poor guy... $21$ options.
Next, among those students that remain, there is one who appears first alphabetically in the roster. Choose who will be his/her partner. $19$ choices. Remove both from the pool of available students remaining.
Next, among those students that remain, there is one who appears first alphabetically in the roster. Choose who will be his/her partner. $17$ choices. Remove both from the pool of available students remaining.
Continue in this fashion, pairing off the students.
This leads to an answer of $21!! = 21\cdot 19\cdot 17\cdots 3\cdot 1 = 13749310575$, exactly the same as the textbook's answer, but written in a different way and avoiding the "division by symmetry" style argument which confuses so many students.
As for what you did wrong... for starters, you summed instead of multiplied. Next, even if you were to change this into multiplication, you will have incorrectly applied some sort of importance to the order in which the groups were selected. Correcting your approach by "forgetting the order" that you picked them in, you would have an answer of $\frac{1}{10!}\prod\limits_{k=1}^{10}\binom{2k+1}{2}$ which equals the same as found by the other methods.