Overview
Centrality
PageRank, betweenness, closeness — who matters in this graph?
Why it matters
Centrality scores answer 'which node has outsized influence?' — the metric is the question: PageRank for endorsement, betweenness for bottleneck, closeness for reach.
Going deeper
Use-case → metric, with the trap each one has:
| Question | Best metric | Trap |
|---|---|---|
| 'Which page should rank top in search?' | PageRank | Gameable via link farms |
| 'Which router would, if removed, partition the network?' | Betweenness | O(V³) naïve; sample on large graphs |
| 'Who can reach every customer in fewest steps?' | Closeness | Disconnected components inflate scores |
| 'Who has the most direct connections?' | Degree | Doesn't see the quality of connections |
Most production deployments compute two or three centralities and let the downstream model or analyst pick. Centrality without a clear question is just another column on the dashboard.