edited by
3,762 views
1 1 vote
Find the number of connected Eulerian graphs with 6 unlabelled vertices.

Draw each of them.

Note: I'm looking for a fast procedure don't comment just the numerical answer.

1 Answer

Best answer
3 3 votes

for a graph to be an Eulerian

​​​​​​​1) it must start and end at same vertex with each edge covered exactly  once and 

2) the degree of each node must be of even degree.

----------------------------------------------------------------------------------------------- 

for a graph with #vertex= 6

possible degree values(to satisfy if its euler or not even degree sequences)=

{2,2,2,2,2,2} , {4,2,2,2,2,2}, {4,4,2,2,2,2} , { 4,4,4,2,2,2} , { 4,4,4,4,2,2} , {4,4,4,4,4,4}  #sequences =7 out of which only 3rd sequence {4,4,2,2,2,2} will have 2 different graphs.

#total =8

----------------------------------------------------------------------------------------------

you can use Havel hakimi algorithm to check the validity of the degree sequence... i found each valid.

----------------------------------------------------------------------------------------------

i tried each possible sequence but every graph i went for was ISOMORPHIC to the down mentioned 8 graphs. 

----------------------------------------------------------------------------------------------

selected by
Position:
Show:

Related questions

2 2 votes
1 1 answer
829
829 views
Anusha Motamarri asked Jan 6, 2017
829 views
if a graph contains 2 components,1st component contains only one vertex and 2nd component is a cycle with 4 vertices. is this graph Eulerian?it should be Eulerian ryt?
0 0 votes
0 0 answers
1.2k
1.2k views
Anand. asked Dec 31, 2016
1,189 views
For this proof ,proving$\Rightarrow$ If Graph $G$ is eulerian then degree of each vertex is even with atmost one trivial component.As $G$ is Eulerian ,it means it must n...
2 2 votes
2 answers 2 answers
5.0k
5.0k views
shivani2010 asked Jun 12, 2016
5,016 views
An undirected graph is Eulerian if and only if all vertices of G are of the sum of the degrees of all nodes isA. Same degreeB. ODD degreeC. Need not be ODDD. ...
1 1 vote
1 answers 1 answer
983
983 views
rajsh3kar asked Jan 5, 2015
983 views
Number of distinct graphs with p vertices and q edges ( p not equal to q) is always equal toa) pb) qc)min(p,q)d)max (p,q)e) none of this