Processing math: 100%

This website uses cookies

We use cookies to enhance your experience and support COUNTER Metrics for transparent reporting of readership statistics. Cookie data is not sold to third parties or used for marketing purposes.

Skip to main content
null
Findings
  • Menu
  • Articles
    • Energy Findings
    • Resilience Findings
    • Safety Findings
    • Transport Findings
    • Urban Findings
    • All
  • For Authors
  • Editorial Board
  • About
  • Blog
  • search
  • X (formerly Twitter) (opens in a new tab)
  • LinkedIn (opens in a new tab)
  • RSS feed (opens a modal with a link to feed)

RSS Feed

Enter the URL below into your favorite RSS reader.

https://findingspress.org/feed
ISSN 2652-8800
Resilience Findings
March 17, 2026 AEST

Betweenness Centrality is not a Network Resilience Metric

Matthew W. Bhagat-Conway,
betweenness centralityresiliencenetworksgraph theory
Copyright Logoccby-sa-4.0 • https://doi.org/10.32866/001c.159015
Findings
Bhagat-Conway, Matthew W. 2026. “Betweenness Centrality Is Not a Network Resilience Metric.” Findings, ahead of print, March 16. https://doi.org/10.32866/001c.159015.
Download all (3)
  • Figure 1. The three stylized networks used in this article
    Download
  • Figure 2. Betweenness centrality values for the three networks
    Download
  • Supplemental materials
    Download

Error

Sorry, something went wrong. Please try again.

If this problem reoccurs, please contact Scholastica Support

Error message:

undefined

View more stats

Abstract

Betweenness centrality measures the importance of a link or node in a network based on how often it falls on the shortest path between other nodes. It was originally introduced in social network analysis, where it is interpreted as the ability an actor has to moderate communication between others in the network. In transportation, it is often used as a measure of the resilience impact of a particular link. In this article, I argue that betweenness centrality is not a theoretically valid measure of resilience, and provide hypothetical networks where it clearly fails to identify resilience issues.

1. Questions

Graph-theoretic metrics based on network structure are a common way to measure transportation resilience (albeit far from universal). Betweenness centrality is a common choice, though there are many other options (Sun et al. 2020). It has seen resilience applications in road networks (Testa et al. 2015), railways (To 2015), sewage networks (Okwori et al. 2024), and electrical grids (Wang et al. 2012).

Betweenness centrality of a link is defined as the number of shortest paths between any pair of nodes in the graph that pass through this link. When there are multiple equally-short paths, betweenness centrality is divided evenly among their constituent links. Mathematically, the betweenness centrality bl of link l is

bl=∑i∑j≠i#gilj#gij

where i and j are nodes in the graph, and #gij is the number of shortest paths from i to j, while #gilj is the number of shortest paths from i to j that include link l (Csárdi et al. 2025). A link with high betweenness centrality lies on many shortest paths, which is often interpreted as meaning it is critical to network function.

Friedkin (1991) provided theory for betweenness centrality in social networks. He argued that individuals with high betweenness centrality exerted significant influence on communication passing through them. Betweenness centrality is thus a measure of influence.

In this article, I demonstrate through simple example networks that betweenness centrality is not a valid measure of resilience. Resilience of a network is a measure of how well the network functions under disruption, and how quickly it recovers (Sun et al. 2020). Atemporal graph theoretic measures cannot quantify recovery time. It is common to evaluate resilience based only on the functionality of the network under disruption, which is ultimately related to redundancy and travel time on alternate routes (and, in congested networks, capacity of alternate routes). Betweenness centrality only considers shortest paths, and not the presence of longer alternates. It cannot measure redundancy, or the travel time or capacity of alternate routes, and thus is not a valid measure of resilience or functionality under disruption.

2. Methods

I demonstrate the problem through three hypothetical networks that clearly differ in terms of resilience but not in terms of betweenness centrality, shown in Figure 1. The first is a gridded network, with one diagonal road in the center, which I refer to as Diagon Alley. It will serve as a shortcut on any path between southwest and northeast.

Figure 1
Figure 1.The three stylized networks used in this article

The second network consists of a “mainland” and an “island,” both with gridded networks, and with a single link, which I refer to as the bridge, connecting them. The bridge will be part of the shortest path from any node on the island to the mainland or vice-versa, and thus will have high betweenness centrality. The third network adds a second, longer bridge, that is too long to be on any shortest path and therefore has no impact on betweenness centrality. Betweenness centrality is calculated using igraph (Csardi and Nepusz 2006; Csárdi et al. 2025) in R (R Core Team 2025). Code is available at https://github.com/mattwigway/BetweennessCentralityResilience.

3. Findings

The betweenness centrality values for all three networks are shown in Figure 2. As all three networks have 168 nodes, betweenness centrality values are directly comparable. In the first network, Diagon Alley unsurprisingly has the highest betweenness centrality value, as it serves as a shortcut in an otherwise perfect grid. It has a betweenness centrality value of 1,296. In the second network, the bridge has the highest betweenness centrality, of 1,280—close to but below the value for Diagon Alley, despite a clearly more important role in resilience. In the third network, despite the addition of the long bridge, the short bridge is still the shortest route for all access to the island. The betweenness centrality of the short bridge remains 1,280, even though it is clearly not nearly as critical to network function now that there is an alternative. The betweenness centrality of the long bridge is zero, because there is no path where taking that bridge is shorter than taking the short bridge. Betweenness centrality completely misses redundancy if that redundancy entirely consists of paths that are (maybe only slightly) longer than the shortest path.

Figure 2
Figure 2.Betweenness centrality values for the three networks

There is a difference in the distribution of betweenness centrality between the Diagon Alley graph and either of the other graphs. There are more mid-valued betweenness centralities in the Diagon Alley graph than the others. This difference is confirmed by Kolmogorov-Smirnov tests between the centralities in the Diagon Alley graph and the each of the other graphs (for both tests, p < 0.004). However, the distributions of betweenness centrality are still not a reliable measure of resilience. In the Island and Short and Long Bridge networks, the betweenness centrality values are identical for all links other than the added bridge. The difference in both the statistical and geographic distribution of centralities between the Diagon Alley network and other networks is very dependent on exactly where in the Diagon Alley network the diagonal street is placed, and on the network being a perfect grid with no variations in block length (see supplemental materials).

Betweenness centrality is not a theoretically justified measure of transportation resilience. However, empirical results are mixed. Wan et al. (2021) found that removing nodes with high betweenness from real-world social and communications networks was very effective in causing disconnection. The networks used, however, differ from transport networks by having many high-degree nodes. Conversely, Liu et al. (2024) found that nodes in the Shanghai metro with high betweenness also tended to have many alternatives, suggesting that high betweenness centrality could indicate a redundant (and therefore resilient) link in transport networks.

There are many alternatives to betweenness centrality for measuring transportation resilience, including alternative graph-theoretic measures. Connectivity-based metrics include the cyclomatic number (number of edges required to be removed to remove all cycles and thus all redundancy), density (number of edges divided by total possible number of edges), and link-node ratio (Sun et al. 2020). The clustering coefficient measures the number of triangles in the network, while the related meshedness coefficient essentially counts the number of city blocks (Yazdani and Jeffrey 2012). These metrics do not allow identifying critical links or impacts on long-distance paths.

There are centrality metrics other than betweenness. These include degree centrality—the number of edges at each node—and eigenvector centrality, a recursive metric where each nodes’ centrality is proportional to the centralities of the nodes it is connected to. Other centrality metrics are defined based on observed traffic flow (Sun et al. 2020). These generally exhibit the same concerns as betweenness centrality of not fully accounting for alternative routes.

Another metric is i-betweenness. A link is i-between two vertices if there is no way to get between them without using the link (Harary et al. 1965). In the networks presented above, i-betweenness would identify the bridge in the second network as a critical location. However, i-betweenness does not differentiate short and long detours, nor does it assign any value to adding a third alternate path.

Simulation is another option, removing links from the network and evaluating connectivity (e.g., Aydin et al. 2018). This approach may test removing all links individually, or random subsets. Jenelius (2010) flag betweenness centrality as problematic, and rank links based on simulated impacts to users if links were removed. The challenge with a simulation approach is that in many networks the criticality of links will have a highly-skewed distribution. In the networks above, only the bridge in the second network affects overall connectivity when removed. A random sampling of links might not contain this link, while a complete enumeration may be computationally challenging.

Disruptions will often affect multiple links in a non-random fashion (e.g. all low-lying links). A better approach is to remove links based on forecast future hazards (e.g., Fan et al. 2023; Testa et al. 2015). This combines the vulnerability of each link with the vulnerability of the network structure itself. However, it is unable to identify links critical to network functionality that are not exceptionally vulnerable to the hazards modeled, though possibly to others—for instance, a crash or vehicle fire that causes long-term damage to the roadway.

Cardwell et al. (2026) take a re-weighting approach, where shortest-path trees are found repeatedly and used links are penalized; the algorithm is iterated until the are no major changes to routes. The number of iterations indicate the overall redundancy of the network, but this method cannot identify individual critical links, and may struggle with chokepoints in an otherwise resilient network.

The question of link-level resilience is essentially the inverse of the Road Network Design Problem, which selects an optimal set of potential links to improve connectivity (Farahani et al. 2013). A promising area of research would be applying similar algorithms to select an optimal set of links to remove from a network to maximally decrease connectivity; these links are particularly critical.


Acknowledgements

The author wishes to thank the reviewers for their comments, particularly for suggesting the analysis of the distribution of centrality metrics.

Submitted: December 13, 2025 AEST

Accepted: March 15, 2026 AEST

References

Aydin, Nazli Yonca, H. Sebnem Duzgun, Friedemann Wenzel, and Hans Rudolf Heinimann. 2018. “Integration of Stress Testing with Graph Theory to Assess the Resilience of Urban Road Networks under Seismic Hazards.” Natural Hazards 91 (1): 37–68. https:/​/​doi.org/​10.1007/​s11069-017-3112-z.
Google Scholar
Cardwell, Julia, Paul L. Delamater, and Charles E. Konrad. 2026. “A Population-Based, Demand-Aware Framework for Measuring Structural Road Network Redundancy.” Journal of Transport Geography 131 (February): 104569. https:/​/​doi.org/​10.1016/​j.jtrangeo.2026.104569.
Google Scholar
Csardi, Gabor, and Tamas Nepusz. 2006. “The Igraph Software Package for Complex Network Research.” InterJournal Complex Systems: 1695. https:/​/​igraph.org.
Google Scholar
Csárdi, Gábor, Tamás Nepusz, Vincent Traag, et al. 2025. Igraph: Network Analysis and Visualization in r. https:/​/​doi.org/​10.5281/​zenodo.7682609.
Google Scholar
Fan, Huiying, Rawlings Miller, and Leta Huntsinger. 2023. “Climate Change Impacts on North Carolina Roadway System in 2050: A Systemic Perspective on Risk Interactions and Failure Propagation.” Sustainable Cities and Society 99 (December): 104822. https:/​/​doi.org/​10.1016/​j.scs.2023.104822.
Google Scholar
Farahani, Reza Zanjirani, Elnaz Miandoabchi, W. Y. Szeto, and Hannaneh Rashidi. 2013. “A Review of Urban Transportation Network Design Problems.” European Journal of Operational Research 229 (2): 281–302. https:/​/​doi.org/​10.1016/​j.ejor.2013.01.001.
Google Scholar
Friedkin, Noah E. 1991. “Theoretical Foundations for Centrality Measures.” American Journal of Sociology 96 (6): 1478–504. https:/​/​doi.org/​10.1086/​229694.
Google Scholar
Harary, Frank, Robert Zane Norman, and Dorwin Cartwright. 1965. Structural Models: An Introduction to the Theory of Directed Graphs. John Wiley and Sons.
Google Scholar
Jenelius, Erik. 2010. “Redundancy Importance: Links as Rerouting Alternatives during Road Network Disruptions.” Procedia Engineering, 1st Conference on Evacuation Modeling and Management, vol. 3 (January): 129–37. https:/​/​doi.org/​10.1016/​j.proeng.2010.07.013.
Google Scholar
Liu, S C, Y K Qiao, and F L Peng. 2024. “Optimized Identification for Critical Metro Stations from Urban Resilience Perspective.” IOP Conference Series: Earth and Environmental Science 1333 (1): 012025. https:/​/​doi.org/​10.1088/​1755-1315/​1333/​1/​012025.
Google Scholar
Okwori, Emmanuel Jenkeri, Maria Viklander, and Annelie Hedström. 2024. “Edge-Based Graph Centrality Measures with Spatial Analytics to Support Vulnerability Assessment and Maintenance Planning in Sewer Networks.” Journal of Hydroinformatics 26 (9): 2146–61. https:/​/​doi.org/​10.2166/​hydro.2024.300.
Google Scholar
R Core Team. 2025. R: A Language and Environment for Statistical Computing. R Foundation for Statistical Computing. https:/​/​www.R-project.org/​.
Google Scholar
Sun, Wenjuan, Paolo Bocchini, and Brian D. Davison. 2020. “Resilience Metrics and Measurement Methods for Transportation Infrastructure: The State of the Art.” Sustainable and Resilient Infrastructure 5 (3): 168–99. https:/​/​doi.org/​10.1080/​23789689.2018.1448663.
Google Scholar
Testa, Alexandra C., Mark N. Furtado, and Alice Alipour. 2015. “Resilience of Coastal Transportation Networks Faced with Extreme Climatic Events.” Transportation Research Record 2532 (1): 29–36. https:/​/​doi.org/​10.3141/​2532-04.
Google Scholar
To, W. M. 2015. “Centrality of an Urban Rail System.” Urban Rail Transit 1 (4): 249–56. https:/​/​doi.org/​10.1007/​s40864-016-0031-3.
Google Scholar
Wan, Zelin, Yash Mahajan, Beom Woo Kang, Terrence J. Moore, and Jin-Hee Cho. 2021. “A Survey on Centrality Metrics and Their Network Resilience Analysis.” IEEE Access 9: 104773–819. https:/​/​doi.org/​10.1109/​ACCESS.2021.3094196.
Google Scholar
Wang, Zhifang, Anna Scaglione, and Robert J. Thomas. 2012. “Electrical Centrality Measures for Power Grids.” In Control and Optimization Methods for Electric Smart Grids, edited by Aranya Chakrabortty and Marija D. Ilić. Springer. https:/​/​doi.org/​10.1007/​978-1-4614-1605-0_12.
Google Scholar
Yazdani, A., and P. Jeffrey. 2012. “Applying Network Theory to Quantify the Redundancy and Structural Robustness of Water Distribution Systems.” Journal of Water Resources Planning and Management 138 (2): 153–61. https:/​/​doi.org/​10.1061/​(ASCE)WR.1943-5452.0000159.
Google Scholar

Attachments

Powered by Scholastica, the modern academic journal management system