Chapter 9 Flashcards
Def/ A graph G is planar if:
if it is isomorphic to a graph that can be drawn w/o edge crossings.
Thm: Planar graphs can be drawn with what type of lines?
Straight lines
Def/ Regions are:
Regions are connected areas of the plane subdivided by edges in a planar graph.
Thm/ Euler’s Formula: In A connected planar graph with p vert., q edges, r regions, p-q+r=2.
Pf induct on edges. Single vertex, p=1, q=0,r=1, thus 1+1=2 holds.
Induct: SUppose true for all planar graphs with k-1 edges. Let G be conn. planar graph w/ K edges. If G is a tree, q=p-1, r=1, so holds.
If not a tree, there is a cycle C. Then, consider e edge on C and remove it. Then, edges of G-e are k-1, p=p, regions = r-1. By hyp, we know that p - (k-1) + (r-1) = 2. Thus,
p-k+1+r-1=2,
=> p-k+r=2 holds, where these values are for G which has size K.
Thm: Let G conn. planar graph, p vert., q edges, and p >=3. Then, q<=3p-6.
Let N be the sum of edges surrounding or in each region summed across all regions. Since some may be double counted,
N <= 2q
Since there are >=3 edges/region, N >= 3r
2q >= N >= 3r
=> r <= (2/3)q
Since 2 = p-q+r <= p-q+(2/3)q
=>2 <= p-(1/3)q
=> q <= 3p-6
Corr: K5 is not planar:
Because q<=3p-6 does not hold,
25 <=3(10)-6 is not true
Thm: If G is planar, connected, bipartite then q <= 2p-4
Proof: Let N be the sum of all edges over every region, thus maxing out at double count N <= 2q.
Since smallest cycle is 4 (bipartite cycles all are even, and 2 is not a cycle), then N >= 4r
=> r <= q/2
Plug into Euler’s formula of p-q+r = 2
=> 2 <= p-q + q/2
=> q <= 2p-4
Corr: K3,3 is not planar:
Because q <= 2p - 4 doesn’t hold.
9 <= 6-4 is not true
Defn/ A subdivision of a graph is:
A subdivision of a graph is a new graph obtained by adding vertices along edges
Note for subdivisions: A subdivision of G is planar IFF G planar.
If G planar, so is any subgraph
obviously
Thm: (Kurotowski) A graph G is not planar IFF it contains a subgraph isomorphic to a subdivision of K3,3 or K5
Check if we even prove this shit
Thm: Let G connected, if E(G) <= V(G) + 2, than G is planar.
Pf/ BWOC, suppos G is not planar. Let H be spanning tree, thus V(H) = V(G), and E(H) = V(H) -1
By Kura. it has subdiv. of K33 or K5.
Case 1: Subdiv. of K5 is in G, involving m vert and n edges.
Since K5 has 5 vert., 10 edges, n-m=5 (even if you subdivide, still holds).
Since max, m-1 edges can be in H (one less than number of vert. bc its a tree), we would need to add at least 6 edges to H to get G b/c edges of G is >=10 and you have >=4 edges in H.
=> E(G) >= E(H) + 6 = V(G) + 5 by applying above. Thus contradict original statement.
Case 2: If G has a subdivision of K33, with m vert, n edges.
n-m=3. By similar, must add at least 4 edges to H to produce G.
=> E(G) >= E(H) + 4 = V(G) + 3 Thus contradiction
Defn/ A coloring of a graph:
assigns “colors” to each vertex s.t. adjacent vertices have different colors
Def/ A chromatic number Chi(G) is:
A chromatic number Chi(G) is the min. size of a coloring set to color G
Thm: Chi(G) <= 1 + Del(G), where Del(G) is the max vert. degree.
Pf by induction on order. If p=1, 1<= 1+0 b/c Chi(G) = 1, Del(G) = 0.
Induct on p: Assume true for all order k-1 graphs G’, Chi(G’) <= 1+ Del(G’)
Let G be graph of order K, let v be any vertex. Let G’ = G-v, s.t. G’ satisfies the induct. hypoth.
Case 1: Del(G-v) = Del(G) AKA didn’t affect max degree.
So, add v anywhere and some color from G-v can be used because its only connected to V(G)-1 vert. at max.
Case 2: Del(G-v) < Del(G):
May introduce another color for v, obtaining a coloring for G w/ no more than 1 + Del(G) colors.