Problem 764. Soccer - TOTO

How many different outcomes are there in a soccer-TOTO with n games?

For each game there are three results: win - loss - equal. So for example with 2 games between team A and B, we can have different outcomes:

A win(1), A loss(-1), A draw(0) for first game and A win(1), A loss(-1), A draw(0) for the next game. Outcomes are like this:

   1  1
   1  0
   1 -1
   0  1
   0  0
   0 -1
  -1  1
  -1  0
  -1 -1

Solution Stats

83.51% Correct | 16.49% Incorrect
Last Solution submitted on Feb 14, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers76

Suggested Problems

More from this Author11

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!