0% found this document useful (0 votes)
38 views15 pages

Chapter 4

Notes graph theory chapter 4

Uploaded by

Nur Izzatul Anis
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
38 views15 pages

Chapter 4

Notes graph theory chapter 4

Uploaded by

Nur Izzatul Anis
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 15

CHAPTER 4 : CONNECTIVITY

Vertex cut and connectivity

A separating set or a vertex cut of a graph G = (V, E) is a set S  V such that G – S has more
than one component.

The connectivity of G, (G), is the minimum size of a vertex cut S or G – S has one vertex.

A graph G is k-connected if its connectivity is at least k (k  (G)).


A vertex cut with one element is called a cut-vertex.
Examples
a b
Vertex cut of G1 : {a, c}

(G1) = 2
G1 is 2-connected and 1-connected.
d c
G1

Vertex cuts of G2 : {a, c, d}, {a, b, d}, {c, b, d}, {b, e, f}, {b,
d, e}, {b, d, f}, {a, b}, {b, c}, {d, e}, {d, f},
e
a {b, d}, {b}, {d}
b d
(G2) = 1

f G2 is 1-connected.
c
G2 G2 has cut-vertices {b} and {d}.

No matter how many vertices we remove from the complete graph, we never disconnect it, until
one vertex left, thus (Kn) = n − 1.

If G is a disconnected graph, (G) = 0; (Km,n) = min{m, n}; (Cn , n ≥ 3) = 2; (Nn) = 0; if T is a


tree on two or more vertices, (T) = 1

K1 K2 K3 K4 Kn(n > 3) C4 Cn(n > 2)

Connectivity 0 1 2 3 n–1 2 2
1-connected  ✓ ✓ ✓ ✓ ✓ ✓

2-connected   ✓ ✓ ✓ ✓ ✓

3-connected    ✓ ✓  
Edge cut and edge-connectivity

A disconnecting set of edges of a graph G = (V, E) is a set F  E such that G – F has more than
one component.

Given disjoint (nonempty) sets S, T  V for a graph G, denote [S, T] for the set of edges having
one endpoint in S and the other in T.
An edge cut of a graph G = (V, E) is an edge set of the form [S, S ] where S is a nonempty
proper subset of V and S = V – S. In other words, an edge cut is a minimal disconnecting set,
that is an edge cut does not contain any other edge cut as its proper subset.

The edge-connectivity of G, (G), is the minimum size of an edge cut.

A graph G is k-edge-connected if every disconnecting set has at least k edges (k  (G)).


An edge cut with one element is called a cut-edge or a bridge.
Example
a d f

The set of edges {ad, cd, ce, be} is an edge cut.


c Removing the edges disconnects the graph into
two components.
b e

a d a d f
f

c → c

b e b e

Some other edge cuts in this graph are {ad, ac, bc, be}, {ad, ac, bc}, {de, ce, be}, {df}.
The set {ad, cd, ce, de} is a disconnecting set but not an edge cut because its proper
subset {ad, cd, de} is an edge cut.
The graph has a cut-edge, namely {df} and its edge-connectivity is 1.
Example
Original graph

S
a
S

Disconnecting set Edge cut

If G is a disconnected graph, (G) = 0; if T is a tree on two or more vertices, (T) = 1; (Kn) =


n − 1; (Cn , n ≥ 3) = 2

Theorem (Whitney’s)

Let G be a simple graph. Then (G)  (G)  (G).


Example
Vertex cut
Graph G :

(G) = 1, (G) = 2, (G) = 3

Edge cut

Graph H :

(H) = 1, (H) = 3, (H) = 3

Graph K5 :

( K5) = 4, ( K5) = 4, ( K5) = 4


Blocks
Let G be a connected graph on three or more vertices. G is said to be separable if it has a least
one cut-vertex. Otherwise, G is nonseparable. A maximal nonseparable connected subgraph of
G is called a block of G.

Example
Graph G1 : a d

c f
b e
a d

c c f are blocks of G1.


b e

f is nonseparable but not maximal nonseparable, hence not a block.


e

Graph G2 :

G2 is nonseparable, hence a block itself.

Graph G3 : B1

B3 G3 is separable with four blocks B1, B2, B3


and B4.

B2 B4
Properties of blocks :
1. An edge of a cycle cannot itself be a block since it is in a larger subgraph with no cut-
vertex. Hence an edge is a block if and only if it is a cut-edge. The blocks of a tree are its
edges.
2. If a block has more than two vertices, then it is 2-connected. The blocks of a loopless
graph are its isolated vertices, its cut-edges and its maximal 2-connected subgraphs.

Proposition
Two blocks in a graph share at most one vertex.

Example
Graph G4 :
B2
B1
G4 consists of 6 blocks, 3 copies of K2 (B2, B3, B4),
one of K3 (B1), one subgraph which is neither a
cycle nor a complete graph (B5) and an vertex (B6) .
B3
B1 and B3 share a vertex, and so do B5 and B3. B2,
B5 B4 and B6 do not share any vertex with other
B6
• B4 blocks.

If G is a graph with at least one cut-vertex, at least two of the blocks of G contain exactly one
cut-vertex. These are called end-blocks.
Example
B1 and B5 are end-blocks of G4.
Graph G5 : a d
f
g
h
b c e

Blocks of G5 :
a d f
g
g
c e
i
b c e g h
End-blocks
Network Flow Problems
Consider a capacitated directed network or a capacitated digraph. Each arc/ edge has an arrow
indicating the permitted direction of flow and a weight which represents the capacity of that arc.
The capacity is the maximum amount of flow that can pass along that arc. A node/ vertex, S, is
called a source if all arcs containing S are directed away from S. A node, T, is called a sink if all
arcs containing T are directed towards T.
In a network flow problem, we are to find a flow with maximum value from source, S to sink, T.
Cut
A cut, in a network with source S and sink T, is a set of arcs whose removal separates the
network into two parts X and Y, where X contains at least S and Y contains at least T.
The capacity of a cut is the sum of the capacities of those arcs in the cut which are directed
from X to Y. When evaluating the capacity of a cut, only include the capacities of the arcs
flowing into the cut. Arcs which are cut, but whose direction flows out of the cut, contribute zero
to the capacity of the cut.
Example C2
C1 C3 D
A 8

C4 14 11 C5
4 6
3 C T
S
5
C5 15 7 16

9 E
B C2
C1 C3 C4

Cut Capacity

C1 : {SA, SB} 14 + 15 = 29

C2 : {AD, CD, ET} 8 + 6 + 16 = 30

C3 : {AD, AC, BC, BE} 8 + 4 + 7 + 9 = 28


C4 : {SA, AB, BC, BE} 14 + 0 + 7 + 9 = 30

C5 : {SB, AB, AC,CD, DT} 15 + 3 + 4 + 0 + 11 = 33

In cut C4, AB does not flow into the cut, so AB contributes nothing to the capacity of the cut.
Similarly, CD flows out of the cut C5 and hence contributes zero to the cut.
Example :
A 11 C
20 19
10 T
S 7 8
20
15
B 4
D

The diagram shows a capacitated directed network. The number on each arc represents the
capacity of that arc. Find all ST-cuts and the capacity of each of the cuts.

No. Cut Capacity

1 {SA, SB} 20 + 15 = 35

2 {SA, BA, BD} 20 + 7 + 4 = 31

3 {SA, BA, AD, CD, DT} 20 + 7 + 0 + 0 + 20 = 47

4 {SB, BA, AD, AC} 15 + 0 + 10 + 11 = 36

5 {SB, BA, AD, CD, CT} 15 + 0 + 10 + 8 + 19 = 52

6 {AC, AD, BD} 11 + 10 + 4 = 25


7 {AC, CD, DT} 11 + 0 + 20 = 31

8 {BD, AD, CD, CT} 4 + 10 + 8 + 19 = 41

Note : The arcs in bold contribute zero to the cut since the arcs flow out of the cuts.

Flow

To show a flow through a network, assign a number, f(e)  0, to each arc so that it satisfies two
conditions.
1. The feasibility condition : the flow along each arc must not exceed the capacity of
that arc, i.e. 0  f(e) < c(e).
2. The conservation condition : on all nodes except source and sink nodes,
The total flow into a node = The total flow out of the node
If the arc contains a flow equal to its capacity we say that arc is saturated.
Often the directed network is drawn together with a feasible flow. Usually the flow is indicated by
circled numbers.
Example :
The zero flow – assigns flow 0 to each edge. It is a feasible flow with total flow = 0.

u 1 0 v
2 0
2 0

s 1 0 t

2 0 2 0
y
x 1 0

Example :
u 1 1 v
2 1
2 0

s 1 1 t

2 0 2 1
y
x 1 1

Feasible flow with total flow = 1. Arcs uv, vx and xy are saturated.

Example :
12 10 c
a
32 26 20 10
13 x
11 9 d 21 z
s t
18 y

31 10 5 4
8 8
b 14 12 e
The diagram shows a capacitated directed network. The number on each arc represents the
capacity of that arc. The numbers in circles represent an initial flow pattern.
a. State a saturated arc.
b. Find the values of x, y and z, explaining your reasoning.
c. State the value of the initial flow.
d. Write down the capacity of arc be and the current flow along the arc be.
e. Find the current flow along s-a-b-e-t.
Solution :
a. Arc et is a saturated arc, because the flow it contains is equal to its capacity.

b. Flow into a = flow out of a


26 = 10 + x + 9
x=7

Flow into b = flow out of b


10 + 9 = y + 12
y=7

Flow into d = flow out of d


x+y+4=z
7+7+4=z
z = 18

c. Value of the initial flow = 26 + 10 = 36


or 10 + z + 8 = 10 + 18 + 8 = 36

d. Capacity of arc be = 14; Flow along be = 12

e. Flow along sa = 26, flow along ab = 9, flow along be = 14, flow along et = 8
 Flow along s-a-b-e-t = 8 (the minimum of the above flows)
Ford-Fulkerson Labelling Algorithm
Consider the zero flow as the initial feasible flow,
1. Draw two arrows on each arc :
• The ‘forward” arrow (the arrow in the same direction as the arc) is used to identify
the amount by which the flow along that arc can be increased. This is the spare
capacity.
• The ‘backward’ arrow is used to identify the amount by which the flow in the arc
could be reduced. It shows the value of the current flow in that arc but not the
direction.
2. Find a flow-augmenting path which starts at S and finishes at T. Use both forward and
backward arrows, as long as there is not a zero in the direction of the path.
3. Determine the smallest ‘forward’ number along the flow-augmenting path, f. Subtract f
from the number on each forward arrow and add f to the number on each backward
arrow in the path.
4. Repeat step 2 until there are no more flow-augmenting path.

Example :
A 11 C
20 19
10 T
S 7 8
20
15
B 4
D

Apply the labelling procedure :

A 11 C
20 0
0 19
0 0 T
10 0
S 7 8
0 0 20
15 0 0
B 4
D

‘Forward’ arrows : ; ‘Backward’ arrows :


Flow-augmenting path : S-A-C-T with minimum ‘forward’ number 11. Subtract 11 from the
‘forward’ arrows and add 11 to ‘backward’ arrows along the path. The new flow pattern is as
follows.

A 0 C
9 11
11 8
0 0 T
10 11
S 7 8
0 0 20
15 0 0
B 4
D
Flow-augmenting path : S-A-D-T with minimum ‘forward’ number 9. Subtract 9 from the ‘forward’
arrows and add 9 to ‘backward’ arrows along the path. The updated flow pattern is as follows.

A 0 C
0 11
20 8
9 0 T
1 11
S 7 8
0 9 11
15 0 0
B 4
D
Now, SA is saturated. The next flow-augmenting path is S-B-A-D-T with minimum ‘forward’
number 1. Subtract 1 from the ‘forward’ arrows and add 1 to ‘backward’ arrows along the path.
The new flow pattern is as follows.

A 0 C
0 11
20 8
10 0 T
0 11
S 6 8
1 10 10
14 1 0
B 4
D
Flow-augmenting path : S-B-D-T with minimum ‘forward’ number 4. Subtract 4 from the ‘forward’
arrows and add 4 to ‘backward’ arrows along the path. The new flow pattern is as follows.

A 0 C
0 11
20 8
10 0 T
0 11
S 6 8
5 14 6
10 1 4
B 0
D

There is no further flow-augmenting path to find. Thus, the flow through the network has been
increased to its maximum. The final flow pattern is found by taking all the ‘backward’ numbers
on each arc.

A 11 C
20 11
10 T
S 1 0
14
5
B 4
D
The maximum flow value is 20 + 5 = 25 or 11 + 14 = 25.
Note : There are different flow-augmenting paths that can be taken in each iteration. For
example, we can start by taking S-B-D-T as the first flow-augmenting path. The final flow pattern
may be different, but the maximum flow value will be the same.
Example :

A 12 C
8 13
4 3 T
S
6
11
B 10
D

Apply the labelling procedure :

A 12 C
8 0
0 13
0 3 0 T
0 4
S
0 0 6
11 0
B 10
D

‘Forward’ arrows : ; ‘Backward’ arrows :

Flow-augmenting path : S-A-D-T with minimum ‘forward’ number 4. Subtract 4 from the ‘forward’
arrows and add 4 to ‘backward’ arrows along the path. The new flow pattern is as follows.

A 12 C
4 0
0 13
4 3 0 T
4 0
S
0 4 2
11 0
B 10
D
The next flow-augmenting path is S-A-C-T with minimum ‘forward’ number 4. Subtract 4 from
the ‘forward’ arrows and add 6 to ‘backward’ arrows along the path. The new flow pattern is as
follows.

A 8 C
0 4
0 9
4 3 4 T
8 0
S
0 4 2
11 0
B 10
D

The next flow-augmenting path is S-B-D-C-T with minimum ‘forward’ number 3. Subtract 3 from
the ‘forward’ arrows and add 3 to ‘backward’ arrows along the path. The updated flow pattern is
as follows.

A 8 C
0 4
3 6
4 0 7 T
8 0
S
3 4 2
8 3
B 7
D

Flow-augmenting path : S-B-D-T with minimum ‘forward’ number 2. Subtract 2 from the ‘forward’
arrows and add 2 to ‘backward’ arrows along the path. The new flow pattern is as follows.

A 8 C
0 4
3 6
4 0 7 T
8 0
S
5 6 0
6 5
B 5
D

For the next flow-augmenting path, we must start with SBD. But, both DC and DT are saturated
since the ‘forward’ numbers are both zero. The only exit is DA with a non-zero ‘forward’ number.
So, we take S-B-D-A-C-T as our flow-augmenting path with minimum ‘forward’ number 4.
Subtract 4 from the ‘forward’ arrows and add 4 to ‘backward’ arrows along the path. The
updated flow pattern is as follows.
Notice that the direction of the flow is from A to D and in this flow-augmenting path we are going
from D to A. This an example of a backflow.
A 4 C
0 8
3 2
0 0 11 T
8 4
S
9 6 0
2 9
B 1
D

There is no further flow-augmenting path to find. Thus, the flow through the network has been
increased to its maximum. The final flow pattern is found by taking all the ‘backward’ numbers
on each arc.

A 8 C
8 11
0 3 T
S
6
9
B 9
D

The maximum flow value is 8 + 9 = 17 or 11 + 6 = 17.


Theorem : (Maximum flow – minimum cut theorem)
In every network, the maximum value of a feasible flow equals the minimum capacity of a ST-
cut.
Example : For the network,

A 11 C
20 19
10 T
S 7 8
20
15
B 4
D

ST-cuts are

No. Cut Capacity

1 {SA, SB} 20 + 15 = 35
2 {SA, BA, BD} 20 + 7 + 4 = 31

3 {SA, BA, AD, CD, DT} 20 + 7 + 0 + 0 + 20 = 47

4 {SB, BA, AD, AC} 15 + 0 + 10 + 11 = 36

5 {SB, BA, AD, CD, CT} 15 + 0 + 10 + 8 + 19 = 52

6 {AC, AD, BD} 11 + 10 + 4 = 25

7 {AC, CD, DT} 11 + 0 + 20 = 31

8 {BD, AD, CD, CT} 4 + 10 + 8 + 19 = 41

Minimum capacity of ST-cut is 25.


Flow pattern with maximum flow is
A 11 C
20 11
10 T
S 1 0
14
5
B 4
D

with the maximum value of a feasible flow 25. Thus the minimum capacity of ST-cut equals the
maximum value of a feasible flow.

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy