Module 13 Vocab Flashcards
Spanning Subgraph
13.1
a subgraph whose vertex set is the entire set V
(of the original graph G)
Spanning Tree
13.1
of a connected graph G,
a spanning subgraph that’s also a tree
Spanning Forest
13.1
a spanning tree for each of hte cc’s of G
Spanning Tree Proposition
13.1
every connected graph has a spanning tree
hence every graph has a spanning forest
Cut Edge
13.1
erasing it strictly increases the number of cc’s
Cut Edge Proposition
13.1
removing a cut edge in a graph increases the number of cc’s by exactly one
Edge Proposition II
13.1
an edge is a cut edge iff it does not belong to any cycle
every edge in a cycle is not a cut edge
Edge Corollary
13.1
a connected graph is a tree iff each one of its edges is a cut edge
Edge-Prunning Algorithm
13.1
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
Edge-Growing Algorithm
13.1
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
k-coloring
13.2
a function
f: V→[1..k]
each vertex maps to a color
Proper Coloring
13.2
when for any edge u-v we have f(u) ≠ f(v)
adjacent vertices are different colors
k-colorable
13.2
a graph that admits a proper k-coloring
what does k-colorable imply?
13.2
j-colorable for any j ≥ k
n-colorable
13.2
a graph with n vertices is n-colorable
Chromatic Number (notation)
13.2
X(G)
“chi of G”
Chromatic Number (definition)
13.2
the smallest k such that G is k-colorable
Chromatic Proposition
13.2
X(G) = 1 iff G is edgeless
Chromatic Path Graph Proposition
13.2
for n≥2 we have X(Pn) = 2
path graph of lengh n≥2 is 2-colorable
Chromatic Cycle Graph Proposition
13.2
X(Cn) = 2 when n is even
= 3 when n is odd