closed by
1,033 views

2 Answers

Best answer
2 votes
2 votes

Answer : Yes 

Disclaimer  : Before you read my explanations , I found some resources out on internet which have different definitions for what a Eulerian Circuit and Eulerian Path is… like this and this… I won’t argue the reliability of those sources. The following answer is coherent with Definitions present on wikipedia. 

Eulerian path is a trail in graph that visits every edge exactly once.

Eulerian Circuit is an Eulerian Path which starts and ends on the same vertex.

$\therefore$ Every Eulerian Circuit is also an Eulerian path. So any graph that has Eulerian Circuit has Eulerian Paths.

The converse may not be True , means Even if a graph has an Eulerian Path , Eulerian Circuit is not guaranteed to exist.

Furthermore following points are true irrespective of source of information :

  1. Connected graph with every vertex with even degree is both necessary and sufficient condition for Eulerian Circuit.
  1. Connected graph with exactly 2 vertices with odd degree have Eulerian Path but not an Eulerian Circuit.
  1. Anything Else neither have Eulerian Path nor Eulerian Circuit.

Example :

  1.  

In above graph the trail $V_1E_1V_2E_2V_3E_3V_4E_4V_5E_5V_1$ is both an Eulerian Path as well as Eulerian Circuit. As it visits all edges and starts and ends on same vertex .

Now if any one of the $5$ edge was absent like in example below :

  1.  

In above graph vertex $V_1$ and $V_5$ are only two vertices with odd degree so  the trail $V_1E_1V_2E_2V_3E_3V_4E_4V_5$ is an Eulerian Path and there is no Eulerian Circuit.

In such graphs the Eulerian Path starts on one of the odd degree vertex and ends on the other odd degree vertex.

selected by
0 votes
0 votes
Euler Path. Exactly two odd degree vertices must be present.

 

Euler Circuit. All vertices must be even degree.

 

Hence these are contradictory. And hence the Euler circuit and Euler path cannot exist together.

 

Sidenote: this is not true in hamiltonian world. Hamiltonian cycle -> Hamiltonian path.

Related questions

0 votes
0 votes
1 answer
1
Anand67222 asked Oct 14, 2023
327 views
How many simple directed (unweighted) graphs on the set of vertices {v0,v1,…v5} are there that have at most one edge between any pair of vertices? (That is, for two ver...
1 votes
1 votes
1 answer
2
LRU asked Apr 14, 2023
330 views
Consider a connected undirected graph G with n vertices, where n 4. Suppose that G has the property that every vertex has a degree of at least n/2, i.e., deg(v) ≥ n/2 ...
0 votes
0 votes
1 answer
3
farhan777 asked Apr 14
36 views
how to check the validity of an a argument using laws of logics
0 votes
0 votes
0 answers
4