Network Mediation Centrality in Network Theory
📂Graph TheoryNetwork Mediation Centrality in Network Theory
Definition
Stress Centrality
In a network (V,E), let’s denote by σst=σts the number of shortest paths between two nodes s,t∈V, and specifically, let’s denote by σst(v) the number of paths including another node v∈V among the paths connecting s,t. The following defined CS:V→Z is called the Stress Centrality of node v.
CS(v):=s=v=t∈V∑σst(v)
Betweenness Centrality
The following defined CS:V→R is called the Betweenness Centrality of node v.
CB(v):=s=v=t∈V∑σstσst(v)
Explanation
σst(v)
Reading the definition of σst carefully, it’s about the number of routes that make the shortest distance d(s,t)=d(t,s) between s,t, not the shortest distance itself, so for all v∈V, σvv=1, and for the graph distance function d, σst(v) is as follows.
σst(v)={0σsv⋅σvt,if d(s,t)<d(s,v)+d(v,t),otherwise
Intuitive Meaning
CS(v)=s=v=t∈V∑σst(v)CB(v)=s=v=t∈V∑σstσst(v)
Betweenness Centrality, essentially the same concept as Stress Centrality, naturally illustrates how important a node is in terms of traffic/communication. Unlike Stress Centrality, it’s adjusted by dividing σst for each s,t to more appropriately evaluate the node.
See Also
Various Centrality in Network