edited by
1,762 views
1 votes
1 votes
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.
edited by

1 Answer

Best answer
3 votes
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

Related questions

2 votes
2 votes
1 answer
1
Anusha Motamarri asked Jan 6, 2017
450 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?
1 votes
1 votes
1 answer
2
rajsh3kar asked Jan 5, 2015
618 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
2 votes
2 votes
2 answers
4
shivani2010 asked Jun 12, 2016
4,327 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. ...