logo

Network Mediation Centrality in Network Theory 📂Graph Theory

Network Mediation Centrality in Network Theory

Definition 1

Stress Centrality

In a network (V,E)\left( V, E \right), let’s denote by σst=σts\sigma_{st} = \sigma_{ts} the number of shortest paths between two nodes s,tVs,t \in V, and specifically, let’s denote by σst(v)\sigma_{st} (v) the number of paths including another node vVv \in V among the paths connecting s,ts,t. The following defined CS:VZC_{S} : V \to \mathbb{Z} is called the Stress Centrality of node vv. CS(v):=svtVσst(v) C_{S} (v) := \sum_{s \ne v \ne t \in V} \sigma_{st} (v)

Betweenness Centrality

The following defined CS:VRC_{S} : V \to \mathbb{R} is called the Betweenness Centrality of node vv. CB(v):=svtVσst(v)σst C_{B} (v) := \sum_{s \ne v \ne t \in V} {{ \sigma_{st} (v) } \over { \sigma_{st} }}

Explanation

σst(v)\sigma_{st} (v)

Reading the definition of σst\sigma_{st} carefully, it’s about the number of routes that make the shortest distance d(s,t)=d(t,s)d(s,t) = d(t,s) between s,ts,t, not the shortest distance itself, so for all vVv \in V, σvv=1\sigma_{vv} = 1, and for the graph distance function dd, σst(v)\sigma_{st} (v) is as follows. σst(v)={0,if d(s,t)<d(s,v)+d(v,t)σsvσvt,otherwise \sigma_{st} (v) = \begin{cases} 0 & , \text{if } d \left( s , t \right) < d \left( s , v \right) + d \left( v , t \right) \\ \sigma_{sv} \cdot \sigma_{vt} & , \text{otherwise} \end{cases}

Intuitive Meaning

CS(v)=svtVσst(v)CB(v)=svtVσst(v)σst C_{S} (v) = \sum_{s \ne v \ne t \in V} \sigma_{st} (v) \\ C_{B} (v) = \sum_{s \ne v \ne t \in V} {{ \sigma_{st} (v) } \over { \sigma_{st} }} 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\sigma_{st} for each s,ts,t to more appropriately evaluate the node.

See Also

Various Centrality in Network


  1. Brandes. (2001). A Faster Algorithm for Betweenness Centrality. https://doi.org/10.1080/0022250X.2001.9990249 ↩︎