in Graph Theory edited by
1,801 views
1 vote
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.
in Graph Theory edited by
1.8k views

13 Comments

can we consider #edges on our own? as its only implemented on edges. there is no role of vertex as it can be traversed any times.
.
shall the graph can  be a circuit?
.
can u plz be a bit brief?
0
0
graph with 6 edges is eulerian and connected. Minimum number of edges for connected graph = $5$

Edges in complete graph = $15$

How many graphs containing edges between 5 and 15 are Eulerian?
0
0
that i got it will be in that range but i think than it will be much of permutations and combination and will be more time consuming . but wait i must try one.
0
0
answer is just 8.
0
0
and vertices are unlabelled
0
0
edited by
see first thing is that a graph is eulerian if it starts from a vertex and reaches to same vertex after travelling every edge exactly once.

so this means it must have atleast 6 edges.
and formula for #edges is  =(n(n-1)/2 = 15 atmost.

so u need to consider only 10 cases where u can start and end at same vertes.
0
0
check formula for atmost edges in a simple graph again.
0
0
so sorry bro :/ yes u are right
0
0

@arvin, atleast 5 right?

0
0
atleast 5 for connected and atleast 6 for eulerian
0
0
then atmost is 14, how 15?
0
0
@shaikh see here we are talking about #edges to be connected and eulerian(graph) so minimum is 6 it cannot be 5 because u cannot reach back to starting node with 5 vertices as it will be a tree. (condition for eulerian graph)

atmost 15 because a complete graph will have 15 edges.

.

@mk utkarsh see the solution brother i have to really recall everything .
0
0
yes you are correct..
1
1

1 Answer

3 votes
3 votes
Best answer

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
by

4 Comments

@srestha mam even degree disconnected graphs cannot be eulerian..
0
0
1
1
my mistake, updated !
1
1

Related questions

Quick search syntax
tags tag:apple
author user:martin
title title:apple
content content:apple
exclude -tag:apple
force match +apple
views views:100
score score:10
answers answers:2
is accepted isaccepted:true
is closed isclosed:true