I have this question:
For a +’ve integer z, the colour z of the graph is the assignment of one of z’s possible colours to each individual vertex of said graph. So that no 2 adjacent vertex receive the same colouring. Every vertex should be assigned one colour only and not necessary to use all the colors. I.e. colours not assigned to any vertex.
Prove, if each vertice of a graph A has degree at most z, then A has a (z + 1) - coloring.
How would you solve this?
You can simply assign colors to the vertices one by one in an arbitrary order. Under the assumptions given, there will always be at least one color available for each vertex when you're considering it.
If you're explicitly required to use induction instead of just explain an algorithm to $(z+1)$-color the graph, then you could prove by induction of $n$ that
Then apply this lemma with $n=|V|$.