Papers
Topics
Authors
Recent
2000 character limit reached

Normalized Closeness Centralization

Updated 3 December 2025
  • Normalized closeness centralization is a metric that quantifies the disparity in node accessibility by normalizing the deviation of closeness scores against the star graph maximum.
  • It standardizes measurements to a [0,1] scale, facilitating direct comparisons across networks of varying sizes, densities, and structures.
  • The measure applies to both one-mode and bipartite networks, though it only meets five of six axioms, indicating nuanced limitations in specific small-graph scenarios.

Normalized closeness centralization (NCC) is a global network index designed to rigorously quantify the extent to which the shortest-path accessibility of nodes is dominated by one or a few central “hubs.” Distinct from degree or betweenness-based measures, NCC captures the efficiency disparity in node-to-node reachability by leveraging the extremal properties of star and nearly regular graphs. The metric is normalized to the [0,1] interval through division by analytically derived maxima, enabling direct comparison across different network sizes and densities for both one-mode (simple graphs) and two-mode (bipartite) networks (Saberi et al., 26 Nov 2025, Krnc et al., 2016).

1. Mathematical Foundations and Normalization

Let G=(V,E)G=(V,E) be a simple undirected connected graph with n=V3n=|V| \geq 3. The closeness centrality of node ii is given by

CC(i)=n1jid(i,j)CC(i) = \frac{n-1}{\sum_{j \neq i} d(i,j)}

where d(i,j)d(i,j) is the shortest path length from ii to jj. Freeman’s unnormalized closeness centralization measures the deviation from uniform closeness:

CC(G)=i=1n[CCCC(i)],CC=maxiCC(i)C_C(G) = \sum_{i=1}^n [CC^* - CC(i)], \qquad CC^* = \max_i CC(i)

The maximum possible CC(G)C_C(G) for a given nn is achieved by the star graph SnS_n:

maxCC(G)=(n1)(n2)2n3\max C_C(G) = \frac{(n-1)(n-2)}{2n-3}

Normalized closeness centralization is

NCC(G)=i=1n[CCCC(i)](n1)(n2)/(2n3)NCC(G) = \frac{\sum_{i=1}^n [CC^* - CC(i)]}{(n-1)(n-2)/(2n-3)}

or, equivalently,

NCC(G)=(2n3)i=1n[CCCC(i)](n1)(n2)NCC(G) = \frac{(2n-3)\sum_{i=1}^n [CC^* - CC(i)]}{(n-1)(n-2)}

This normalization strictly bounds NCC(G)NCC(G) to [0,1][0,1], with NCC(Sn)=1NCC(S_n)=1 (maximal) and NCC(Kn)=0NCC(K_n)=0 (complete graph, minimal).

For bipartite (two-mode) graphs G=(U,V,E)G=(U,V,E) with U=n0|U|=n_0, V=n1|V|=n_1, centralization and normalization follow analogous definitions, with the closed-form extremal structure and value given by a special depth-2 tree rooted at a node in UU (Krnc et al., 2016).

2. Comparative Interpretation and Rationale

NCC’s normalization by the analytical maximum for any nn-node graph (one-mode) or any (n0,n1)(n_0,n_1)-sized bipartite graph ensures the metric is independent of network order or density. This guarantees consistent interpretation: an NCC of $0.6$ signifies 60% of the possible theoretical centralization for any network of comparable type, regardless of size. The comparability holds across sparsity/density regimes and for networks of fundamentally different scale (Saberi et al., 26 Nov 2025).

This property makes NCC uniquely suitable for comparative network analysis, both across empirical data sets and structural network models subject to changing size or density.

3. Compliance with Centralization Postulates

Palak & Nguyen (2021) define six postulates (P1a–P1c, P2–P6) specifying desirable properties for global centralization metrics. For NCC (one-mode):

  • P1 (Minimal centralization): Satisfied (NCC=0=0 for trivial, complete, or empty graphs).
  • P2 (Star maximality): Satisfied (NCC=1=1 uniquely for stars).
  • P3 (Isomorphism invariance): Satisfied (NCC invariant to relabeling).
  • P4 (Strictly below 1 if no saturated node): Satisfied.
  • P5 (Non-increase on saturating further nodes when one is already saturated): Satisfied.
  • P6 (Non-decrease on creating the first saturated node): Violated—counterexamples exist in small graphs where NCC decreases upon creating the first saturated node.

Thus, NCC satisfies five of the six foundational axioms, similar to normalized betweenness (NBC) and normalized degree centralization (NDC), indicating strong, though not strictly complete, axiomatic validity (Saberi et al., 26 Nov 2025).

4. Numerical and Structural Properties

Evaluated on canonical graphs, NCC displays:

  • Star graphs: NCC=1NCC=1 for all nn.
  • Rings and complete graphs: NCC=0NCC=0 for all nn.
  • Single-edge perturbations: NCC decays smoothly from 1 to 0 as hub edges are removed/added or as edge density increases, approaching correct asymptotics.

For random graphs:

  • Erdős–Rényi G(n,p)G(n,p): NCC is moderate (0.2–0.3) in sparse/just-connected regimes, decreases to zero in dense limit as path lengths equalize.
  • Scale-free (Barabási–Albert): NCC stabilizes at nonzero values (approx. 0.4–0.7, parameter-dependent) even as nn \rightarrow \infty, due to persistent hub-induced path-length reductions.

NCC thus robustly identifies hub-driven geodesic centralization and is insensitive to trivial scaling or overall edge-density effects once normalized (Saberi et al., 26 Nov 2025).

5. Application to Bipartite (Two-Mode) Networks

For bipartite graphs G=(U,V,E)G=(U,V,E) with prescribed part sizes, the normalized closeness centralization is defined via Freeman’s bipartite closeness and normalized by the explicit extremal value, realized by the depth-2 tree H(u;n0,n1)H(u;n_0,n_1) constructed as follows:

  • The root uUu \in U is adjacent to every vVv \in V.
  • Each vv is attached to either n01n1\lfloor \frac{n_0-1}{n_1} \rfloor or n01n1\lceil \frac{n_0-1}{n_1} \rceil further UU-nodes such that all of UU is exhausted.

The closed-form normalization guarantees

0CCnorm(G)10 \leq CC^\mathrm{norm}(G) \leq 1

with CCnorm(G)=1CC^\mathrm{norm}(G)=1 if and only if GH(u;n0,n1)G \cong H(u;n_0,n_1).

In empirical two-mode networks (e.g., affiliations, co-occurrence, participation data), high normalized centralization reflects a dominant accessibility “core,” while near-zero values indicate uniformly distributed reachability (Krnc et al., 2016).

6. Empirical Observations and Interpretive Range

In (Saberi et al., 26 Nov 2025), NCC is computed for diverse real-world networks:

Network Nodes NCC Interpretation
Brain Network (HCP) 45 0.288 Modest: no single dominating region
Condensed Matter Collaboration 21363 0.217 Very low: distributed collaboration
Enron Email 36692 0.269 Moderate: few slightly more accessible nodes
Facebook Ego 4039 0.367 High: connectors/ego node dominate distance
Food Web Michigan 39 0.701 Very high: accessibility bottlenecks
Yeast Protein Interaction 2375 0.206 Low: alternative routes, no hub domination
Zachary’s Karate Club 34 0.298 Moderate: some nodes mediate social reach

NCC values in the empirical range [0.2,0.7][0.2,0.7] represent the spectrum from network-wide equality of accessibility (low NCC) to acute hub-centric reachability (high NCC). In each case, NCC quantifies how much observed average node-to-node path lengths are shortened by dominant nodes in the network.

NCC provides a distinct perspective:

  • Closeness Centralization (NCC): Geodesic efficiency—captures the reduction in average path lengths due to hub(s).
  • Betweenness Centralization (NBC): Path control—emphasizes nodes that intercept most shortest paths.
  • Degree Centralization (NDC): Raw degree disparity—captures concentration of direct connections.

All three metrics satisfy five of six foundational postulates and are normalized to [0,1] using extremal graph constructions, ensuring cross-network comparability (Saberi et al., 26 Nov 2025).

NCC is particularly recommended when the research question centers on global accessibility or efficiency of reach. In practice, joint profiling with NBC and NDC is advocated for a comprehensive, multidimensional view of network “hubness” relevant for dynamic processes, structural resilience, and diffusion phenomena.

Researchers should limit NCC application to connected graphs or, in practice, restrict computation to the largest connected component. For bipartite scenarios, normalization requires explicit computation of the tree extremal bound for the observed part sizes.

References

  • "Evaluating Global Measures of Network Centralization: Axiomatic and Numerical Assessments" (Saberi et al., 26 Nov 2025).
  • "Closeness Centralization Measure for Two-mode Data of Prescribed Sizes" (Krnc et al., 2016).
Slide Deck Streamline Icon: https://streamlinehq.com

Whiteboard

Forward Email Streamline Icon: https://streamlinehq.com

Follow Topic

Get notified by email when new papers are published related to Normalized Closeness Centralization.