How important is a node in a network? The blunt answer is: count how many other nodes can reach it. But not all paths are equal — a node reachable through a long chain of strangers feels less connected than one a single handshake away.
In 1953, sociologist Leo Katz captured this intuition with a formula. Every path of length from any node to a target contributes to that target's score, where is a small attenuation factor. Short, direct links count almost in full; longer paths fade geometrically.
Sum over all path lengths and you get the Katz centrality — a single number that weighs a node's entire reachable neighborhood, discounted by distance. It is closed-form, computable from the adjacency matrix, and the direct ancestor of PageRank (which adds the constraint that influence is shared among a node's out-edges rather than broadcast to all).
Comments
Loading comments...