Planar Graphs and Graph Coloring An Overview
Planar Graphs and Graph Coloring An Overview
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 Kuratowski9s 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 without The complete graph K4 is planar, easily drawn without
edges crossing, save at endpoints. This drawing is its planar crossings. However, K5, the complete graph with five
embedding. Visualizing this provides an immediate grasp of vertices, isn't planar; no matter how you draw it, crossings
graph planarity, essential for advanced graph theory occur. Similarly, the complete bipartite graph K3,3 is also
applications. 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
2 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 = 6 Find the chromatic number of C5, an
and E = 15, check E f 3V - 6. The result, odd cycle. Odd cycles require three Calculate the maximum number of
15 f 12, is false, indicating K6 is not colors, thus Ç(C5) = 3. Understanding edges in a planar graph with 12
planar. This applies Euler's formula to cycle coloring is crucial in network vertices. Using E f 3V - 6, where V = 12,
assess graph planarity. optimization. yields E f 30. Planar graphs are limited
in edge density, which impacts
algorithmic design.