Questions: Max-Flow Min-Cut Theorem

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

In a network, the S-side of a cut sends three forward edges to the T-side with capacities 5, 3, and 7. Two backward edges run from T-side to S-side with capacities 4 and 2. What is the capacity of this cut?

A21 — the sum of all crossing edges in both directions
B15 — the sum of forward edges only (5 + 3 + 7)
C9 — the sum of backward edges, since they limit how much can return
D6 — the minimum capacity among the forward edges
Question 2 Multiple Choice

The Max-Flow Min-Cut Theorem guarantees that for any network with a source and sink:

AThe maximum flow is at most the minimum cut capacity (a one-sided bound)
BThe maximum flow value equals the minimum cut capacity exactly — these two quantities are always the same
CEvery cut has the same capacity as the maximum flow
DThe minimum cut always contains the fewest edges of any cut separating source from sink
Question 3 True / False

When the Ford-Fulkerson algorithm terminates with no augmenting path remaining, every forward edge from the source-reachable vertex set S to the non-reachable set T in the residual graph must be fully saturated.

TTrue
FFalse
Question 4 True / False

The minimum cut in a network is the cut that separates source from sink using the fewest edges.

TTrue
FFalse
Question 5 Short Answer

Explain why the Max-Flow Min-Cut Theorem proves that augmenting-path algorithms like Ford-Fulkerson find the true maximum flow when they terminate.

Think about your answer, then reveal below.