Betweenness Centrality
Betweenness centrality is a measure of the extent to which a node in a network lies on the shortest paths between other nodes. Formally, the betweenness centrality of a node v is the sum of the fraction of all-pairs shortest paths that pass through v. A node with high betweenness centrality does not need to have many direct connections. It needs to connect parts of the network that would otherwise be separated — it is a bridge, a broker, a gatekeeper.
The measure was introduced by Linton Freeman in 1977 as part of the broader project of quantifying the structural importance of nodes in social networks. Freeman recognized that sociologists had been talking about \'bridge\' roles informally for decades — Durkheim\'s concept of social facts presupposes that individuals are connected in ways that make collective phenomena possible, and the Chicago School had mapped urban social worlds by tracking who knew whom. Betweenness centrality gave these intuitions a precise mathematical form.
The Mathematics of Brokerage
For an undirected graph with n nodes, the betweenness centrality of node v is:
C_B(v) = \sum_{s \neq v \neq t} \frac{\sigma_{st}(v)}{\sigma_{st}}
where \sigma_{st} is the total number of shortest paths from node s to node t, and \sigma_{st}(v) is the number of those paths that pass through v. The sum runs over all ordered pairs of nodes excluding v itself.
The normalization depends on the graph type. For undirected graphs, the maximum possible betweenness centrality is (n-1)(n-2)/2, achieved by the central node in a star topology. For directed graphs, the denominator is (n-1)(n-2).
A critical computational fact: calculating exact betweenness centrality for all nodes in a graph with n nodes and m edges requires O(nm) time using Brandes\' algorithm. For large networks — the web, social media platforms, biological interaction networks — this is prohibitive, and approximation algorithms are used instead. The cost of knowing who matters structurally scales with the size of the system, and for very large systems, we settle for partial knowledge.
Betweenness and Power
In social networks, betweenness centrality is not merely a descriptive measure. It is a predictor of power. A person who brokers between two otherwise disconnected groups can control the flow of information, set prices in trade, delay or accelerate the spread of innovations, and extract rents from their structural position. Ronald Burt\'s theory of \'structural holes\' formalizes this: actors who span gaps in the social structure gain competitive advantage not because of what they know, but because of where they sit.
This structural power is invisible to the individuals who possess it until it is measured. A manager may believe their influence comes from expertise or charisma; network analysis may show it comes from being the only path between engineering and marketing. The social fact of their influence is real — it produces measurable outcomes — but its cause is topological, not personal.
The core-periphery structure of many real-world networks concentrates betweenness centrality in a small number of core nodes. The periphery connects to the core; the core connects the periphery to everything else. This is why targeted attacks on high-betweenness nodes are so effective: removing a peripheral node isolates one node; removing a core broker isolates entire communities.
Beyond Social Networks
Betweenness centrality appears wherever connectivity matters. In protein-protein interaction networks, proteins with high betweenness are often essential for survival — not because they are the most abundant, but because they connect distinct functional modules. In transportation networks, high-betweenness stations are the natural targets for disruption or protection. In the brain, hub regions with high betweenness coordinate activity across functionally specialized areas, and their dysfunction correlates with neurological disorders.
The cross-domain recurrence of betweenness centrality suggests something deeper than analogy. Networks with similar topological constraints produce similar structural features regardless of what the nodes and edges represent. A social broker, a protein hub, and a neural coordinator are not similar because they share material properties. They are similar because they occupy similar positions in systems with similar connectivity requirements.
The persistent refusal of sociology to treat network topology as a causal force — the insistence that betweenness is merely a correlate of power rather than a generator of it — is the discipline\'s last remaining attachment to methodological individualism. A node\'s betweenness centrality does not describe its influence. It constitutes it. The bridge does not carry power because it is powerful. It is powerful because it is the bridge.