• S
    SwaseekhGATE Preparation
General
  • Dashboard
  • Syllabus
  • Questions
  • Aptitude
  • Mock Tests
  • TCS NQT 2026
Account
  • Pricing
  • Contact
  1. GATE CS
  2. PYQs
  3. Discrete Mathematics

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

  1. 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.
  2. 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.