375 views
0 votes
0 votes
If a graph with 10 vertices having each vertex having degree >=5 find graph connected or disconnected

1 Answer

0 votes
0 votes
it should be disconnected.

I will take worst case case to prove it .

As Each vertex has degree $>=5$,let's assume it the minimum i.e $5$

By handshaking lemma,

$\sum \text{degree of vertices}=2 \times |\text{edges}|$

$5 \times 10= 2\times |\text{edges}|$

$|\text{edges}|=e$

$e=25$

But to be connected, minimum number of edges should be

$e>=\binom{n-1}{2}+1, \text{n=number of vertices}$

But $e=\binom{9}{2}+1=37 \nleqslant 25$

Hence disconnected

Related questions

0 votes
0 votes
1 answer
1
3 votes
3 votes
1 answer
2
set2018 asked Jul 8, 2017
904 views
Please suggest material for graph theory .
1 votes
1 votes
1 answer
4
OneZero asked Jan 13, 2019
378 views
what does the following declaration specify?int *(*q(char*))[ ]