An independent study reference written by Dr Phuc V. Nguyen. It is not official subject material — for assessment requirements always follow your subject outline and vUWS.
Betweenness centrality
Betweenness centrality counts how often an actor sits on the shortest path between two others. For every pair of other actors, work out the shortest paths between them and ask what share of those paths runs through the actor in question, then add that share across all pairs. High betweenness marks a broker, someone who carries or at least witnesses the flow between parts of the network that are otherwise far apart. It points to where a connection is thin, though calling someone a single point of failure is a separate test. That claim needs an articulation point, an actor whose removal splits the network into more components. Betweenness and degree often disagree, and the disagreement is usually the interesting part.
Why it matters
Think of a road map where every trip takes the shortest route. Some towns are only destinations. Others are the one place a bridge crosses the river, so half the traffic in the region passes through even though hardly anyone lives there. Betweenness counts that traffic. It is the difference between being popular and being unavoidable.
A firm merges two departments. Six months later one analyst has betweenness far above everyone else while degree is spread evenly. The most useful reading is that
Formulas
Worked examples
A manufacturer maps which engineers consult which colleagues on production faults, and wants to know where a resignation would hurt most.
Ranked on degree, the head of the largest sub-team leads. Ranked on betweenness, a mid-level engineer leads, because that person is the only link between the plant floor group and the design office. When the engineer resigns, degree barely moves for anyone, but the two groups lose their shortest route and fault reports start taking seven days to reach design. The practical action is to build a second connection before the person leaves, not to promote them.
A bank applies betweenness to its payments network to flag accounts that might be moving funds for someone else, on the theory that money passes through brokers.
That theory holds only if money takes shortest paths, and often it does not. Funds are deliberately routed through long chains precisely so they do not look direct. Betweenness assumes the thing flowing seeks the shortest route and travels as one indivisible parcel, which suits a rumour or a physical delivery better than a deliberately obscured chain. The honest step is to state the flow assumption, then either pick a walk-based measure or treat betweenness as one weak signal among several.
Common mistakes
- ✗High betweenness means high status. Brokers are frequently mid-level. The position comes from spanning a gap, and senior people usually sit inside a dense group of peers where every path has an alternative. Status is read better from in-degree on a directed relation.
- ✗Betweenness and degree measure roughly the same thing. They can disagree completely. In the six-person example Dan holds two ties and the same brokerage as Ana with three, because both of the ties Dan holds span a gap while one of the three Ana holds runs inside the Ana-Ben-Cara triangle. That team carries three bridges, Ana-Dan, Dan-Eve and Eve-Finn, so Dan sits on a thin link rather than on the only one. Networks with clear sub-groups routinely produce low-degree, high-betweenness actors.
- ✗A broker is always good for the organisation. A broker is a route and a bottleneck at the same time. The position that lets someone connect two groups also lets them filter, delay or distort what crosses. Whether that is valuable depends on whether you want control or resilience.
- ✗Betweenness is cheap to compute on any size of network. It needs shortest paths between all pairs, so the work grows with the number of actors multiplied by the number of ties. On very large networks it is usually estimated from a sample of source actors rather than computed exactly.
Revision bullets
- •Counts the share of shortest paths between other pairs that run through the actor
- •Normalise by (n-1)(n-2)/2, the number of pairs excluding that actor
- •Identifies brokers and structural gaps; a true split needs an articulation point
- •Can be high for a low-degree actor: Dan scores 6 on two ties in the running example
- •Assumes flow takes the shortest path, which not every flow does
- •Expensive to compute, so large networks use sampled estimates
Quick check
A firm merges two departments. Six months later one analyst has betweenness far above everyone else while degree is spread evenly. The most useful reading is that
Between two actors there are four equally short paths, and Priya lies on two of them. How much does that pair contribute to the betweenness score of Priya?
Connected topics
More in Networks
Sources
- Freeman, L. C. "A Set of Measures of Centrality Based on Betweenness." Sociometry, 40(1), 35-41, 1977.The original definition, including the shared-credit rule when several shortest paths exist.
- Burt, R. S. "Structural Holes and Good Ideas." American Journal of Sociology, 110(2), 349-399, 2004.Evidence that people whose contacts span a structural gap generate ideas judged more valuable.
- Borgatti, S. P. "Centrality and Network Flow." Social Networks, 27(1), 55-71, 2005.Shows that each centrality assumes a particular kind of flow, and misfires when the assumption is wrong.
- Brandes, U. "A Faster Algorithm for Betweenness Centrality." Journal of Mathematical Sociology, 25(2), 163-177, 2001.The algorithm behind most practical implementations, and the source of the cost estimate quoted here.