466 views

1 Answer

Best answer
3 votes
3 votes

Cut vertices are those vertices whose removal disconnects the remaining graph.

Now when you have a connected graph of n vertices there are are two possibilities:

1. There are cycles involved

and

2. There are no cycles in the graph.

The worst case scenario for us to check is when there is no cycle involved, this means that the connectivity of entire graph is at the mercy of each vertex present.However In this case also the removal of any of the two end vertices will not disconnect the graph. example shown below.

Even if we remove A or E, the graph still remains connected. But if we try to remove any of B,C,D then the graph will surely get disconnected. So you can easily see that for this graph other than the two end vertices, every vertex is a cut vertex. Since this is an example of a minimally connected graph i.e, a tree hence it the maximum number of cut vertices that a graph can have.

therefore # of cut vertices in a graph are always <=n-2 where n is the number of edges.

selected by

Related questions

0 votes
0 votes
1 answer
1
Çșȇ ʛấẗẻ asked Jul 3, 2023
506 views
Prove that following graph does not have Hamiltonian cycle.
1 votes
1 votes
0 answers
2
0 votes
0 votes
1 answer
3
Abhijeet_Kumar asked Dec 22, 2017
628 views
1 votes
1 votes
1 answer
4
Abhijeet_Kumar asked Dec 22, 2017
310 views