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
Problem Comments
-
3 Comments
What is SOCCER-TOTO?
Can you please give a link or an example about this problem? Thanks
The question appears to ask for the number of potential outcomes of N soccer games where each game may be either a W, L, or T. Thus N=1 has 3 outcomes. The reality of soccer says the true number of expected outcomes is 1, with a total goal sum of 0, ALL 0-0 Ties.
Thanks Richard.
Solution Comments
Show commentsProblem Recent Solvers80
Suggested Problems
-
Find the sum of all the numbers of the input vector
49778 Solvers
-
Project Euler: Problem 1, Multiples of 3 and 5
3356 Solvers
-
Find the largest value in the 3D matrix
1539 Solvers
-
Convert from Base 10 to base 5
262 Solvers
-
Create matrix of replicated elements
382 Solvers
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!