Skip to content
Part IA Lent Term

Power-Law Degree Distributions

Definition

Many real-world networks have degree distributions that follow a power law:

P(k)kαP(k) \propto k^{-\alpha}

where kk is the node degree (number of edges incident to the node) and α\alpha is typically between 22 and 33. For the Web’s in-degree distribution, α2.1\alpha \approx 2.1; for citation networks, α3\alpha \approx 3.

Scale-Free Property

A power-law distribution is called scale-free because it looks the same at any scale. Formally, scaling the degree by a constant factor cc only multiplies the probability by cαc^{-\alpha}:

P(ck)(ck)α=cαkαP(k)P(c \cdot k) \propto (ck)^{-\alpha} = c^{-\alpha} \cdot k^{-\alpha} \propto P(k)

There is no “characteristic” or “typical” degree that describes most nodes. The mean and the most probable value can be very different. In a random (Poisson) network, the degree is concentrated around a characteristic scale k\langle k \rangle; in a scale-free network, there is no such concentration.

What It Means in Practice

  • A few hubs have extremely high degree (thousands or millions of connections).
  • Most nodes have very low degree (1–5 connections).
  • The mean degree is not representative: it is pulled upward by the tiny fraction of hubs.
  • The variance may be infinite (if α3\alpha \leq 3), meaning the degree varies enormously from node to node.

In the Web: a handful of sites (Google, Wikipedia, YouTube) receive a large fraction of all links; the vast majority of pages receive almost none. In citation networks: a few landmark papers are cited tens of thousands of times; most papers are cited once or not at all.

Origin: Preferential Attachment (Barabási-Albert Model)

The dominant explanation for power-law degree distributions is preferential attachment, also known as the “rich get richer” or “Matthew effect”.

Mechanism: when new nodes join the network, they do not connect uniformly at random. Instead, the probability that a new node connects to existing node ii is proportional to kik_i (the current degree of node ii). Nodes that already have many connections attract even more connections from newcomers.

Over time, early-arriving nodes accumulate a disproportionate share of all edges. The few nodes that were “first to market” become the hubs. This positive feedback loop produces the heavy-tailed power-law distribution.

Robustness and Fragility

Power-law networks exhibit a sharp asymmetry in resilience:

  • Robust to random failure: randomly removing a node is overwhelmingly likely to remove a low-degree node (since most nodes have low degree). Removing a leaf or low-degree node has minimal impact on connectivity because few shortest paths pass through it. The giant component survives extensive random damage.
  • Fragile to targeted attack: removing the top 5–10% highest-degree nodes (the hubs) rapidly fragments the network. Since most shortest paths pass through hubs, their removal destroys the giant component. The Internet is robust to random router failures but vulnerable to a coordinated attack on major exchange points.

Contrast with Random (Erdős-Rényi) Networks

In an Erdős-Rényi random graph with NN nodes and edge probability pp, the degree distribution is binomial (approximately Poisson for large NN):

P(k)ekkkk!P(k) \approx e^{-\langle k \rangle} \cdot \frac{\langle k \rangle^k}{k!}

PropertyPower-Law (Scale-Free)Random (Erdős-Rényi)
Degree distributionHeavy-tailed, P(k)kαP(k) \propto k^{-\alpha}Poisson, peaked around k\langle k \rangle
HubsExist (nodes with extreme degree)Do not exist (degree tightly bounded)
Mean degreePoorly representativeRepresentative
Random failureRobustModerately robust
Targeted attackVery fragileMore resistant (no hubs to target)
VarianceMay be infiniteFinite and moderate

Detecting Power-Law Behaviour

Plot logP(k)\log P(k) against logk\log k. If the degree distribution follows a power law, this log-log plot is approximately a straight line with slope α-\alpha. This is the standard diagnostic. Real-world data rarely follows a perfect power law across all kk — often the tail (high kk) deviates due to finite-size effects — but the broad trend is a straight line over several orders of magnitude.

Summary

AspectProperty
FormulaP(k)kαP(k) \propto k^{-\alpha}, α2\alpha \approx 233
MeaningFew hubs with very high degree; most nodes low-degree
Scale-freeDistribution looks the same at any scale; no “typical” degree
OriginPreferential attachment (Barabási-Albert model)
Random failureRobust (most nodes have low degree)
Targeted attackFragile (remove hubs, network fragments)
DiagnosticStraight line on log-log plot of P(k)P(k) vs kk

Past paper questions: y2020p3q9, y2025p3q8