Principal component centrality (PCC) is a spectral measure of node influence that generalizes eigenvector centrality by incorporating multiple leading eigenvectors of the adjacency matrix, rather than relying solely on the dominant one [2]. Each node is represented in the eigenspace spanned by the top \(p\) eigenvectors of the adjacency matrix, and its importance is quantified as the weighted Euclidean distance of its coordinates from the origin, where the weights correspond to the associated eigenvalues.
Formally, let \(A\) be the \(N \times N\) adjacency matrix of graph \(G\) and \(X_p\) be the \(N \times p\) matrix of the top \(p\) eigenvectors \(v_1, \dots, v_p\) corresponding to eigenvalues \(λ_1, \dots, λ_p\) with \(|λ_1| \ge |λ_2| \ge \cdots \ge |λ_p|\). Then, the PCC vector is defined as
\[
c_{PCC} = \sqrt{ (A X_p \circ A X_p) u },
\]
where \(\circ\) denotes the Hadamard (element-wise) product and \(u\) is a \(p \times 1\) vector of ones. Equivalently, the PCC score of node \(i\) is
\[
c_{PCC}(i) = \sqrt{\sum_{k=1}^p \big((AX_p)_{ik}\big)^2} = \sqrt{\sum_{k=1}^p \big(λ_k (v_i)_k\big)^2}.
\]
When \(p=1\), PCC reduces to a scaled version of eigenvector centrality. Nodes farther from the origin in this weighted eigenspace are considered more central, reflecting stronger contributions along the most significant structural directions of the network.

References

[1] Shvydun, S. (2025). Zoo of Centralities: Encyclopedia of Node Metrics in Complex Networks. arXiv: 2511.05122 https://doi.org/10.48550/arXiv.2511.05122
[2] Ilyas, M. U., & Radha, H. (2011). Identifying influential nodes in online social networks using principal component centrality. In 2011 IEEE International Conference on Communications (ICC) (pp. 1-5). IEEE. doi: 10.1109/icc.2011.5963147.