logo

Stress Centrality in Network Theory 📂Graph Theory

Stress Centrality in Network Theory

Definition 1

In a network (V,E)\left( V, E \right), the number of shortest paths connecting two nodes s,tVs,t \in V is denoted by σst=σts\sigma_{st} = \sigma_{ts}, and specifically, the number of paths among those that include another node vVv \in V is denoted by σst(v)\sigma_{st} (v). The following defined CS:VZC_{S} : V \to \mathbb{Z} is referred to as 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)

Explanation

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

If you read carefully the definition of σst\sigma_{st}, it is not the shortest distance d(s,t)=d(t,s)d(s,t) = d(t,s) between s,ts,t, but the number of paths that make it the shortest distance, for all vVv \in V, σvv=1\sigma_{vv} = 1, and with respect to the graph’s 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

Stress Centrality is one of the oldest centralities introduced by Shimbel in 1953, and the equation CS(v)=svtVσst(v) C_{S} (v) = \sum_{s \ne v \ne t \in V} \sigma_{st} (v) can be seen as how much a node vVv \in V creates the shortest paths by intermediating between all pairs of nodes s,tVs, t \in V. In many phenomena in nature… for example, as a water droplet minimizes surface area and the action in motion is minimized, there is often a great interest in the shortest or fastest path to connect two nodes, and points that frequently belong to the shortest path would bear a lot of Stress. From this intuitive standpoint, it makes quite sense to call CS(v)C_{S} (v) Stress Centrality.

Later, Betweenness Centrality was introduced as a measure that complements Stress Centrality.

See Also

Various Centrality in Networks


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