Communications And Connections
Theory
A communication matrix records direct connections (1) or no connection (0) between pairs of people or places. Two-way networks give symmetric matrices with zero diagonals. A row sum counts one person's direct connections; total edges = (sum of all entries) รท 2. The power
A communication matrix (also called a connection or adjacency matrix) records which pairs of people, places, or things are directly connected. Entries are usually
Number the people or places
The matrix has these key properties:
- Two-way (undirected) networks have symmetric matrices:
. - One-way (directed) networks (like one-way streets) need not be symmetric.
- The main diagonal is usually all
s โ no self-connections. - Row sum for row
= number of direct connections person has. - Total edges in a two-way network = (sum of all entries)
2.
Crucially, the power
The first diagram pairs a small 4-person network with its adjacency matrix. The second shows why
The key formulas are simple counting rules.
Building the matrix
Counting connections
| Quantity | How to compute |
|---|---|
| Direct connections of person | row sum of row |
| Total edges (two-way network) | (sum of all entries) |
| Two-step paths from | |
| Three-step paths from | |
| Isolated person | row of all zeros |
Building a communication matrix
- Number the people or places in your chosen order (alphabetical is common).
- Use that same order for both rows and columns.
- Set diagonal entries to 0 โ no self-connections.
- For each pair, write 1 if directly connected, 0 if not. For a two-way network, this means
.
Counting individual and total connections
- Person's connections: add the entries in that person's row.
- Total edges: add every entry in the matrix, then divide by 2.
- Isolated person: look for a row (and column) of all zeros.
Counting two-step paths
- Compute
using the row-by-column rule. - The entry
is the number of two-step paths from to . - To check by inspection: list which people
connects to directly, then count how many of them connect directly to .
Ben is row 2. Sum the entries of row 2.
| Row 2 sum | ||
Answer: Ben communicates with
Sum all entries in the matrix, then halve the total (each edge is counted twice in a symmetric matrix).
| Sum of all entries | ||
| Total edges |
Answer: the network has
A two-step path Alice โ ? โ Dan goes through an intermediate person. Alice is directly connected to Ben (B) and Carla (C). Are they connected to Dan?
From the matrix:
| Path 1 | : | |
| Path 2 | : |
Answer:
An isolated person has a row of all zeros (and, since the matrix is symmetric, a column of all zeros too).
| Row 1 sum | ||
| Row 2 sum | ||
| Row 3 sum | ||
| Row 4 sum |
Answer: member 4 has row sum
Common pitfalls
Frequently asked questions
What is a communication matrix?
A communication matrix (also called a connection or adjacency matrix) records which pairs of people, places, or things are directly connected. Each entry is usually 1 (a direct connection exists) or 0 (no direct connection).
What does an entry of 1 versus 0 mean?
Entry (i, j) equals 1 if person i has a direct connection to person j, and 0 if not. The main diagonal is usually 0 because people are not considered to communicate with themselves.
Why is the matrix usually symmetric?
For two-way (undirected) networks like face-to-face conversation or two-way roads, if A is connected to B then B is automatically connected to A. So entry (i, j) equals entry (j, i), making the matrix symmetric. One-way (directed) networks are NOT symmetric.
What does the row sum tell me?
The sum of row i counts how many direct connections person i has. A row of all zeros means that person is isolated โ no direct connections to anyone.
How do I count the total number of edges in a two-way network?
Add up every entry in the matrix and divide by 2. The division by 2 is because each edge is counted twice (once at entry (i, j) and once at entry (j, i)).
What does M squared tell me?
If M is the direct (one-step) communication matrix, then M squared counts two-step paths: the entry (i, j) in M squared is the number of paths of length 2 from person i to person j, going through one intermediate person. M cubed counts three-step paths, and so on.
Video Lessons
Practice Questions
20 questions available.
Practice Questions