edited by
1,005 views
0 votes
0 votes

If a graph (G) has no loops or parallel edges, and if the number of vertices (n) the graph is $n \geq 3$, then graph G is Hamiltonian if

  1. $\text{deg(v)} \geq \frac{n}{3} \text{ for each vertex v}$
  2. $\text{deg(v)} + \text{deg(w)} \geq n \text{ whenever v and w are not connected by an edge}$
  3. $E(G) \geq \frac{1}{3} (n-1)(n-2)+2$

Choose the correct answer from the code given below:

  1. (i) and (iii) only
  2. (ii) only
  3. (ii) and (iii) only
  4. (iii) only
edited by

1 Answer

0 votes
0 votes

$deg(v)\geq \frac{n}{2}$, then the graph is Hamiltonian.This is Dirac's Theorem

$1)\,deg(v)\geq \frac{n}{3}$.So, this is false.

 

$deg(v)+deg(w)\geq n$, This is Ore's Theorem

So, $(2)$ is true

 

The maximum number of edges for a graph to be non-hamiltonian is  ${}^{n-1}C_2+1$. For proof refer this

The $(3)$ option says, $E(G)\geq \frac{1}{3}(n-1)(n-2)+2$

For $n=4$, 

${}^{4-1}C_2+1=3+1=4$. So, if the number of edges is $\leq4$, then the graph can be non-hamiltonian

$E(G)\geq \frac{1}{3}(4-1)(4-2)+2\geq 4$, this says for $E(G)\geq4$ the graph should be hamiltonian, but for $E(G)=4$ the graph can be non-hamiltonian.

So, $(3)$ should be false.

So, $(B)$ should be the answer,

Correct me if I'm wrong.

Related questions

1 votes
1 votes
0 answers
3
0 votes
0 votes
2 answers
4
Arjun asked Jan 2, 2019
4,385 views
Consider the graph shown below:Use Kruskal’s algorithm to find the minimum spanning tree of the graph. The weight of this minimum spanning tree is$17$$14$$16$$13$