Graph Colouring Problem and Its Solution
Graph Colouring Problem and Its Solution
Graph Colouring Problem and Its Solution
- PRESENTED BY SUBHAM
MUKHERJEE
Introduction
A graph consists of a fi nite set of verti ces or nodes and a set of edges connecti ng these
verti ces. Two verti ces are said to be adjacent if they are connected to each other by the same
edge.
Graph colouring is the procedure of assignment of colours to each vertex of a graph G such
that no adjacent verti ces get same colour.
Goal: Find out if the graph can be colored Goal: fi nd out number of colors
using the provided set of colors. required to color the graph .
m-colourability decision problem
Remember that:-
No two adjacency vertex has same colour.
We choose new colour until the colour end.
We solve the problem using Backtracking method. It is a
variant of Dynamic programming [intelligent Brute force SOLUTION:-
technique] . The n- touple solution is={1,2,3,4,2}
m-colourability optimization problem
Remember that:-
No two adjacency vertex has same colour.
We solve the problem using Backtracking method. It is a
SOLUTION:-
variant of Dynamic programming[intelligent Brute force
technique] The n-touple Solution is={1,2,3,4,2}. Value of m=4.
Applications of Graph Colouring