document.write( "Question 1119412: A single elimination tournament also known as a knockout tournament is one where a loser of a match is automatically eliminated from the tournament. The winner of each round continue to play each other until a single winner is declared. Determine the total number of matches that are necessary for a chess tournament involving 1024 participants \n" ); document.write( "
Algebra.Com's Answer #734956 by Boreal(15235)![]() ![]() You can put this solution on YOUR website! start with 4 teams, 2^3. \n" ); document.write( "A plays B \n" ); document.write( "C plays D \n" ); document.write( "E plays F \n" ); document.write( "G plays H \n" ); document.write( "The second round features 4 teams, 2 matches \n" ); document.write( "The third round features 2 teams and 1 match for the championship. \n" ); document.write( "That is 7 matches or 2^3-1 \n" ); document.write( "1024 is 2^10 \n" ); document.write( "The number of matches is 2^10-1 or 1023. \n" ); document.write( " |