edited by
4,329 views
2 votes
2 votes
An undirected graph is Eulerian if and only if all vertices of G are of the sum of the degrees of all nodes is

A.     Same degree
B.    ODD degree
C.    Need not be ODD
D.    is twice number of edges
edited by

2 Answers

Best answer
1 votes
1 votes

Eulerian Cycle
An undirected graph has Eulerian cycle if following two conditions are true.
….a) All vertices with non-zero degree are connected. We don’t care about vertices with zero degree because they don’t belong to Eulerian Cycle or Path (we only consider all edges).
….b) All vertices have even degree.

Eulerian Path
An undirected graph has Eulerian Path if following two conditions are true.
….a) Same as condition (a) for Eulerian Cycle
….b) If zero or two vertices have odd degree and all other vertices have even degree. Note that only one vertex with odd degree is not possible in an undirected graph (sum of all degrees is always even in an undirected graph)

Note that a graph with no edges is considered Eulerian because there are no edges to traverse.

How does this work?
In Eulerian path, each time we visit a vertex v, we walk through two unvisited edges with one end point as v. Therefore, all middle vertices in Eulerian Path must have even degree. For Eulerian Cycle, any vertex can be middle vertex, therefore all vertices must have even degree.

 

http://www.geeksforgeeks.org/eulerian-path-and-circuit/

selected by
0 votes
0 votes
An undirected graph has Eulerian cycle if following two conditions are true

a) All vertices with non-zero degree are connected.

(b) All vertices have even degree

Related questions

1 votes
1 votes
2 answers
1
shivani2010 asked Jun 12, 2016
4,459 views
An undirected graph G has n vertices and n-1 edges then G isA. CyclicB. Addition of edge will make it cyclicC. EulerianD. Is a Tree
0 votes
0 votes
2 answers
3
yuuchan asked Jul 22, 2023
534 views
If G is a complete bipartite graph with n vertices (n >= 2) and minimum number of edges, then matching number of G is ____1n-1⌊n/2⌋⌈n/2⌉
2 votes
2 votes
2 answers
4