retagged by
18,883 views
38 votes
38 votes
Let $T$ be a tree with $10$ vertices. The sum of the degrees of all the vertices in $T$ is ________
retagged by

7 Answers

3 votes
3 votes
Use sum of degree theorem to:- for a graph,  total sum of degree is = 2 * total edges
so here the number of nodes=10
so edge (E)=10-1=9
so the sum of degree should be like
sum of degree <=2*E => sum of degree <= 18
0 votes
0 votes
Tree with n nodes cintain n-1 edges

Sum of degrees of all vertices = 2×no of edges =2×(10-1)=18
0 votes
0 votes

If anyone forgets to recall the property mentioned in every answer. 

Imagine a tree with a central node and remaining 9 nodes connected to it forming a star-like shape.The central node will have degree 9 and remaining nodes will have degree 1.

So it will give 9 + 9.1 = 18


The reason I suggested this particular example is because it is very easy and quick to draw this tree and calculate the sum of degrees and the reason why it will work is because of the fact they have mentioned just “a tree”. 

The tree I have suggested is also “a tree”. 

Answer:

Related questions

33 votes
33 votes
10 answers
1
Arjun asked Feb 14, 2017
16,790 views
Let $T$ be a binary search tree with $15$ nodes. The minimum and maximum possible heights of $T$ are:Note: The height of a tree with a single node is $0$.$4$ and $15$ res...
50 votes
50 votes
9 answers
2
go_editor asked Sep 28, 2014
16,535 views
Consider the following rooted tree with the vertex labeled $P$ as the root:The order in which the nodes are visited during an in-order traversal of the tree is$SQPTRWUV$$...
2 votes
2 votes
3 answers
3
Arjun asked Oct 10, 2016
622 views
Consider a complete graph on 10 vertices. Minimum no. of edge removals required to make a tree out of it will be ____