ArticleslgStudy

mathematics

Katz centrality

Katz centrality is a mathematics topic covered in the lgStudy science library. This page brings together a partial reference excerpt, illustrations, worked examples, real-world applications and a short study plan, so you can understand Katz centrality rather than just read about it. In short: In graph theory, the Katz centrality or alpha centrality of a node is a measure of centrality in a network. It was introduced by Leo Katz in 1953 and is used to measure the relative degree of influence of an actor (or node) within a social network.

Katz centrality — main illustration
Katz centrality — illustration

Key takeaways

  • Katz centrality belongs to mathematics; place it in that map before memorising details.
  • Learn the definition first, then one example that makes the definition concrete.
  • Connect Katz centrality to a quantity you can measure, compute or draw — that is where exam questions come from.
  • Reproduce the core statement of Katz centrality from memory before moving on to harder problems.

Reference excerpt

In graph theory, the Katz centrality or alpha centrality of a node is a measure of centrality in a network. It was introduced by Leo Katz in 1953 and is used to measure the relative degree of influence of an actor (or node) within a social network. Unlike typical centrality measures which consider only the shortest path (the geodesic) between a pair of actors, Katz centrality measures influence by taking into account the total number of walks between a pair of actors. It is similar to Google's PageRank and to the eigenvector centrality.

Measurement

Katz centrality computes the relative influence of a node within a network by measuring the number of the immediate neighbors (first degree nodes) and also all other nodes in the network that connect to the node under consideration through these immediate neighbors. Connections made with distant neighbors are, however, penalized by an attenuation factor α {\displaystyle \alpha } . Each path or connection between a pair of nodes is assigned a weight determined by α {\displaystyle \alpha } and the distance between nodes as α d {\displaystyle \alpha ^{d}} . For example, in the figure on the right, assume that John's centrality is being measured and that α = 0.5 {\displaystyle \alpha =0.5} . The weight assigned to each link that connects John with his immediate neighbors Jane and Bob will be ( 0.5 ) 1 = 0.5 {\displaystyle (0.5)^{1}=0.5} . Since Jose connects to John indirectly through Bob, the weight assigned to this connection (composed of two links) will be ( 0.5 ) 2 = 0.25 {\displaystyle (0.5)^{2}=0.25} . Similarly, the weight assigned to the connection between Agneta and John through Aziz and Jane will be ( 0.5 ) 3 = 0.125 {\displaystyle (0.5)^{3}=0.125} and the weight assigned to the connection between Agneta and John through Diego, Jose and Bob will be ( 0.5 ) 4 = 0.0625 {\displaystyle (0.5)^{4}=0.0625} .

Mathematical formulation Let A be the adjacency matrix of a network under consideration. Elements ( a i j ) {\displaystyle (a_{ij})} of A are variables that take a value 1 if a node i is connected to node j and 0 otherwise. The powers of A indicate the presence (or absence) of links between two nodes through intermediaries. For instance, in matrix A 3 {\displaystyle A^{3}} , if element ( a 2 , 12 ) = 1 {\displaystyle (a_{2,12})=1} , it indicates that node 2 and node 12 are connected through some walk of length 3. If C K a t z ( i ) {\displaystyle C_{\mathrm {Katz} }(i)} denotes Katz centrality of a node i, then, given a value α ∈ ( 0 , 1 ) {\displaystyle \alpha \in (0,1)} , mathematically:

C K a t z ( i ) = ∑ k = 1 ∞ ∑ j = 1 n α k ( A k ) j i {\displaystyle C_{\mathrm {Katz} }(i)=\sum _{k=1}^{\infty }\sum _{j=1}^{n}\alpha ^{k}(A^{k})_{ji}}

Note that the above definition uses the fact that the element at location ( i , j ) {\displaystyle (i,j)} of A k {\displaystyle A^{k}} reflects the total number of k {\displaystyle k} degree connections between nodes i {\displaystyle i} and j {\displaystyle j} . The value of the attenuation factor α {\displaystyle \alpha } has to be chosen such that it is smaller than the reciprocal of the absolute value of the largest eigenvalue of A. In this case the following expression can be used to calculate Katz centrality:

C → K a t z = ( ( I − α A T ) − 1 − I ) I → {\displaystyle {\overrightarrow {C}}_{\mathrm {Katz} }=((I-\alpha A^{T})^{-1}-I){\overrightarrow {I}}}

… excerpt ends here. Continue reading the full article.

Illustrations

Katz centrality illustration
Katz centrality: A simple social network: the nodes represent people or actors and the edges between nodes represent some relationship between actors
A simple social network: the nodes represent people or actors and the edges between nodes represent some relationship between actors

Worked examples

Example 1 — a first encounter with Katz centrality

Start with the simplest possible case. Write down what Katz centrality claims or describes in one sentence, then invent the smallest concrete situation in which that sentence is true. In mathematics, the smallest case is usually a single object, a single equation or a single measurement. Check that every symbol or term in your sentence has a meaning in that case.

Example 2 — changing one variable

Take the situation from Example 1 and change exactly one quantity: double it, halve it, or set it to zero. Predict what should happen to Katz centrality before you calculate. Comparing your prediction with the result is the fastest way to find out whether you understand the idea or only the words.

Example 3 — an exam-style question

Typical questions about Katz centrality ask you to (a) state it precisely, (b) apply it to given data, and (c) explain a limitation. Practise writing all three answers in under five minutes; the third part is what separates a full-mark answer from an average one.

Applications of Katz centrality

In research
Katz centrality appears in mathematics research whenever the underlying quantities have to be modelled precisely. Papers usually cite it as a starting assumption and then explore where it breaks down.
In technology and industry
Engineering practice reuses Katz centrality in design rules, simulations and safety margins. Knowing the idea lets you read a specification sheet and understand why the numbers look the way they do.
In the classroom
Katz centrality is common in secondary-school and first-year university syllabi. It links to neighbouring topics 1953 introductions, Algebraic graph theory, Graph invariants, so understanding it makes those chapters shorter.
In everyday life
Look for Katz centrality outside the textbook — in sport, cooking, traffic, electronics or the sky above you. An example you found yourself is remembered far longer than one you were given.
Ask Teacher Smith questions about this articleOpens your AI tutor with a question about “Katz centrality” →

Affiliate

Preply — study more efficiently by working with a personal tutor. 50% off.

How to study Katz centrality in 20 minutes

  1. Read the reference excerpt below once, without taking notes.
  2. Close the page and write down what Katz centrality means in your own words.
  3. Compare your version with the excerpt and mark what you missed.
  4. Work through the three examples above with pen and paper.
  5. Explain Katz centrality out loud to somebody else — or to Teacher Smith in the lgStudy chat.

Frequently asked questions

What is Katz centrality in simple terms?

In graph theory, the Katz centrality or alpha centrality of a node is a measure of centrality in a network. It was introduced by Leo Katz in 1953 and is used to measure the relative degree of influence of an actor (or node) within a social network.

Why does Katz centrality matter?

Because it connects several mathematics ideas at once: it gives you a definition you can apply, a quantity you can calculate, and a way to check whether a result is plausible.

How should I study Katz centrality?

Read the excerpt, restate it from memory, then work through the examples and applications listed on this page. The five-step study plan above takes about twenty minutes.

What does this page cover?

It gives you a compact reference excerpt plus original lgStudy explanations, examples, applications and study material on Katz centrality.

Tags

  • 1953 introductions
  • Algebraic graph theory
  • Graph invariants
  • Social network analysis

Keep exploring