This answer illustrates an inductive proof of the number of tournaments t over a set of n pairs of vertices. For a simpler, direct counting approach, see Daniel Fischer's answer.
I use strong induction to show t( n ) = (2 n - 1)!!.
For a basis, let n = 1. So we have t(1) = (2 - 1)!! = 1. Since there can be only 1 tournament with 1 pair of players, the basis checks.
Next, we assume that t = (2 m - 1)!! for all m < n and we let i + 1 = n. We start with a tournament of i pairs, add a new pair to make n pairs, and show that t( n ) = (2 n - 1)!!. There are two cases to consider. Case 1: the new pair plays against itself, and case 2:, it doesn't. Since the two cases are mutually exclusive, we can determine the number of tournaments generated by each case separately and add the results.
Considering case 1, how many ways can we match the new pair to the existing players? Well, the first player of the new pair can play any 2 i existing players and the second player can play any 2 i - 1 remaining players. Hence the total number of match-ups of the new pair is 2 i (2 i - 1). Of course after we match the new pair we cannot forget there are i - 1 pairs left. By the inductive hypothesis, we can match these players (2 (i - 1) - 1)!! ways. After applying the product rule for counting, the result for case 1 is 2 i (2 i - 1) (2 (i - 1) - 1)!!.
Turning to case 2, the new pair can play itself 1 way. By the inductive hypothesis the remaining i pairs can form a tournament (2 i - 1)!! ways, so the total for case 2 is (2 i - 1)!!.
Adding the two cases together we have t( n ) = 2 i (2 i - 1) (2 (i - 1) - 1)!! + (2 i - 1)!!.
We factor out a (2 (i - 1) - 1)!! on the right side to get t( n ) = (2 (i - 1) - 1)!! (2 i (2 i - 1) + (2 i - 1)).
Combining like terms we have t( n ) = (2 (i - 1) - 1)!! (2 i - 1)(2 i + 1).
Folding the trailing factors into the double factorial we have t( n ) = (2 (i + 1) - 1)!!
Finally, we apply the definition of i and we have t( n ) = (2 n - 1)!!