Graph Theory Flashcards

1
Q

Sequence of vertices that follows edges

A

Walk

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

Walk that does not repeat edges

A

Trail

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

Sequence of vertices that does not repeat edges

A

Trail

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

Trail that doesn’t repeat vertices

A

Path

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

Sequence of vertices that repeats neither edges nor vertices

A

Path

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

Sequence of vertices that starts and ends at the same place

A

Closed Walk

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

Sequence of vertices that starts and ends at the same place and doesn’t repeat edges

A

Tour

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

Closed trail

A

Tour

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

Tour that has positive length and doesn’t repeat vertices

A

Cycle

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

Sequence of vertices that starts and ends at the same place and doesn’t repeat edges or vertices

A

Cycle

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

A tour is Eulerian when

A

it uses every edge once and visits every vertex

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

A trail, walk, or path is semi Eulerian when

A

it uses every edge once and visits every vertex

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

A graph is Eulerian iff

A

it has an euler tour

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

A graph is semi-Eulerian iff

A

it has an euler trail, walk, or path

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

Handshake lemma for nondirectional graph

A

sum of degrees = 2 times number of edges

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

Handshake lemma for directional graph

A

sum of degree of vectors in = number of edges = sum of degree of vectors out

17
Q

u can reach v or v is reachable from u

A

u-v walk

18
Q

every pair of vertices is strongly connected

A

graph G is strongly connected

19
Q

strongly connected graph and every vertex has in degree = out degree

A

directed graph has an euler tour

20
Q

induced subgraph on the set of strongly connected vertices with v

A

strongly connected component of v = [v]

21
Q

All strongly connected components are treated as one vertex and removing all self loops

A

condensation graph = DAG

22
Q

Directed Acyclic Graph

A

digraph with no cycles

23
Q

edge that is only path between endpoints

A

covering edge

24
Q

you take a DAG and remove all edges except covering edges

A

Hasse Diagram

25
Q

u, v comparable when

A

u can reach v or v can reach u

26
Q

subset of vertices where every pair comparable

A

chain

27
Q

maximum size chain

A

critical path = set of vertices

28
Q

subset of vertices in which every element is incomparable

A

antichain

29
Q

depth(v)

A

length of longest path that ends at v

30
Q
A