Alpha centrality

From Wikipedia, the free encyclopedia

In graph theory and social network analysis, alpha centrality is an alternative name for Katz centrality. It is a measure of centrality of nodes within a graph. It is an adaptation of eigenvector centrality with the addition that nodes are imbued with importance from external sources.

Definition[]

Given a graph with adjacency matrix , Katz centrality is defined as follows:

where is the external importance given to node , and is a nonnegative attenuation factor which must be smaller than the inverse of the spectral radius of . The original definition by Katz [1] used a constant vector . Hubbell[2] introduced the usage of a general .

Half a century later, Bonacich and Lloyd[3] defined alpha centrality as

which is essentially identical to Katz centrality. More precisely, the score of a node differs exactly by , so if is constant the order induced on the nodes is identical.

Motivation[]

To understand alpha centrality one must first understand eigenvector centrality. An intuitive process to compute eigenvector centrality is to give every node a starting random positive amount of influence. Each node then splits its influence evenly and divides it amongst its outward neighbors, receiving from its inward neighbors in kind. This process repeats until everyone is giving out as much as they're taking in and the system has reached steady state. The amount of influence they have at this steady state is their eigenvector centrality. Computationally this process is called the power method. We know that this process has converged when the vector of influence changes only by a constant as follows:

where is the amount of influence that node carries, is the adjacency matrix and happens to be the principal eigenvalue.

Alpha centrality enhances this process by allowing nodes to have external sources of influence. The amount of influence that node receives at every round is encoded in . The process described above should now stop when

where is a constant that trades off the importance of external influence against the importance of connection. When only the external influence matters. When is very large then only the connectivity matters, i.e. we reduce to the eigenvector centrality case.

Rather than perform the iteration described above we can solve this system for , obtaining the following equation:

Applications[]

Alpha centrality is implemented in igraph library for network analysis and visualization.[4]

Notes and references[]

  1. ^ Leo Katz (1953). "A new status index derived from sociometric analysis". Psychometrika. 18 (1): 39–43. doi:10.1007/BF02289026. S2CID 121768822.
  2. ^ Charles H. Hubbell (1965). "An input-output approach to clique identification". Sociometry. 28 (4): 377–399. doi:10.2307/2785990. JSTOR 2785990.
  3. ^ P. Bonacich, P. Lloyd (2001). "Eigenvector-like measures of centrality for asymmetric relations". Social Networks. 23 (3): 191–201. CiteSeerX 10.1.1.226.2113. doi:10.1016/S0378-8733(01)00038-7.
  4. ^ "Welcome to igraph's new home".
Retrieved from ""