Kalpana Kalpana (Editor)

Strength of a graph

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Strength of a graph

In the branch of mathematics called graph theory, the strength of an undirected graph corresponds to the minimum ratio 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.

Contents

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 T is the set of all spanning trees of G, then
  • And by linear programming duality,
  • 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 , n 2 / 3 ) m n log ( n 2 / m + 2 ) ) .

    Properties

  • If π = { V 1 , , V k } is one partition that maximizes, and for i { 1 , , k } , G i = G / V i is the restriction of G to the set V i , then σ ( G k ) σ ( 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

    Strength of a graph Wikipedia


    Similar Topics