Module 13 Vocab Flashcards

1
Q

Spanning Subgraph

13.1

A

a subgraph whose vertex set is the entire set V
(of the original graph G)

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

Spanning Tree

13.1

A

of a connected graph G,
a spanning subgraph that’s also a tree

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

Spanning Forest

13.1

A

a spanning tree for each of hte cc’s of G

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

Spanning Tree Proposition

13.1

A

every connected graph has a spanning tree

hence every graph has a spanning forest

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

Cut Edge

13.1

A

erasing it strictly increases the number of cc’s

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

Cut Edge Proposition

13.1

A

removing a cut edge in a graph increases the number of cc’s by exactly one

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

Edge Proposition II

13.1

A

an edge is a cut edge iff it does not belong to any cycle

every edge in a cycle is not a cut edge

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

Edge Corollary

13.1

A

a connected graph is a tree iff each one of its edges is a cut edge

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

Edge-Prunning Algorithm

13.1

A

1) Let T = G
2) for k = 1,…,m:
remove ek from T if it’s not a cut edge
else keep ek in T
3) Output T

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

Edge-Growing Algorithm

13.1

A

1) Let T = (V, ∅)
2) For k = 1,…,m:
add ek to T if doing so doesn’t form a cycle with the edges already in T
else leave ek out of T
3) Output T

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

k-coloring

13.2

A

a function
f: V→[1..k]
each vertex maps to a color

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

Proper Coloring

13.2

A

when for any edge u-v we have f(u) ≠ f(v)
adjacent vertices are different colors

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

k-colorable

13.2

A

a graph that admits a proper k-coloring

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

what does k-colorable imply?

13.2

A

j-colorable for any j ≥ k

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

n-colorable

13.2

A

a graph with n vertices is n-colorable

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

Chromatic Number (notation)

13.2

A

X(G)
“chi of G”

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

Chromatic Number (definition)

13.2

A

the smallest k such that G is k-colorable

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

Chromatic Proposition

13.2

A

X(G) = 1 iff G is edgeless

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

Chromatic Path Graph Proposition

13.2

A

for n≥2 we have X(Pn) = 2

path graph of lengh n≥2 is 2-colorable

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

Chromatic Cycle Graph Proposition

13.2

A

X(Cn) = 2 when n is even
= 3 when n is odd

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

Chromatic Complete Graph Proposition

13.2

A

X(Kn) = n

because any 2 vertices are adjacent

22
Q

Bipartite

13.2

A

2-colorable graphs

23
Q

Bipartite Proposition I

13.2

A

every path graph is bipartite

24
Q

Bipartite Proposition II

13.2

A

a cycle graph is bipartite iff it has an even number of vertices

25
Q

2-color Proposition I

13.2

A

there are 2 ways to 2-color a graph
one way and then swap colors

in general, for each cc there are 2 ways

26
Q

2-color Proposition II

13.2

A

2^k ways to 2-color a garph with k cc’s

27
Q

Tree Bipartite Proposition

13.2

A

every tree is bipartite

28
Q

Bipartite Characterization Proposition

13.3

A

a graph is bipartite iff it does not contain a cycle of odd length

29
Q

Bipartite Subgraph Proposition

13.3

A

every subgraph of a bipartite graph is also bipartite

subgraph can’t have a cycle of odd length without OG graph having one

30
Q

Chromatic Subgraph Lemma

13.3

A

if S is a subgraph of G, then
X(S) ≤ X(G)

31
Q

Distance (notation)

13.3

A

d(u,v)

32
Q

Distance (definition)

13.3

A

the length of the shortest path from u to v

makes use of the well-ordering principle

33
Q

Triangle Inequality

13.3

A

d(u,v) ≤ d(u, w) + d(w, v)

where RHS is length of walk

34
Q

Distance and 2-Coloring

13.3

A

fix an arbitrary w0
color w R when d(w0, w) is even
color w B when (w0, w) is odd

35
Q

Coloring Proposition

Self II

A

a graph has a proper coloring iff each of its cc’s have a proper coloring

36
Q

Locality of Shortest Paths

Self II

A

consider the shortest path from u to v (p)
let x and y be two vertices in this path
~the portion x-…-y of p is the shortest path from x to y
~d(x,y) ≤ d(u,v)

37
Q

Max Degree Colorability Proposition I

Self I

A

every graph G is Δ(G) + 1-colorable

38
Q

Δ(G)

Self I

A

the maximum degree of a node in G

39
Q

Maximum Degree of a Node in G

Self I

A

Δ(G)

40
Q

Maximum Degree Colorability Proposition II

Self I

A

there exists graphs G whose chromatic number X(G) is Δ(G) + 1

41
Q

Complete Subgraph

13.4

A

a subgraph that is isomorphic to the complete graph Kn for some n

42
Q

Clique of/in G

13.4

A

1) complete subgraph of G
2) a subset of the vertices of G that induces a complete subgraph

43
Q

Clique

13.4

A

a subset of vertices
where any two are adjacent

44
Q

Size of a Clique

13.4

A

its # of vertices

45
Q

Independent Set

13.4

A

subset of vertices S⊆V
when no two vertices in S are adjacent

alt def: induced subgraph is edgeless

46
Q

Independent Set Proposition I

13.4

A

a graph is k-colorable iff its set of vertices can be partitiioned in k independent sets

follows directly from def of ind set, so ind sets are just another way to look at colorability

47
Q

Independent Sets Proposition II

13.4

A

the leaves of a tree form an independent set

48
Q

Complement of a Graph

13.4

A

G’ = (V, E’) where E’ is the
edges u-v that are not in E and u≠v

has exactly the edges that G does not have

49
Q

Complement Proposition

13.4

A

let G = (V, E) and S⊆V
S is a clique in G iff S is an independent set in G’

50
Q

How many edges does the complement of Pn have?

13.4

A

((n-1)(n-2) / 2