Week 1 Flashcards

1
Q

Undirected Network:

A

A node in the ajacency matrix takes value 1 (gij=1)

iff

i & j are linked undirected

the ajacency matrix must be symmetric.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Directed Network

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Weighted Directed
Network (1/2)

``row stochastic’’

A

There are probablities [0,1] associated with the presence of a link rather than a binary 1 or 0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Weighted Directed
Network (2/2)

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the notation for Nodes, vertices, or players?

A

N={1,…,n}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Representations of the ajacency matrix?

A

g in {0,1} n×n

(unweighted, possibly directed)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does the notation gij = 1 typically indicate?

A

indicates a link, tie, or edge between i and j in the ajacency matrix

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is a path?

A

Path: a walk (i1 ,i 2 ,… i K ) with each node ik distinct

A path doesn’t go through the same node twice.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is a cycle?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the definition of Geodesic?

A

a shortest path between two nodes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Define a walk

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Describe the Paths, Walks, Cycles…

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Describe the Paths, Walks, Cycles…

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Describe the Paths, Walks, Cycles…

A
Simple Cycle (and a walk)
from 1 to 1: 1, 2, 3, 1
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Describe the Paths, Walks, Cycles…

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What useful information do we get from raising g to the nth power?

A

gn is a useful way to calculate the number of walks of length n

17
Q

(N,g) is connected if…?

A

(N,g) is connected if there is a path between
every two nodes

18
Q

What is a component?

A

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)

19
Q

What is diameter of a network?

A

Diameter – largest geodesic (largest shortest path)
– if unconnected, of largest component

20
Q
A