edited by
923 views

3 Answers

9 votes
9 votes
Matching means that no 2 edges are adjacent simply a vertex with degree 1

if we have a vertex with degree 0 we say not matched.

In the above graph if we start with G we have 2 edges for G In matching we consider 1 edge since if both are considered we get the degree of G as 2 so if we consider G-A edge then node 2 is alone and has degree 0 it makes graph to be not matched so we consider G-2 edge, A-0 edge  T has edges with 0 and 1 since A-0 edge is present if we consider 0 then degree of 0 is 2 so we don't consider

we have T-1 edge then we are left with edge E-6

Totally we get (G-2),(A-0),(T-1),(E-6) so matching number is 4
edited by
0 votes
0 votes

Matching number means the  maximum independent set of edges i.e. maximum number of edges taken such that no two edges have same common vertex. Hence answer is 4

Answer:

Related questions

0 votes
0 votes
1 answer
1
atul_21 asked Dec 21, 2017
540 views
I am not convinced by this. Please explain or please tell me the source from where I can clear this out.
7 votes
7 votes
2 answers
3
shikharV asked Jan 18, 2016
2,266 views
Given explanation:In the above explanation, it is written that matching number is 4 but I am getting matching number as 3 for this graph(choosing edges 1-2, 3-4 and 6-7)....
16 votes
16 votes
3 answers
4
dhingrak asked Dec 2, 2014
10,765 views
Is there a way to find no of perfect matchings in a complete graph Kn where n could be either even or odd..?