1,106 views
0 votes
0 votes
Suppose a connected graph has 15 labeled nodes, given that it has an eularian circuit, what is the minimum number of distinct circuits which it must have? [Note : the circuit a->b->c->a is not same as b->c->a->b]

2 Answers

1 votes
1 votes

MINIMUM NUMBER OF DISTINCT CIRCUITS ,CONSIDER MINIMUM NO OF EDGES IN THE GRAPH.

if a graph contains four vertices{a,b,c,d}.connected edges are a-b,b-c,c-d,d-a.and it contains eularian circuit.

minimum no of circuits are a-b-c-d-a,,b-c-d-a-b,,c-d-a-b-c,,d-a-b-c-d.

for 'n' no of vertices graph contains minimum of 'n' circuits.

1 votes
1 votes

We can call the Eulerian circuit that exists n1, n2, ….., nk. Then, k>=15

because every node must be in the Eulerian circuit. Furthermore, we can create Eulerian circuits at will simply by taking ni, ni+1, ….,nk, n1, n2, …, ni-1, ni  or ni, ni-1, ….,n1, nk, …, ni+1, ni,alternatively , which creates a guaranteed 30 Eulerian paths (lower bound for the minimum). We can show that this is an achievable minimum by considering the graph that consists of 15 nodes on a circle with adjacent nodes having an edge in between them. 

 

Since this graph only has 30 Eulerian circuits, this is indeed the fewest we can do.

 

Related questions

0 votes
0 votes
1 answer
2
R S BAGDA asked Apr 27, 2022
294 views
What is the number of faces in a connected plane graph having 23 vertices, 30 edges?
2 votes
2 votes
1 answer
3
dd asked May 19, 2017
1,314 views
For a regular graph how much large the value of degree (for each vertices) should be such that the graph is $2$ - connected. (vertex wise).I did in this way :$\begin{alig...
0 votes
0 votes
1 answer
4
Crime Master Gogo asked May 3, 2017
3,000 views
Is every k connected graph is k-1 connected or the reverse? I always get confused. Can someone explain with the help of an example.