G is a simple undirected graph. Some vertices of G are of odd degree. Add a node v to G and make it adjacent to each odd degree vertex of G. The resultant graph is sure to be
A. regular
B. complete
C. Hamiltonian
D. Euler
GATE 2008 · Discrete Mathematics · Graph Connectivity · medium
Answer: Euler
Count odd-degree vertices using handshaking lemma: Let G have k odd-degree vertices. By the handshaking lemma (sum of degrees = 2|E|), k must be even. Adding v with k edges gives deg(v) = k = even.
Verify all degrees even and conclude Eulerian: In the augmented graph: (a) each odd-degree vertex of G gains 1 edge to v, degree becomes odd+1 = even; (b) each even-degree vertex unchanged = even; (c) v has degree k = even. All vertices have even degree. The graph is Eulerian (option D). Options A (regular), B (complete), C (Hamiltonian) are not guaranteed.