A dominance-directed graph is a directed graph such that for any distinct pair of vertices and either or holds, but not both. An other name for this type of the graphs is tournaments.
Example: The following graph is a dominance-directed graph.
Assume that represent the fact that person " influences person ". Then the question is to find the most influential point.
Note : It can be shown that in a dominance-directed graph there is
at least one vertex from which there is a 1-step or a 2-step connection to any other
vertex. Therefore to determine the most influential vertices we need to compute and add the sum of entries of this matrix, the largest number is showing the most influential points.
Example
Decide whether if the following graph is a dominance-directed graph, if it is find the most powerful vertices.
M =
=
=
Add the entries of each row to show the power the corresponding vertex.
Power of is 5.
Power of is 4.
Power of is 3.
Power of is 2.
So the vertex is the powerful vertex.