Strength of a graph

From testwiki
Revision as of 23:16, 11 February 2025 by imported>LiarBehindTheCake (growthexperiments-addlink-summary-summary:2|0|0)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Short description Template:Infobox graph

In graph theory, the strength of an undirected graph corresponds to the minimum ratio of edges removed/components created in a decomposition of the graph in question. It is a method to compute partitions of the set of vertices and detect zones of high concentration of edges, and is analogous to graph toughness which is defined similarly for vertex removal.

Definitions

The strength σ(G) of an undirected simple graph G = (VE) admits the three following definitions:

  • Let Π be the set of all partitions of V, and π be the set of edges crossing over the sets of the partition πΠ, then σ(G)=minπΠ|π||π|1.
  • Also if 𝒯 is the set of all spanning trees of G, then
σ(G)=max{T𝒯λT : T𝒯 λT0 and eE TeλT1}.
σ(G)=min{eEye : eE ye0 and T𝒯 eEye1}.

Complexity

Computing the strength of a graph can be done in polynomial time, and the first such algorithm was discovered by Cunningham (1985). The algorithm with best complexity for computing exactly the strength is due to Trubin (1993), uses the flow decomposition of Goldberg and Rao (1998), in time O(min(m,n2/3)mnlog(n2/m+2)).

Properties

  • If π={V1,,Vk} is one partition that maximizes, and for i{1,,k}, Gi=G/Vi is the restriction of G to the set Vi, then σ(Gk)σ(G).
  • The Tutte-Nash-Williams theorem: σ(G) is the maximum number of edge-disjoint spanning trees that can be contained in G.
  • Contrary to the graph partition problem, the partitions output by computing the strength are not necessarily balanced (i.e. of almost equal size).

References