FREE SHIPPING ON ORDERS $75+

×

Graph Theory By Narsingh Deo Exercise Solution |verified|

Finding a comprehensive, official solution manual for Narsingh Deo’s Graph Theory

is difficult, as solutions are primarily available through community-driven platforms, academic repositories, and document-sharing sites like

. These resources typically offer partial, user-uploaded solutions, which are most effectively utilized by focusing on visualization, mastering algorithmic terminology, and using specific institutional question banks, according to educational materials. Graph Theory Narsingh Deo Solution

This is an excellent request, as Narsingh Deo’s "Graph Theory with Applications to Engineering and Computer Science" is a classic but dense text. Many students struggle with its exercises because they require proof construction and visualization, not just calculation.

A useful feature for a hypothetical "Graph Theory By Narsingh Deo Exercise Solution" platform or tool would be: Graph Theory By Narsingh Deo Exercise Solution


1. Master the Chapter’s Definitions and Theorems

Deo often introduces a theorem, then asks you to prove a corollary in the exercises. Read the section carefully—the proof technique is usually hinted at nearby.

Exercise 1.1: Handshaking Lemma

Problem: Show that the sum of the degrees of all vertices in a finite undirected graph is twice the number of edges.

Solution: Proof: Let $G = (V, E)$ be a graph with $n$ vertices and $e$ edges. Every edge in a graph connects two vertices (or a vertex to itself in a loop). Therefore, every edge contributes 2 to the total sum of degrees.

  1. If edge $e_i$ connects distinct vertices $u$ and $v$, it contributes 1 to $deg(u)$ and 1 to $deg(v)$. Total contribution = 2.
  2. If edge $e_i$ is a loop at vertex $w$, it contributes 2 to $deg(w)$. Total contribution = 2.

Therefore: $$ \sum_i=1^n deg(v_i) = 2 \times |E| $$ If edge $e_i$ connects distinct vertices $u$ and


How to Create Your Own 'Master Solution Key'

Because official resources are scarce, consider building your own annotated solution set. Here is a semester-long strategy:

  1. Week 1-2: Solve problems 1.1 to 1.15 (Fundamentals). Compare your answers to MIT OCW’s discrete math assignments.
  2. Week 3-4: Tackle spanning trees. Use Kruskal’s algorithm manually on Deo’s complex graphs.
  3. Week 5-6: Planarity and dual graphs. Use online planar graph testers (e.g., planarity.net) to check Kuratowski subgraphs.
  4. Final: Compile your LaTeX document. By the end of the course, you will have written the unofficial solution guide yourself—a powerful study tool.

How to Approach Deo’s Exercises Effectively

Before searching for pre-made solutions, try this systematic approach:

Chapter 4: Cut-Sets and Cut-Vertices

Focus: Disconnecting graphs and finding connectivity properties.

Core Concept: A cut-set is a set of edges whose removal disconnects the graph. A cut-vertex is a single vertex whose removal increases the number of connected components. Chapter 3: Graph Isomorphism 3.1

Sample Problem: Question: Find the cut-vertices in a graph $G$. Solution Approach:

  1. Systematically remove one vertex at a time (and all edges incident to it).
  2. Check the connectivity of the remaining subgraph using Depth First Search (DFS) or Breadth First Search (BFS).
  3. If the remaining graph is disconnected, that vertex is a cut-vertex.

Chapter 3: Graph Isomorphism

3.1

4. Use the Back of the Book

Deo’s book includes answers to selected odd-numbered problems (usually the computational ones, not proofs). Check those first to validate your method.

Graph Theory By Narsingh Deo Exercise Solution Back
to top