Graph which remains connected when k or fewer nodes removed
In graph theory, a connected graphG is said to be k-vertex-connected (or k-connected) if it has more than kvertices and remains connected whenever fewer than k vertices are removed.
The vertex-connectivity, or just connectivity, of a graph is the largest k for which the graph is k-vertex-connected.
Definitions
A graph (other than a complete graph) has connectivity k if k is the size of the smallest subset of vertices such that the graph becomes disconnected if you delete them.[1] In complete graphs, there is no subset whose removal would disconnect the graph. Some sources modify the definition of connectivity to handle this case, by defining it as the size of the smallest subset of vertices whose deletion results in either a disconnected graph or a single vertex. For this variation, the connectivity of a complete graph is .[2]
An equivalent definition is that a graph with at least two vertices is k-connected if, for every pair of its vertices, it is possible to find k vertex-independent paths connecting these vertices; see Menger's theorem (Diestel 2005, p. 55). This definition produces the same answer, n − 1, for the connectivity of the complete graph Kn.[1]
A 1-connected graph is called connected; a 2-connected graph is called biconnected. A 3-connected graph is called triconnected.
The vertex-connectivity of an input graph G can be computed in polynomial time in the following way[4] consider all possible pairs of nonadjacent nodes to disconnect, using Menger's theorem to justify that the minimal-size separator for is the number of pairwise vertex-independent paths between them, encode the input by doubling each vertex as an edge to reduce to a computation of the number of pairwise edge-independent paths, and compute the maximum number of such paths by computing the maximum flow in the graph between and with capacity 1 to each edge, noting that a flow of in this graph corresponds, by the integral flow theorem, to pairwise edge-independent paths from to .
Properties
Let k≥2.
Every -connected graph of order at least contains a cycle of length at least
In a -connected graph, any vertices in lie on a common cycle.[5]
A graph with at least vertices is called -linked if there are disjoint paths for any sequences
and of distinct vertices. Every -linked graph is -connected graph, but not necessarily -connected. [7]
If a graph is -connected and has average degree of at least , then it is -linked.
[8]