325 views
0 votes
0 votes

Let n players enter a chess tournament. How many tournament trees are possible?

RULES: a player is eliminated after one loss and games are played until only one entrant is left(assume no ties) 

My approach: (please check if it is correct)

there are 3 possible binary tree skeletons w.r.t.  n:

  1. n = 2^k
  2. n = 2k
  3. n = 2k-1

k>=1

we have to make cases for each of these models

  1. if n = 2^k

initial round  =  leaf nodes

nC2 * (n-2)C2 * (n-4)C2 *...*1 

next round = degree 2 nodes

2*2*2*2...*2

and so on till the root (winner)

now, multiply all the above-level results-

{nC2 * (n-2)C2 * (n-4)C2 *...*1} * 2^(n-1)

similarly we can do the remaining cases.

Is the above method right?

 

Please log in or register to answer this question.

Related questions

4 votes
4 votes
1 answer
2
go_editor asked Aug 20, 2016
7,129 views
The number of different binary trees with 6 nodes is642132256
1 votes
1 votes
1 answer
3
Gupta731 asked Oct 29, 2018
791 views
Let K$_n$ be such that the vertices are labeled 1,2,3,...n.The number of simple paths between v$_1$ and v$_n$ such that the labels on the path are strictly increasing ___...
0 votes
0 votes
1 answer
4
Hakuna Matata asked May 4, 2018
441 views
Given 3 connected components with 2,2,3 vertices. In how many ways can we add two edges to connect the whole graph?Also, if possible generalise the method for graph with ...