HOME

TheInfoList



OR:

In
graph theory In mathematics, graph theory is the study of '' graphs'', which are mathematical structures used to model pairwise relations between objects. A graph in this context is made up of '' vertices'' (also called ''nodes'' or ''points'') which are conn ...
, a connected graph is -edge-connected if it remains connected whenever fewer than edges are removed. The edge-connectivity of a graph is the largest for which the graph is -edge-connected. Edge connectivity and the enumeration of -edge-connected graphs was studied by Camille Jordan in 1869.


Formal definition

Let G = (V, E) be an arbitrary graph. If subgraph G' = (V, E \setminus X) is connected for all X \subseteq E where , X, < k, then ''G'' is ''k''-edge-connected. The edge connectivity of G is the maximum value ''k'' such that ''G'' is ''k''-edge-connected. The smallest set ''X'' whose removal disconnects ''G'' is a minimum cut in ''G''. The edge connectivity version of Menger's theorem provides an alternative and equivalent characterization, in terms of edge-disjoint paths in the graph. If and only if every two vertices of ''G'' form the endpoints of ''k'' paths, no two of which share an edge with each other, then ''G'' is ''k''-edge-connected. In one direction this is easy: if a system of paths like this exists, then every set ''X'' of fewer than ''k'' edges is disjoint from at least one of the paths, and the pair of vertices remains connected to each other even after ''X'' is deleted. In the other direction, the existence of a system of paths for each pair of vertices in a graph that cannot be disconnected by the removal of few edges can be proven using the max-flow min-cut theorem from the theory of network flows.


Related concepts

Minimum
vertex degree In graph theory, the degree (or valency) of a vertex of a graph is the number of edges that are incident to the vertex; in a multigraph, a loop contributes 2 to a vertex's degree, for the two ends of the edge. The degree of a vertex v is denote ...
gives a trivial upper bound on edge-connectivity. That is, if a graph G = (V, E) is ''k''-edge-connected then it is necessary that ''k'' ≤ δ(''G''), where δ(''G'') is the minimum degree of any vertex ''v'' ∈ ''V''. Obviously, deleting all edges incident to a vertex, ''v'', would then disconnect ''v'' from the graph. Edge connectivity is the dual concept to
girth Girth may refer to: ;Mathematics * Girth (functional analysis), the length of the shortest centrally symmetric simple closed curve on the unit sphere of a Banach space * Girth (geometry), the perimeter of a parallel projection of a shape * Girth ...
, the length of the shortest cycle in a graph, in the sense that the girth of a
planar graph In graph theory, a planar graph is a graph that can be embedded in the plane, i.e., it can be drawn on the plane in such a way that its edges intersect only at their endpoints. In other words, it can be drawn in such a way that no edges cro ...
is the edge connectivity of its dual graph, and vice versa. These concepts are unified in
matroid theory In combinatorics, a branch of mathematics, a matroid is a structure that abstracts and generalizes the notion of linear independence in vector spaces. There are many equivalent ways to define a matroid axiomatically, the most significant being ...
by the girth of a matroid, the size of the smallest dependent set in the matroid. For a graphic matroid, the matroid girth equals the girth of the underlying graph, while for a co-graphic matroid it equals the edge connectivity. The 2-edge-connected graphs can also be characterized by the absence of
bridges A bridge is a structure built to span a physical obstacle (such as a body of water, valley, road, or rail) without blocking the way underneath. It is constructed for the purpose of providing passage over the obstacle, which is usually someth ...
, by the existence of an
ear decomposition In graph theory, an ear of an undirected graph ''G'' is a path ''P'' where the two endpoints of the path may coincide, but where otherwise no repetition of edges or vertices is allowed, so every internal vertex of ''P'' has degree two in ''G''. ...
, or by Robbins' theorem according to which these are exactly the graphs that have a strong orientation.


Computational aspects

There is a polynomial-time algorithm to determine the largest ''k'' for which a graph ''G'' is ''k''-edge-connected. A simple algorithm would, for every pair ''(u,v)'', determine the maximum flow from ''u'' to ''v'' with the capacity of all edges in ''G'' set to 1 for both directions. A graph is ''k''-edge-connected if and only if the maximum flow from ''u'' to ''v'' is at least ''k'' for any pair ''(u,v)'', so ''k'' is the least ''u-v''-flow among all ''(u,v)''. If ''n'' is the number of vertices in the graph, this simple algorithm would perform O(n^2) iterations of the Maximum flow problem, which can be solved in O(n^3) time. Hence the complexity of the simple algorithm described above is O(n^5) in total. An improved algorithm will solve the maximum flow problem for every pair ''(u,v)'' where ''u'' is arbitrarily fixed while ''v'' varies over all vertices. This reduces the complexity to O(n^4) and is sound since, if a cut of capacity less than ''k'' exists, it is bound to separate ''u'' from some other vertex. It can be further improved by an algorithm of Gabow that runs in worst case O(n^3) time. The Karger–Stein variant of Karger's algorithm provides a faster
randomized algorithm A randomized algorithm is an algorithm that employs a degree of randomness as part of its logic or procedure. The algorithm typically uses uniformly random bits as an auxiliary input to guide its behavior, in the hope of achieving good performa ...
for determining the connectivity, with expected runtime O(n^2\log^3 n). A related problem: finding the minimum ''k''-edge-connected spanning subgraph of ''G'' (that is: select as few as possible edges in ''G'' that your selection is ''k''-edge-connected) is NP-hard for k\geq 2.M.R. Garey and D.S. Johnson. ''Computers and Intractability: a Guide to the Theory of NP-Completeness''. Freeman, San Francisco, CA, 1979.


See also

* k-vertex-connected graph *
Connectivity (graph theory) In mathematics and computer science, connectivity is one of the basic concepts of graph theory: it asks for the minimum number of elements (nodes or edges) that need to be removed to separate the remaining nodes into two or more isolated subgrap ...
*
Matching preclusion In graph theory, a branch of mathematics, the matching preclusion number of a graph ''G'' (denoted mp(''G'')) is the minimum number of edges whose deletion results in the destruction of a perfect matching or near-perfect matching (a matching that c ...


References

{{reflist Graph connectivity Graph families