Planar Graphs and Graph Coloring an Overview
Planar Graphs and Graph Coloring an Overview
Graph Coloring: An
Overview
This presentation delves into the fascinating world of planar graphs
and graph coloring. We begin by defining planar graphs and
exploring Euler's Formula and its corollaries. We examine
Kuratowski’s Theorem, providing tools for identifying non-planar
graphs. Moving on to graph coloring, we introduce the concept of
chromatic numbers and explore the Four and Five Colour
Theorems, before illustrating the process with solved problems,
offering a solid foundation for students and researchers in graph
theory.
by Ali
Planar Graphs: Definitions and Examples
Definition Examples
A planar graph is one that can be drawn on a plane The complete graph K4 is planar, easily drawn without
without edges crossing, save at endpoints. This crossings. However, K5, the complete graph with five
drawing is its planar embedding. Visualizing this vertices, isn't planar; no matter how you draw it,
provides an immediate grasp of graph planarity, crossings occur. Similarly, the complete bipartite graph
essential for advanced graph theory applications. K3,3 is also non-planar, illustrating a key constraint in
graph theory.
Homeomorphism
Homeomorphism in graphs means that one graph can be obtained
from the other by a sequence of edge subdivisions. This powerful
theorem provides a definitive test for planarity by checking for these
specific subgraphs.
Graph Coloring: Assigning Colors to Vertices
Example
Consider a graph where vertex a is connected to b, b
is connected to c, c is connected to d, and d is
connected to b. With the order a, b, c, d, the coloring
results in: a: 1, b: 2, c: 3, d: 1, using three colors.
Solved Problems: Applying Planarity and
Coloring Concepts
Problem 1: Planarity Test Problem 2: Chromatic Number
Problem 3: Max Edges in
Planar Graph
Determine if K6 is planar. Given V Find the chromatic number of C5,
= 6 and E = 15, check E ≤ 3V - 6. an odd cycle. Odd cycles require Calculate the maximum number of
The result, 15 ≤ 12, is false, three colors, thus χ(C5) = 3. edges in a planar graph with 12
indicating K6 is not planar. This Understanding cycle coloring is vertices. Using E ≤ 3V - 6, where
applies Euler's formula to assess crucial in network optimization. V = 12, yields E ≤ 30. Planar
graph planarity. graphs are limited in edge density,
which impacts algorithmic design.