hello my problem about matches,predicting match results from the table
like;
Win Lost Equal
A 2 0 1
B 1 2 0
C 1 2 0
D 1 1 1
this is the table we have and the question is match results ?
like;
A-B = (who win? if A then 1 , if B then -1 ,if equal then 0)
A-C =
A-D =
B-C =
B-D =
C-D =
from here this is the matris to fill;
... A B C D
A X . .. .......... ( 1,1, 0) //
B ....X ............ (1,-1,-1) // this '1,0,-1' numbers comes from the given table
C........ X .......... (1,-1,-1) // for example
D ........... X ....... (1,-1,0) // A (1,1,0) means 2 win ,1 equal for A
How can I fill the matrix ? this must be a result of matrix;
... A B C D
A X 1 1 0
B -1 X 1 -1
C -1 -1 X 1
D 0 -1 -1 X
NOT: pure brute force not option because of the teams are N ,not only 4 team it can be a lot of A,B,C,D,E......
actually the real proble is finding the results from the table here is a example
http://www.football-corner.org/wp-content/uploads/2010/02/Premier-League-Table.jpgwe have only that table and we want to find results like A Team VS B Team result 3-2,like that all the results of the matches
but if I can solve that matrix issue I think I can hanle of the rest
thank you