SlideShare a Scribd company logo
1 of 56
Graph Algorithms
Graph Theory - History
Leonhard Euler's paper on
“Seven Bridges of
Königsberg” ,
published in 1736.
Famous problems
• “The traveling salesman problem”
– A traveling salesman is to visit a number of cities; how to plan
the trip so every city is visited once and just once and the whole
trip is as short as possible ?
Famous problems
In 1852 Francis Guthrie posed the “four color
problem” which asks if it is possible to color, using
only four colors, any map of countries in such a
way as to prevent two bordering countries from
having the same color.
This problem, which was only solved a century later
in 1976 by Kenneth Appel and Wolfgang Haken,
can be considered the birth of graph theory.
Examples
• Cost of wiring electronic components
• Shortest route between two cities.
• Shortest distance between all pairs of cities in
a road atlas.
• Matching / Resource Allocation
• Task scheduling
• Visibility / Coverage
Examples
• Flow of material
– liquid flowing through pipes
– current through electrical networks
– information through communication networks
– parts through an assembly line
• In Operating systems to model resource handling
(deadlock problems)
• In compilers for parsing and optimizing the code.
Basics
Graph Definitions and Notation
4
2
5
1
4
2
6
6
1 3
5
3
Definitions
• Vertex
– Basic Element
– Drawn as a node or a dot.
– Vertex set of G is usually denoted by V(G), or V
• Edge
– A set of two elements
– Drawn as a line connecting two vertices, called
end vertices, or endpoints.
– The edge set of G is usually denoted by E(G), or E.
Graph Definitions and Notation
• Let G=(V,E, g) be a graph and e be an edge of this
graph.
• Then there are vertices v and w such that
g(e)={v,w}; vertices v and w are end vertices of e
• When a vertex v is an end point of some edge e, we
say that e is an incident with the vertex v and v is
incident with the edge e.
• Two vertices v and w of G are said to be adjacent if
there exists an edge e ∈ E such that g(e)={v,w}.
Graph Definitions and Notation
• If e is an edge such that g(e) = {v,w}, where
v=w, then e is an edge from the vertex v to
itself. Such an edge is called a loop on the
vertex v or at the vertex v.
• If there is a loop on v, then v is adjacent to
itself.
Graph Definitions and Notation
v3
e1
v1 v2
v4
v6
e2
e3
e5 e4
e6 e7
v5
v7
Graph Definitions and Notation
• Let G=(V, E, g) be a graph.
• The incidence function g need not be one – to – one.
• Therefore, there may exist edges e1, e2, …., en-1, en,
n ≥ 2 such that g(e1)= g(e2) = …… = g(en) = {v, w}.
• Such edges are called parallel edges.
Example:
g(e1)=g(e2)={v1, v2}. So edges e1 and e2 are parallel. Similarly
edges e4, e6 and e7 are parallel.
e1
v1 v2
v4
v6
e2
e3
e5 e4
e6 e7
v5
v7
Graph Definitions and Notation
DEFINITION :: Isolated vertex
DEFINITION :: Degree of a vertex
• Let G be a graph and v be a vertex in G. We say that v is an
isolated vertex if it is not incident with any edge.
• Let G be a graph and v be a vertex of G. The degree of v,
written as deg(v) or d(v) is the number of edges incident
with v.
• We make the convention that each loop on a vertex v
contributes 2 to the degree of v.
Example:
v5
deg(v1)=2
deg (v2)= 1
deg (v3)=3
deg(v4)=2
deg(v5)=0
v1
v4 v3
e1
e3
e2
v2
Graph Definitions and Notation
DEFINITION:: k-regular graph
• Let G be graph and k be a nonnegative integer.
• G is called a k-regular graph if the degree of each
vertex of G is k
Example:
• An interesting k-regular graph is the Petersen 3-
regular graphs follows: v1
v2 v3
v10 v7
v6
v9 v8
v4
v5
Graph Definitions and Notation
DEFINITION :: Even (odd ) degree vertex
• Let G be a graph and v be a vertex in G.
• v is called an even (odd) vertex if the degree of
v is even (odd)
Example::
deg(v1)=2 Even
deg (v2)= 1 Odd
deg (v3)=3 Odd
deg(v4)=2 Even
v1
v4 v3
e1
e3
e2
v2
Graph Definitions and Notation
DEFINITION :: Degree Sequence
• Let n1, n2, n3, …, nk be the degrees of vertices of a graph G such
that n1 ≤ n2 ≤ n3 ≤ … ≤ nk.
• Then the finite sequence n1, n2, n3, …, nk is called the degree
sequence of the graph
• Every graph has a unique degree sequence.
• However, we can construct completely different graphs having
same degree sequence.
Example::
• The degree sequence of both of these graphs is 2, 3, 3, 4. But
the graphs are different.
v1 v2
v3
v4
v1
v4 v3
v2
Some Theorems
• Theorem 1: Euler: The sum of the degrees of
all vertices of a graph is twice the number of
edges.
• Corollary: The sum of the degrees of all the
vertices of a graph is an even integer.
• Corollary: In a graph the number of odd
degree vertices is even.
Graph Definitions and Notation
DEFINITION :: Simple graph
A graph is called a simple graph if G does not contain any parallel
edges and any loop
b
d
e
c
a
Graph Definitions and Notation
DEFINITION :: Complete Graph
A simple graph with n vertices in which there is an edge
between every pair of distinct vertices is called a complete
graph on n vertices. This is denoted as Kn.
Theorem: The number of edges in a complete graph with n
vertices is n(n-1)/2
b
d
e
a
c
K5
Example:
Graph Definitions and Notation
DEFINITION :: Subgraph
Let G= (V, E, g) be a graph. A triple G1=(V1, E1, g1) is called a
subgraph of G if V1 is nonempty subset of V, E1 is a subset of E,
and g1is the restriction of g to E1 such that for all e∈ E1, if g1(e)=
g(e) = {u, v}, then u,v∈V1.
v1
v2
v3
v4
v5
v6
e1
e3
e4
e6
e7
e5
e2
v3
v2
v1 v4
v5
e1 e4
e2
v2
v1 v4
v5
v6
e1
e6 e5
e2
v2
v1
v3
v4
e1
e3
e2
G G1 G2 G3
Sub-graph
• Few observations:
– Every graph is its own sub-graph
– A sub-graph of a sub-graph of G is a sub-graph of
G
– A single vertex in a graph G is a sub-graph of G
– A single edge in G, together with its vertices, is
also a sub-graph of G
Graph Definitions and Notation
DEFINITION :: Induced Subgraph
H is an induced subgraph of G on S, where S is
subset of V(G); then V(H) =S and E(H) is the
set of edges of G such that both the end points
belong to S.
v2
v3
v4
v5
v6
e1
e3
e4
e6
e7
e5
e2
v1 v4
v5
e1
e6 e5
e2
v1 v4
v5
e1
e6
e2
Subgraph S Induced Subgraph H
Graph Definitions and Notation
DEFINITION :: Bipartite Graph
A simple graph G is called a bipartite graph if the vertex set V of G
can be partitioned into Nonempty subsets V1 and V2 such that each
edge of G is incident with one vertex in V1 and one vertex in V2.
V1∪ V2 is called a bipartition of G.
A
B
C
D
X
Y
Z
25
Bipartite Graphs
Example I: Is C3 bipartite?
v1
v2 v3
No, because there is no way to partition
the vertices into two sets so that there are
no edges with both endpoints in the same
set.
Example II: Is C6 bipartite?
v5
v1
v2
v3 v4
v6
v1 v6
v2
v5
v3
v4
Yes, because we
can display C6
like this:
Graph Definitions and Notation
DEFINITION :: Complete Bipartite Graph
A bipartite graph G with bipartition V1∪V2 is called a complete
bipartite graph on m and n vertices if the subsets V1 and V2 contain
m and n vertices, respectively, such that there is an edge between
each pair of vertices v1 and v2, where v1∈V1and v2∈V2.
A complete bipartite graph on m and n vertices is denoted by Km,n
v1 v6
v2
v5
v3
v4
Isomorphism of Graphs
• Let G=(V,E) and G’={V’, E’} be graphs.
• G and G’ are said to be isomorphic if there
exist a pair of functions f:V  V’ and g: E
E’ that associates each element in V with
exactly one element in V’ and vice versa;
– g associates each element in E with exactly one
element in E’ and vice versa, and
– for each v∈ V, and each e ∈ E, if v is an end point
of the edge e, then f(v) is an endpoint of the edge
g(e).
Isomorphism of Graphs
• If two graphs are isomorphic then they must
have
– The same number of vertices
– The same number of edges
– The same degrees for corresponding vertices
– The same number odd connected components
– The same number of loops
– The same number of parallel edges.
Isomorphism of Graphs
Example:
• The vertices a, b, c, d, e in the graph (A) corresponds to v1, v2,
v3, v4 and v5 of the graph (B) respectively.
• The edges 1, 2, 3, 4, 5 and 6 correspond to e1, e2, e3, e4, e5 and
e6 respectively.
b
e
a
c
d
5
6
4 2
1
3
e1
e3
e2
e5
e6
e4
v1 v2
v3
v4
v5
A B
Except for the labels (i.e. names ) of their vertices and
edges, isomorphic graphs are the same graph.
Walks, Paths, and Cycles
DEFINITION :: Walk
• Let u and v be two vertices in a graph G.
• A walk from u to v, in G, is an alternating sequence of n+1 vertices and
n edges of G
(u= v1, e1, v2, e2, v3, e3, ….., vn-1, en-1, vn, en, vn+1=v)
beginning with vertex u, called the initial vertex, and ending with vertex
v, called the terminal vertex, in which vi and vi+1 are endpoints of edge ei for
i=1, 2, …., n.
Example:
Walks:
v1, b, v2, e, v3, h, v3, d, v4
v4, c, v2, f, v5 , g, v6
v1, b, v2, c, v4, a, v1
v1
v4 v3
v2 v5
v6
a
b
e
d
f
g
c
h
Walks, Paths, and Cycles
DEFINITION :: Directed walk
• Let u and v be two vertices in a directed graph G.
• A directed walk from u to v in G is an alternating sequence
of n+1 vertices and n arcs of G
(u= v1, e1, v2, e2, v3, e3, ….., vn-1, en-1, vn, en, vn+1=v)
beginning with vertex u and ending with vertex v in which
each edge ei, for i=1, 2, … , n, is an arc from vi to vi+1
Walks, Paths, and Cycles
DEFINITION :: Length of a walk (directed walk)
Open walk
Closed
walk
Walks, Paths, and Cycles
DEFINITION :: Trail and Path
Walks:
v1, b, v2, e, v3, h, v3, d, v4 ---- Not a path, trail
v4, c, v2, f, v5 , g, v6 ------ Path, trail
v1, b, v2, c, v4, a, v1 ----- Path (also closed path,
cycle), trail (circuit)
v1
v4 v3
v2 v5
v6
a
b
e
d
f
g
c
h
DEFINITION :: Cycle
DEFINITION :: Circuit
Walks, Paths, and Cycles
DEFINITION :: Trivial walk, path or trail
DEFINITION :: k-cycle
Operations on Graph
DEFINITION :: Complement of a simple graph
Operations on Graph
DEFINITION :: Difference operation
If the graphs G=(V, E) and G’=(V’, E’) are simple and V’⊆ V,
then the difference graph is G- G’ = (V, E’’) where E’’ contains
those edges from G that are not in G’ (simple graph).
Operations on Graph
Operations on Graph
Operations on Graph
DEFINITION ::Removal of a vertex
DEFINITION ::Removal of a edge
If e is an edge of the graph G = (V, E) then G – e is graph (V, E’) , where E’ is
obtained by removing e form E.
i.e. deletion of a vertex v means the deletion of the vertex v and deletion of
all the edges incident on v.
Connected graph
DEFINITION :: Connectedness
DEFINITION :: Connected Graph
For example, any two computers in a network can communicate if and
only if the graph of this network is connected.
Note: A graph consisting of only one vertex is always connected, because it does
not contain any pair of distinct vertices.
41
Connected graph
Example: Are the following graphs connected?
d
a
b
c
e
Yes.
d
a
b
c
e
No.
d
a
b
c
e
Yes.
d
a
b
c
e
f
No.
Some Theorem
Theorem:
A graph is disconnected if and only if its vertex set V can be partitioned into two
nonempty, disjoint subsets V1 and V2 such that there exists no edge in G whose one end
vertex is in subset V1 and the other in subset V2.
Proof:
Suppose that such a partition exists.
Consider two arbitrary vertices a and b of G, such that a ϵ V1 and b ϵ V2. No path can
exist between vertices a and b; otherwise there would be at least one edge whose one end
vertex would be in V1 and the other in V2. hence, if a partition exists, G is not connected.
Conversely, let G be a disconnected graph.
Consider a vertex a in G. Let V1 be the set of all vertices that are joined by paths to a.
Since G is disconnected V1 does not include all vertices of G. The remaining vertices will
form a (nonempty) set V2. So no vertex in V1 is joined to any in V2 by an edge. Hence the
partition.
Component
DEFINITION :: Component
Connected graph
Theorem: If a graph (connected or disconnected) has only two
odd vertices v1 and v2, then there is a path between v1 and v2.
Proof:
Case 1: G is connected. It is obvious that there is a path
between v1 and v2.
Case 2: G has two or more connected components. For each
of these connected components the theorem which states that
number of odd vertices in a graph is always even is applicable.
As there are only two odd vertices so, v1 and v2 must belong
to the same component. Otherwise the above stated theorem
would be violated. (Proved)
Vertex Cover
• A set S is a subset of V(G) is a vertex cover of G (of
the edges of G) if every edges of G is incident with a
vertex in S.
• A vertex cover of the minimum cardinality is called a
minimum vertex cover denoted as MVC(G)
Example:
Application: Art Gallery
Some more examples of vertex cover
wheel graph W8 K3,3 utility graph Petersen graph and Frucht graph
Vertex Cover
• What is the cardinality of MVC in the
complete graph Kn ?
• What about the complete bipartite graph Km,n?
• The cycle Cn, where n is even or odd?
• Kn it will be (n-1).
• Km,n it will be m<= n in two sets A and B, then m can be MVC
• Cn it will be n/2 (it it is even) and celing(n/2) if it is odd.
Vertex cover Algorithm
• APPROX-VERTEX_COVER (G: Graph)
• c ← { }
• E’ ← E[G]
• while E’ is not empty do
• Let (u, v) be an arbitrary edge of E’
• c ← c U {u, v}
• Remove from E’ every edge incident on either
u or v
• return c
Analysis
It is easy to see that the running time of this algorithm is O(V+E),
using adjacency list to represent E’.
Vertex cover : Example
APPROX-VERTEX-COVER algorithm returns a vertex-cover that is
atmost twice the size of an optimal cover.
Proof of the bound of the algorithm
• Theorem: APPROX-VERTEX-COVER is a
polynomial-time 2-approximate algorithm i.e.,
the algorithm has a ratio bound of 2.
• Goal: Since this a minimization problem, we
are interested in smallest possible c/c*.
Specifically we want to show c/c* ≤ 2 = p(n). In
other words, we want to show that APPROX-
VERTEX-COVER algorithm returns a vertex-
cover that is atmost twice the size of an optimal
cover.
Proof continued
• Proof: Let the set c and c* be the sets output by APPROX-VERTEX-COVER and
OPTIMAL-VERTEX-COVER respectively. Also, let A be the set of edges selected by line 4.
• Because, we have added both vertices, we get c = 2|A| but OPTIMAL-VERTEX-COVER
would have add one of two.
• => c/c* ≤ p(n) = 2.
• Formally, since no two edge in A are covered by the same vertex from c* (since, once an edge
is picked in line 4, all other edges that are incident on its endpoints are deleted from E` in line
6) and we the lower bound:
• |c*| ≥ A ---------------------------------- 1
• On the size of an OPTIMAL-VERTEX-COVER.
• In line 4, we picked both end points yielding an upper bound on the size of Vertex-Cover.
• |c| ≤ 2|A|
• Since, upper bound is an exact in this case, we have
• |c| = 2|A| ---------------------------------- 2
Take |c|/2 = |A| and put it in equation 1
|c*| ≥ |c|/2
|c*|/|c| ≥ 1/2
|c*|/|c| ≤ 2 = p(n)
• proving the theorem.
Independent Set
• Definition:
An independent set or stable set is a set of vertices in a
graph, no two of which are adjacent.
– That is, it is a set of l vertices such that for every two
vertices in l, there is no edge connecting the two.
– Equivalently, each edge in the graph has at most one
end point in l.
– The size of an independent set is the number of
vertices it contains.
• The cardinality of the biggest independent set in G is called
the independence number (or stability number) of G and is
denoted by α(G).
Example: Independent Set
What will be the values for α(Kn), α(Km,n) and α(Cn)??
α(Kn)=1, α(Km,n) =max (m,n) and α(Cn)=n/2 or (n-1)/2)
Independent Set
• An independent set is said to be
– maximal, if it is not a subset of any larger independent set;
– maximum, if there is no larger independent set in the graph.
I = {6, 9} is the maximal
independent set.
I= {1, 2, 5, 7, 8} is the
maximum independent set.
Independent Set Problem
• Given an undirected graph, find a maximum
cardinality independent set.
• The problem is NP-hard.
• IP formulation
• ∝ 𝐺 = 𝑚𝑎𝑥 𝑖=1
𝑛
𝑥𝑖
s.t.xi+ xj ≤ 1, ∀ (i , j) ∈ E,
xi∈ {0, 1}, i = 1, . . . , n.
Relation between MVC and β(G)
• If we remove a VC from G, then rest is an independent
set.
• So, if we remove MVC from G, the rest, i.e. V- MVC is
an independent set.
• So α(G) >= n - |MVC(G)|
– > |MVC(G)| >= n - α(G).
• Similarly, if we remove any independent set from G,
the rest is VC, and so, |MVC’(G)| <= n- α(G).
• Thus we get |MVC(G)| = n- α(G).
• If we denote |MVC(G)| as β(G) then β(G)+ α(G) = n.

More Related Content

Similar to Graph Algorithms Explained

Cs6702 graph theory and applications 2 marks questions and answers
Cs6702 graph theory and applications 2 marks questions and answersCs6702 graph theory and applications 2 marks questions and answers
Cs6702 graph theory and applications 2 marks questions and answersappasami
 
Graph in Discrete mathemaetics.pptx
Graph in Discrete mathemaetics.pptxGraph in Discrete mathemaetics.pptx
Graph in Discrete mathemaetics.pptxujjwalmatoliya
 
Graph ASS DBATU.pptx
Graph ASS DBATU.pptxGraph ASS DBATU.pptx
Graph ASS DBATU.pptxARVIND SARDAR
 
Cs6702 2marks rejinpaul
Cs6702 2marks rejinpaulCs6702 2marks rejinpaul
Cs6702 2marks rejinpaulstalinjothi
 
Elements of Graph Theory for IS.pptx
Elements of Graph Theory for IS.pptxElements of Graph Theory for IS.pptx
Elements of Graph Theory for IS.pptxmiki304759
 
graph.pptx
graph.pptxgraph.pptx
graph.pptxhijigaf
 
1. Graph and Graph Terminologiesimp.pptx
1. Graph and Graph Terminologiesimp.pptx1. Graph and Graph Terminologiesimp.pptx
1. Graph and Graph Terminologiesimp.pptxswapnilbs2728
 
Graphs in data structures
Graphs in data structuresGraphs in data structures
Graphs in data structuresSavit Chandra
 
Chapter 5 Graphs (1).ppt
Chapter 5 Graphs (1).pptChapter 5 Graphs (1).ppt
Chapter 5 Graphs (1).pptishan743441
 

Similar to Graph Algorithms Explained (20)

graph ASS (1).ppt
graph ASS (1).pptgraph ASS (1).ppt
graph ASS (1).ppt
 
Cs6702 graph theory and applications 2 marks questions and answers
Cs6702 graph theory and applications 2 marks questions and answersCs6702 graph theory and applications 2 marks questions and answers
Cs6702 graph theory and applications 2 marks questions and answers
 
Graph theory
Graph theoryGraph theory
Graph theory
 
Graph in Discrete mathemaetics.pptx
Graph in Discrete mathemaetics.pptxGraph in Discrete mathemaetics.pptx
Graph in Discrete mathemaetics.pptx
 
Graph ASS DBATU.pptx
Graph ASS DBATU.pptxGraph ASS DBATU.pptx
Graph ASS DBATU.pptx
 
Graph theory
Graph theoryGraph theory
Graph theory
 
Graph theory presentation
Graph theory presentationGraph theory presentation
Graph theory presentation
 
graph.ppt
graph.pptgraph.ppt
graph.ppt
 
Cs6702 2marks rejinpaul
Cs6702 2marks rejinpaulCs6702 2marks rejinpaul
Cs6702 2marks rejinpaul
 
Cs6702 GCC
Cs6702 GCCCs6702 GCC
Cs6702 GCC
 
Magtibay buk bind#2
Magtibay buk bind#2Magtibay buk bind#2
Magtibay buk bind#2
 
Elements of Graph Theory for IS.pptx
Elements of Graph Theory for IS.pptxElements of Graph Theory for IS.pptx
Elements of Graph Theory for IS.pptx
 
Chapter 1
Chapter   1Chapter   1
Chapter 1
 
graph theory
graph theorygraph theory
graph theory
 
graph.pptx
graph.pptxgraph.pptx
graph.pptx
 
Graph Theory
Graph TheoryGraph Theory
Graph Theory
 
graph.ppt
graph.pptgraph.ppt
graph.ppt
 
1. Graph and Graph Terminologiesimp.pptx
1. Graph and Graph Terminologiesimp.pptx1. Graph and Graph Terminologiesimp.pptx
1. Graph and Graph Terminologiesimp.pptx
 
Graphs in data structures
Graphs in data structuresGraphs in data structures
Graphs in data structures
 
Chapter 5 Graphs (1).ppt
Chapter 5 Graphs (1).pptChapter 5 Graphs (1).ppt
Chapter 5 Graphs (1).ppt
 

Recently uploaded

the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 

Recently uploaded (20)

the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 

Graph Algorithms Explained

  • 2. Graph Theory - History Leonhard Euler's paper on “Seven Bridges of Königsberg” , published in 1736.
  • 3. Famous problems • “The traveling salesman problem” – A traveling salesman is to visit a number of cities; how to plan the trip so every city is visited once and just once and the whole trip is as short as possible ?
  • 4. Famous problems In 1852 Francis Guthrie posed the “four color problem” which asks if it is possible to color, using only four colors, any map of countries in such a way as to prevent two bordering countries from having the same color. This problem, which was only solved a century later in 1976 by Kenneth Appel and Wolfgang Haken, can be considered the birth of graph theory.
  • 5. Examples • Cost of wiring electronic components • Shortest route between two cities. • Shortest distance between all pairs of cities in a road atlas. • Matching / Resource Allocation • Task scheduling • Visibility / Coverage
  • 6. Examples • Flow of material – liquid flowing through pipes – current through electrical networks – information through communication networks – parts through an assembly line • In Operating systems to model resource handling (deadlock problems) • In compilers for parsing and optimizing the code.
  • 8. Graph Definitions and Notation 4 2 5 1 4 2 6 6 1 3 5 3
  • 9. Definitions • Vertex – Basic Element – Drawn as a node or a dot. – Vertex set of G is usually denoted by V(G), or V • Edge – A set of two elements – Drawn as a line connecting two vertices, called end vertices, or endpoints. – The edge set of G is usually denoted by E(G), or E.
  • 10. Graph Definitions and Notation • Let G=(V,E, g) be a graph and e be an edge of this graph. • Then there are vertices v and w such that g(e)={v,w}; vertices v and w are end vertices of e • When a vertex v is an end point of some edge e, we say that e is an incident with the vertex v and v is incident with the edge e. • Two vertices v and w of G are said to be adjacent if there exists an edge e ∈ E such that g(e)={v,w}.
  • 11. Graph Definitions and Notation • If e is an edge such that g(e) = {v,w}, where v=w, then e is an edge from the vertex v to itself. Such an edge is called a loop on the vertex v or at the vertex v. • If there is a loop on v, then v is adjacent to itself.
  • 12. Graph Definitions and Notation v3 e1 v1 v2 v4 v6 e2 e3 e5 e4 e6 e7 v5 v7
  • 13. Graph Definitions and Notation • Let G=(V, E, g) be a graph. • The incidence function g need not be one – to – one. • Therefore, there may exist edges e1, e2, …., en-1, en, n ≥ 2 such that g(e1)= g(e2) = …… = g(en) = {v, w}. • Such edges are called parallel edges. Example: g(e1)=g(e2)={v1, v2}. So edges e1 and e2 are parallel. Similarly edges e4, e6 and e7 are parallel. e1 v1 v2 v4 v6 e2 e3 e5 e4 e6 e7 v5 v7
  • 14. Graph Definitions and Notation DEFINITION :: Isolated vertex DEFINITION :: Degree of a vertex • Let G be a graph and v be a vertex in G. We say that v is an isolated vertex if it is not incident with any edge. • Let G be a graph and v be a vertex of G. The degree of v, written as deg(v) or d(v) is the number of edges incident with v. • We make the convention that each loop on a vertex v contributes 2 to the degree of v. Example: v5 deg(v1)=2 deg (v2)= 1 deg (v3)=3 deg(v4)=2 deg(v5)=0 v1 v4 v3 e1 e3 e2 v2
  • 15. Graph Definitions and Notation DEFINITION:: k-regular graph • Let G be graph and k be a nonnegative integer. • G is called a k-regular graph if the degree of each vertex of G is k Example: • An interesting k-regular graph is the Petersen 3- regular graphs follows: v1 v2 v3 v10 v7 v6 v9 v8 v4 v5
  • 16. Graph Definitions and Notation DEFINITION :: Even (odd ) degree vertex • Let G be a graph and v be a vertex in G. • v is called an even (odd) vertex if the degree of v is even (odd) Example:: deg(v1)=2 Even deg (v2)= 1 Odd deg (v3)=3 Odd deg(v4)=2 Even v1 v4 v3 e1 e3 e2 v2
  • 17. Graph Definitions and Notation DEFINITION :: Degree Sequence • Let n1, n2, n3, …, nk be the degrees of vertices of a graph G such that n1 ≤ n2 ≤ n3 ≤ … ≤ nk. • Then the finite sequence n1, n2, n3, …, nk is called the degree sequence of the graph • Every graph has a unique degree sequence. • However, we can construct completely different graphs having same degree sequence. Example:: • The degree sequence of both of these graphs is 2, 3, 3, 4. But the graphs are different. v1 v2 v3 v4 v1 v4 v3 v2
  • 18. Some Theorems • Theorem 1: Euler: The sum of the degrees of all vertices of a graph is twice the number of edges. • Corollary: The sum of the degrees of all the vertices of a graph is an even integer. • Corollary: In a graph the number of odd degree vertices is even.
  • 19. Graph Definitions and Notation DEFINITION :: Simple graph A graph is called a simple graph if G does not contain any parallel edges and any loop b d e c a
  • 20. Graph Definitions and Notation DEFINITION :: Complete Graph A simple graph with n vertices in which there is an edge between every pair of distinct vertices is called a complete graph on n vertices. This is denoted as Kn. Theorem: The number of edges in a complete graph with n vertices is n(n-1)/2 b d e a c K5 Example:
  • 21. Graph Definitions and Notation DEFINITION :: Subgraph Let G= (V, E, g) be a graph. A triple G1=(V1, E1, g1) is called a subgraph of G if V1 is nonempty subset of V, E1 is a subset of E, and g1is the restriction of g to E1 such that for all e∈ E1, if g1(e)= g(e) = {u, v}, then u,v∈V1. v1 v2 v3 v4 v5 v6 e1 e3 e4 e6 e7 e5 e2 v3 v2 v1 v4 v5 e1 e4 e2 v2 v1 v4 v5 v6 e1 e6 e5 e2 v2 v1 v3 v4 e1 e3 e2 G G1 G2 G3
  • 22. Sub-graph • Few observations: – Every graph is its own sub-graph – A sub-graph of a sub-graph of G is a sub-graph of G – A single vertex in a graph G is a sub-graph of G – A single edge in G, together with its vertices, is also a sub-graph of G
  • 23. Graph Definitions and Notation DEFINITION :: Induced Subgraph H is an induced subgraph of G on S, where S is subset of V(G); then V(H) =S and E(H) is the set of edges of G such that both the end points belong to S. v2 v3 v4 v5 v6 e1 e3 e4 e6 e7 e5 e2 v1 v4 v5 e1 e6 e5 e2 v1 v4 v5 e1 e6 e2 Subgraph S Induced Subgraph H
  • 24. Graph Definitions and Notation DEFINITION :: Bipartite Graph A simple graph G is called a bipartite graph if the vertex set V of G can be partitioned into Nonempty subsets V1 and V2 such that each edge of G is incident with one vertex in V1 and one vertex in V2. V1∪ V2 is called a bipartition of G. A B C D X Y Z
  • 25. 25 Bipartite Graphs Example I: Is C3 bipartite? v1 v2 v3 No, because there is no way to partition the vertices into two sets so that there are no edges with both endpoints in the same set. Example II: Is C6 bipartite? v5 v1 v2 v3 v4 v6 v1 v6 v2 v5 v3 v4 Yes, because we can display C6 like this:
  • 26. Graph Definitions and Notation DEFINITION :: Complete Bipartite Graph A bipartite graph G with bipartition V1∪V2 is called a complete bipartite graph on m and n vertices if the subsets V1 and V2 contain m and n vertices, respectively, such that there is an edge between each pair of vertices v1 and v2, where v1∈V1and v2∈V2. A complete bipartite graph on m and n vertices is denoted by Km,n v1 v6 v2 v5 v3 v4
  • 27. Isomorphism of Graphs • Let G=(V,E) and G’={V’, E’} be graphs. • G and G’ are said to be isomorphic if there exist a pair of functions f:V  V’ and g: E E’ that associates each element in V with exactly one element in V’ and vice versa; – g associates each element in E with exactly one element in E’ and vice versa, and – for each v∈ V, and each e ∈ E, if v is an end point of the edge e, then f(v) is an endpoint of the edge g(e).
  • 28. Isomorphism of Graphs • If two graphs are isomorphic then they must have – The same number of vertices – The same number of edges – The same degrees for corresponding vertices – The same number odd connected components – The same number of loops – The same number of parallel edges.
  • 29. Isomorphism of Graphs Example: • The vertices a, b, c, d, e in the graph (A) corresponds to v1, v2, v3, v4 and v5 of the graph (B) respectively. • The edges 1, 2, 3, 4, 5 and 6 correspond to e1, e2, e3, e4, e5 and e6 respectively. b e a c d 5 6 4 2 1 3 e1 e3 e2 e5 e6 e4 v1 v2 v3 v4 v5 A B Except for the labels (i.e. names ) of their vertices and edges, isomorphic graphs are the same graph.
  • 30. Walks, Paths, and Cycles DEFINITION :: Walk • Let u and v be two vertices in a graph G. • A walk from u to v, in G, is an alternating sequence of n+1 vertices and n edges of G (u= v1, e1, v2, e2, v3, e3, ….., vn-1, en-1, vn, en, vn+1=v) beginning with vertex u, called the initial vertex, and ending with vertex v, called the terminal vertex, in which vi and vi+1 are endpoints of edge ei for i=1, 2, …., n. Example: Walks: v1, b, v2, e, v3, h, v3, d, v4 v4, c, v2, f, v5 , g, v6 v1, b, v2, c, v4, a, v1 v1 v4 v3 v2 v5 v6 a b e d f g c h
  • 31. Walks, Paths, and Cycles DEFINITION :: Directed walk • Let u and v be two vertices in a directed graph G. • A directed walk from u to v in G is an alternating sequence of n+1 vertices and n arcs of G (u= v1, e1, v2, e2, v3, e3, ….., vn-1, en-1, vn, en, vn+1=v) beginning with vertex u and ending with vertex v in which each edge ei, for i=1, 2, … , n, is an arc from vi to vi+1
  • 32. Walks, Paths, and Cycles DEFINITION :: Length of a walk (directed walk) Open walk Closed walk
  • 33. Walks, Paths, and Cycles DEFINITION :: Trail and Path Walks: v1, b, v2, e, v3, h, v3, d, v4 ---- Not a path, trail v4, c, v2, f, v5 , g, v6 ------ Path, trail v1, b, v2, c, v4, a, v1 ----- Path (also closed path, cycle), trail (circuit) v1 v4 v3 v2 v5 v6 a b e d f g c h DEFINITION :: Cycle DEFINITION :: Circuit
  • 34. Walks, Paths, and Cycles DEFINITION :: Trivial walk, path or trail DEFINITION :: k-cycle
  • 35. Operations on Graph DEFINITION :: Complement of a simple graph
  • 36. Operations on Graph DEFINITION :: Difference operation If the graphs G=(V, E) and G’=(V’, E’) are simple and V’⊆ V, then the difference graph is G- G’ = (V, E’’) where E’’ contains those edges from G that are not in G’ (simple graph).
  • 39. Operations on Graph DEFINITION ::Removal of a vertex DEFINITION ::Removal of a edge If e is an edge of the graph G = (V, E) then G – e is graph (V, E’) , where E’ is obtained by removing e form E. i.e. deletion of a vertex v means the deletion of the vertex v and deletion of all the edges incident on v.
  • 40. Connected graph DEFINITION :: Connectedness DEFINITION :: Connected Graph For example, any two computers in a network can communicate if and only if the graph of this network is connected. Note: A graph consisting of only one vertex is always connected, because it does not contain any pair of distinct vertices.
  • 41. 41 Connected graph Example: Are the following graphs connected? d a b c e Yes. d a b c e No. d a b c e Yes. d a b c e f No.
  • 42. Some Theorem Theorem: A graph is disconnected if and only if its vertex set V can be partitioned into two nonempty, disjoint subsets V1 and V2 such that there exists no edge in G whose one end vertex is in subset V1 and the other in subset V2. Proof: Suppose that such a partition exists. Consider two arbitrary vertices a and b of G, such that a ϵ V1 and b ϵ V2. No path can exist between vertices a and b; otherwise there would be at least one edge whose one end vertex would be in V1 and the other in V2. hence, if a partition exists, G is not connected. Conversely, let G be a disconnected graph. Consider a vertex a in G. Let V1 be the set of all vertices that are joined by paths to a. Since G is disconnected V1 does not include all vertices of G. The remaining vertices will form a (nonempty) set V2. So no vertex in V1 is joined to any in V2 by an edge. Hence the partition.
  • 44. Connected graph Theorem: If a graph (connected or disconnected) has only two odd vertices v1 and v2, then there is a path between v1 and v2. Proof: Case 1: G is connected. It is obvious that there is a path between v1 and v2. Case 2: G has two or more connected components. For each of these connected components the theorem which states that number of odd vertices in a graph is always even is applicable. As there are only two odd vertices so, v1 and v2 must belong to the same component. Otherwise the above stated theorem would be violated. (Proved)
  • 45. Vertex Cover • A set S is a subset of V(G) is a vertex cover of G (of the edges of G) if every edges of G is incident with a vertex in S. • A vertex cover of the minimum cardinality is called a minimum vertex cover denoted as MVC(G) Example: Application: Art Gallery
  • 46. Some more examples of vertex cover wheel graph W8 K3,3 utility graph Petersen graph and Frucht graph
  • 47. Vertex Cover • What is the cardinality of MVC in the complete graph Kn ? • What about the complete bipartite graph Km,n? • The cycle Cn, where n is even or odd? • Kn it will be (n-1). • Km,n it will be m<= n in two sets A and B, then m can be MVC • Cn it will be n/2 (it it is even) and celing(n/2) if it is odd.
  • 48. Vertex cover Algorithm • APPROX-VERTEX_COVER (G: Graph) • c ← { } • E’ ← E[G] • while E’ is not empty do • Let (u, v) be an arbitrary edge of E’ • c ← c U {u, v} • Remove from E’ every edge incident on either u or v • return c Analysis It is easy to see that the running time of this algorithm is O(V+E), using adjacency list to represent E’.
  • 49. Vertex cover : Example APPROX-VERTEX-COVER algorithm returns a vertex-cover that is atmost twice the size of an optimal cover.
  • 50. Proof of the bound of the algorithm • Theorem: APPROX-VERTEX-COVER is a polynomial-time 2-approximate algorithm i.e., the algorithm has a ratio bound of 2. • Goal: Since this a minimization problem, we are interested in smallest possible c/c*. Specifically we want to show c/c* ≤ 2 = p(n). In other words, we want to show that APPROX- VERTEX-COVER algorithm returns a vertex- cover that is atmost twice the size of an optimal cover.
  • 51. Proof continued • Proof: Let the set c and c* be the sets output by APPROX-VERTEX-COVER and OPTIMAL-VERTEX-COVER respectively. Also, let A be the set of edges selected by line 4. • Because, we have added both vertices, we get c = 2|A| but OPTIMAL-VERTEX-COVER would have add one of two. • => c/c* ≤ p(n) = 2. • Formally, since no two edge in A are covered by the same vertex from c* (since, once an edge is picked in line 4, all other edges that are incident on its endpoints are deleted from E` in line 6) and we the lower bound: • |c*| ≥ A ---------------------------------- 1 • On the size of an OPTIMAL-VERTEX-COVER. • In line 4, we picked both end points yielding an upper bound on the size of Vertex-Cover. • |c| ≤ 2|A| • Since, upper bound is an exact in this case, we have • |c| = 2|A| ---------------------------------- 2 Take |c|/2 = |A| and put it in equation 1 |c*| ≥ |c|/2 |c*|/|c| ≥ 1/2 |c*|/|c| ≤ 2 = p(n) • proving the theorem.
  • 52. Independent Set • Definition: An independent set or stable set is a set of vertices in a graph, no two of which are adjacent. – That is, it is a set of l vertices such that for every two vertices in l, there is no edge connecting the two. – Equivalently, each edge in the graph has at most one end point in l. – The size of an independent set is the number of vertices it contains. • The cardinality of the biggest independent set in G is called the independence number (or stability number) of G and is denoted by α(G).
  • 53. Example: Independent Set What will be the values for α(Kn), α(Km,n) and α(Cn)?? α(Kn)=1, α(Km,n) =max (m,n) and α(Cn)=n/2 or (n-1)/2)
  • 54. Independent Set • An independent set is said to be – maximal, if it is not a subset of any larger independent set; – maximum, if there is no larger independent set in the graph. I = {6, 9} is the maximal independent set. I= {1, 2, 5, 7, 8} is the maximum independent set.
  • 55. Independent Set Problem • Given an undirected graph, find a maximum cardinality independent set. • The problem is NP-hard. • IP formulation • ∝ 𝐺 = 𝑚𝑎𝑥 𝑖=1 𝑛 𝑥𝑖 s.t.xi+ xj ≤ 1, ∀ (i , j) ∈ E, xi∈ {0, 1}, i = 1, . . . , n.
  • 56. Relation between MVC and β(G) • If we remove a VC from G, then rest is an independent set. • So, if we remove MVC from G, the rest, i.e. V- MVC is an independent set. • So α(G) >= n - |MVC(G)| – > |MVC(G)| >= n - α(G). • Similarly, if we remove any independent set from G, the rest is VC, and so, |MVC’(G)| <= n- α(G). • Thus we get |MVC(G)| = n- α(G). • If we denote |MVC(G)| as β(G) then β(G)+ α(G) = n.