619 views

3 Answers

Best answer
5 votes
5 votes
A tree has N vertices and N - 1 edges .

For a complete graph of 10 vertices having 45 edges,remove 36 edges hence getting a tree.
selected by
2 votes
2 votes
for complete graph no of edges are nC2

for tree we need (n-1) edges

 therefore we need to remove nC2 -(n-1) edges
1 votes
1 votes

Complete graph. Vertices = 10. So, edges = 10(9)/2 = 45.

For a tree of n vertices, it MUST have:-

  1. n-1 edges.
  2. there's exactly one path between each pair of vertices.

So, a tree of 10 vertices has 9 edges.

45 - x = 9.

x = 36.

Answer:

Related questions

2 votes
2 votes
3 answers
1
Arjun asked Oct 10, 2016
1,156 views
A $2-3$ tree is a tree such thatall internal nodes have either 2 or 3 childrenall paths from root to the leaves have the same length.The maximum number of nodes of a 2-3 ...
0 votes
0 votes
3 answers
2
Arjun asked Oct 10, 2016
656 views
Consider a complete graph of 10 vertices. The minimum no. of edge removals required to make the graph disconnected is ______
0 votes
0 votes
2 answers
4
Arjun asked Oct 10, 2016
546 views
Consider the following declaration of a two dimensional array in C:char a[1000][40];Assuming that the main memory is byte addressable and that the array is stored startin...