Edge Connectivity Calculator

min edge cut λ(G)

CalculatorsFreeNo Signup
4.2(391 reviews)
All Tools

Loading tool...

About Edge Connectivity Calculator

An edge connectivity calculator computing λ(G): minimum edge cut size. κ(G) ≤ λ(G) ≤ δ(G). λ(K_n) = n-1. Menger's theorem (edge version): λ equals max number of edge-disjoint paths between any pair. Client-side.

Edge Connectivity Calculator Features

  • λ(G) value
  • Whitney bound
  • Bridge detection
  • Common graphs
  • Max-flow
Edge connectivity λ(G): minimum edges to remove to disconnect G. Whitney: κ ≤ λ ≤ δ. Menger (edge): max edge-disjoint u-v paths = min u-v edge cut. λ(K_n)=n-1, λ(K_{m,n})=min(m,n), λ(C_n)=2.

How to Use

Select graph:

  • λ: Edge connectivity
  • Bridge: λ=1 edge
  • Whitney: κ ≤ λ ≤ δ

Max-Flow Connection

λ(G) = min over all pairs (u,v) of max-flow(u,v) with unit-capacity edges. By max-flow min-cut theorem, this equals the minimum edge cut. Can be computed in O(n) max-flow computations using Gomory-Hu tree.

Bridges

A bridge is an edge whose removal disconnects G (λ=1 locally). Found in O(n+m) by DFS. A graph is 2-edge-connected iff it has no bridges iff every edge lies on a cycle. Ear decomposition characterizes 2-edge-connected graphs.

Step-by-Step Instructions

  1. 1Select graph.
  2. 2Compute λ(G).
  3. 3Find bridges.
  4. 4Check Whitney.
  5. 5Compare κ,λ,δ.

Edge Connectivity Calculator — Frequently Asked Questions

What's a bridge?+

An edge e where G-e is disconnected. Equivalently: e is not on any cycle. Bridges can be found in O(n+m) using DFS (Tarjan's algorithm). A graph with no bridges is 2-edge-connected.

How does Gomory-Hu tree help?+

The Gomory-Hu tree stores all n(n-1)/2 pairwise max-flow values in a single tree on n vertices. The minimum edge of the tree gives λ(G). It can be computed with n-1 max-flow computations instead of O(n²).

When does κ = λ?+

For vertex-transitive graphs (every vertex 'looks the same'): κ=λ. This includes all K_n, C_n, Petersen, and hypercubes. For general graphs, κ<λ is possible: take a vertex of degree δ connected to a high-degree vertex.

Share this tool: