What is the maximum number of edges in a directed graph with n nodes? Is there any upper bound?
|
If you have |
|||||
|
|
If the graph is not a multi graph then it is clearly n * (n - 1), as each node can at most have edges to every other node. If this is a multigraph, then there is no max limit. |
||||
|
|
|
The correct answer is n*(n-1)/2. Each edge has been counted twice, hence the division by 2. A complete graph has the maximum number of edges, which is given by n choose 2 = n*(n-1)/2. |
|||||||
|
|
There can be as many as And this is achievable if we label the vertices See here. |
|||
|
|
|
Can also be thought of as the number of ways of choosing pairs of nodes n choose 2 = n(n-1)/2. True if only any pair can have only one edge. Multiply by 2 otherwise |
|||
|
|