Week 1 Flashcards
Undirected Network:
A node in the ajacency matrix takes value 1 (gij=1)
iff
i & j are linked undirected
the ajacency matrix must be symmetric.

Directed Network
Links originate at one node and end at another, does not need to be symmetrical.
g = { 12, 14, 24, 41,43 }
or
g = { 12, 14, 24, 41,43 }
order of pairs matters

Weighted Directed
Network (1/2)
``row stochastic’’
There are probablities [0,1] associated with the presence of a link rather than a binary 1 or 0.

Weighted Directed
Network (2/2)

What is the notation for Nodes, vertices, or players?
N={1,…,n}
Representations of the ajacency matrix?
g in {0,1} n×n
(unweighted, possibly directed)
What does the notation gij = 1 typically indicate?
indicates a link, tie, or edge between i and j in the ajacency matrix
What is a path?
Path: a walk (i1 ,i 2 ,… i K ) with each node ik distinct
A path doesn’t go through the same node twice.
What is a cycle?
Cycle: a walk where i 1 = i K
Nodes are not ordered, it is arbitrary since the walk ‘returns’ to the same node over again.
What is the definition of Geodesic?
a shortest path between two nodes
Define a walk
A Walk from i 1 to i K is a sequence of nodes (i1,i2 ,…, iK )
and sequence of links (i1 i2 ,i2i 3 ,…,iK‐1 iK ) such that
ik‐1 ik in g (ajacency matrix) for each k.
Convenient to represent it as the corresponding
sequence of nodes (i 1 ,i 2 ,…, i K ) such that i k‐1 i k in the ajacency matix (g)
for each k
Describe the Paths, Walks, Cycles…

Path (and a walk) from 1 to 7:
1, 2, 3, 4, 5, 6, 7

Describe the Paths, Walks, Cycles…

Walk from 1 to 7 that is not a path:
1, 2, 3, 4, 5, 3, 7

Describe the Paths, Walks, Cycles…

Simple Cycle (and a walk) from 1 to 1: 1, 2, 3, 1

Describe the Paths, Walks, Cycles…

Cycle (and a walk) from 1 to 1:
1, 2, 3, 4, 5, 3, 1

What useful information do we get from raising g to the nth power?
gn is a useful way to calculate the number of walks of length n

(N,g) is connected if…?
(N,g) is connected if there is a path between
every two nodes
What is a component?
Component: maximal connected subgraph
– (N’,g’) is a subset of (N,g)
– (N’,g’) is connected
– i in N’ and ij in g implies j in N’ and ij in g’
Imagine a bunch of nodes, they are connected in little subgroups that are detached from other subgrouns. The subgroups are components.
All of the nodes are needed to get a network (N,g)

What is diameter of a network?
Diameter – largest geodesic (largest shortest path)
– if unconnected, of largest component…