1,028 views
0 votes
0 votes
ACE Workbook:

Q) Let G be a simple graph(connected) with minimum number of edges. If G has n vertices with degree-1,2 vertices of degree 2, 4 vertices of degree 3 and 3 vertices of degree-4, then value of n is ?  Can anyone give the answer and how to approach these problems. Thanks in advance.

2 Answers

2 votes
2 votes
in directed graph, d⁺(G)=d⁻(G)= |E(G)|.

2.2+4.3=3.4+n.1 ⇒ n=4
2 votes
2 votes

Here we can assume that graph is undirected because there is nothing mentioned about in-degree and out-degree of a vertex.

by using sum of degree rule(Handshaking Lemma) we can say that

sum of degree of all vertices in graph = 2*(number of edges in graph)

and  number of edges in a connected graph is must be atleast  (n-1)

(n*1) + (2*2) + (4*3)  + (3*4) = 2*(n+2+4+3-1)

on solving above equation

n=12

 

Related questions

0 votes
0 votes
2 answers
1
yuuchan asked Jul 22, 2023
532 views
If G is a complete bipartite graph with n vertices (n >= 2) and minimum number of edges, then matching number of G is ____1n-1⌊n/2⌋⌈n/2⌉
1 votes
1 votes
1 answer
2