Homework2_Graph
Homework2_Graph
Homework - I
(1)
(a)
Statement: If G is Eulerian, then L(G) is Eulerian.
Answer: TRUE
(b)
Statement: If L(G) is Eulerian, then G is Eulerian.
Answer: FALSE
1
– Each vertex in L(G) corresponds to an edge in G.
– Two vertices in L(G) are adjacent if the corresponding edges in G
share a common vertex.
• Even if L(G) is Eulerian (i.e., every vertex in L(G) has even degree and
L(G) is connected), this does not imply that all vertices in G have even
degree.
• Counterexample:
(2)
(a)
Claim: If G is Eulerian, then G contains no cut-edges.
2
• This contradicts the requirement that the circuit is closed.
• Hence, our assumption is false. Therefore, an Eulerian graph cannot have
a cut-edge.
(b)
• But G has 15 edges. So there are 5 more edges in addition to the Hamil-
tonian cycle.
• However, adding any of these 5 extra edges to the cycle will necessarily
create a cycle of length 3 or 4.
(3)
3
(4)
(a)
– A graph G with 10 vertices can have at most:
10
= 45 edges
2
4
– The optimal distribution is: 2, 2, 3, 3. That is:
E = (2·2)+(2·3)+(2·3)+(2·3)+(2·3)+(3·3) = 4+6+6+6+6+9 = 37
5
(b)
(5)
6
(a)
– Suppose both G and its complement G are planar.
– We know that for a connected planar graph on at least 3 vertices:
|E(G)| ≤ 3n − 6
|E(G)| ≤ 3n − 6
– So:
n(n − 1)
|E(G)| + |E(G)| =
2
– Combining the two inequalities:
– Hence:
n(n − 1)
≤ 6n − 12
2
– Multiply both sides by 2:
n(n − 1) ≤ 12n − 24
n2 − 13n + 24 ≤ 0
7
(b)
– Let n be the number of vertices and m the number of edges in G
with n < 12.
– Suppose δ(G) ≥ 5.
– Then, by the handshaking lemma:
2m ≥ 5n
– Combining:
5n ≤ 2m ≤ 6n − 12
– Solving:
5n ≤ 6n − 12 ⇒ n ≥ 12
– This contradicts the assumption n < 12. Therefore, our assumption
is false, and we conclude:
δ(G) ≤ 4
(c)
– Base Case: For n ≤ 4, all vertices can be assigned different colors.
So the claim holds.
– Inductive Hypothesis: Assume that all connected triangle-free
planar graphs with n vertices, where 5 ≤ n ≤ k, are 4-colorable.
– Inductive Step: Consider a connected triangle-free planar graph
with k + 1 vertices.
– Since the graph is triangle-free and planar, it contains a vertex u of
degree at most 3.
– Remove vertex u and its incident edges. The resulting graph is either
connected or disconnected, and has at most k vertices.
– By the inductive hypothesis, each component (or the single connected
graph) is 4-colorable.
– Add u back to the graph. Since u has at most 3 neighbors, there
exists a fourth color not used by its neighbors. Assign this color to
u.
– Therefore, the entire graph with k + 1 vertices is also 4-colorable.
– Conclusion: By induction, any triangle-free planar graph is 4-colorable.
(6)
8
(a)
– Kuratowski’s Theorem states: A graph G is non-planar if and only if
it contains a subgraph that is a subdivision of K5 or K3,3 .
– We can obtain the Petersen graph from a subdivision of K3,3 as follows:
(b)
– Euler’s formula states: If G is a connected planar graph with n vertices,
m edges, and f faces, then:
n−m+f =2
9
– The Petersen graph contains cycles of length at least 5. Hence, each
face is bounded by at least 5 edges.
– Therefore, the total sum of face degrees satisfies:
2·m≥5·f
2 · 15 = 30 < 5 · 7 = 35
10