up:: Node Degree
Given a network with nodes and edges, its average degree is simply
using the Adjacency Matrix.
For undirected Simple Graphs, we always have that
since all edges have two ends. In other words, we are counting all edges twice: and .
For directed Simple Graphs, we always have that
in which we don’t have the “ambiguity” that undirected networks have.
Note, also, that this value is unambiguous even for directed graphs, since
Thus, the average degree of a directed network is unambiguous, since it is the average In Degree and also the average Out Degree, by changing the order of the sums1.
References
- NEWMAN, Mark. Networks. Oxford University Press, 2018.
Footnotes
-
With no problem, since we are summing over finite graphs. ↩