Rahul Sharma (Editor)

Algorithmic version for Szemerédi regularity partition

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

A Simple Algorithm for Constructing Szemerédi's Regularity Partition is a paper by Alan M. Frieze and Ravi Kannan giving an algorithmic version of the Szemerédi regularity lemma to find an ε-regular partition of a given graph.

Contents

Formal statement of the regularity lemma

The formal statement of Szemerédi's regularity lemma requires some definitions. Let G be a graph. The density d(X,Y) of a pair of disjoint vertex sets X, Y is defined as d(X,Y)=|E(X,Y)|/|X||Y| where E(X,Y) denotes the set of edges having one end vertex in X and one in Y. For ε>0, a pair of vertex sets X and Y is called ε-regular, if for all subsets AX and BY satisfying |A| ≥ε |X| and |B| ≥ ε |Y|, we have |d(X,Y)-d(A,B)| ≤ ε.

A partition of the vertex set of G into k sets, V1,...,Vk, is called an equitable partition if for all i , j , ||Vi|-|Vj||≤1. An equitable partition is an ϵ -regular partition, if for all but at most ϵ k 2 pairs (i,j) the pair ( V i , V j , ) is ϵ -regular.

Now we are ready to state the regularity lemma.

Regularity lemma. For every ϵ > 0 and positive integer m there exist integers N and M such that if G is a graph with at least N vertices, there exists an integer k in the range m k M and an ϵ -regular partition of the vertex set of G into k sets.

It is a common variant in the definition of an ϵ -regular partition to require that the vertex sets all have the same size, while collecting the leftover vertices in an "error"-set V 0 whose size is at most an ϵ -fraction of the size of the vertex set of G .

Szemerédi's regularity lemma is one of the most powerful tools of extremal graph theory. It says that, in some sense, all graphs can be approximated by random-looking graphs. Therefore the lemma helps in proving theorems for arbitrary graphs whenever the corresponding result is easy for random graphs. The first constructive version was provided by Alon, Duke, Leffman, Rödl and Yuster. Subsequently Frieze and Kannan gave a different version and extended it to hypergraphs. The paper is a nice survey on regularity lemma and its various applications. Here we will briefly describe a different construction due to Alan Frieze and Ravi Kannan that uses singular values of matrices.

Constructive version of Szemerédi regularity lemma by Frieze and Kannan

The algorithm is based on two crucial lemmas:

Lemma 1:
Fix k and γ and let G = ( V , E ) be a graph with n vertices. Let P be an equitable partition of V in classes V 0 , V 1 , . . . , V k . Assume | V 1 | > 4 2 k and 4 k > 600 γ 2 . Given proofs that more than γ k 2 pairs ( V r , V s ) are not γ -regular, it is possible to find in O(n) time an equitable partition P (which is a refinement of P ) into 1 + k 4 k classes, with an exceptional class of cardinality at most | V 0 | + n / 4 k and such that i n d ( P ) i n d ( P ) + γ 5 / 20

Lemma 2:
Let W be a R × C matrix with | R | = p , | C | = q and W inf 1 and γ be a positive real.
(a) If there exist S R , T C such that | S | γ p , | T | γ q and | W ( S , T ) | γ | S | | T | then σ 1 ( W ) γ 3 p q
(b) If σ 1 ( W ) γ p q , then there exist S R , T C such that | S | γ p , | T | γ q and W ( S , T ) γ | S | | T | where γ = γ 3 / 108 . Furthermore S , T can be constructed in polynomial time.

These two lemmas are combined in the following algorithmic construction of the Szemerédi regularity lemma.

[Step 1] Arbitrarily divide the vertices of G into an equitable partition P 1 with classes V 0 , V 1 , . . . , V b where | V i | = n / b and hence | V 0 | < b . denote k 1 = b .
[Step 2] For every pair ( V r , V s ) of P i , compute σ 1 ( W r , s ) . If the pair ( V r , V s ) are not ϵ regular then by Lemma 2 we obtain a proof that they are not γ = ϵ 9 / 108 regular.
[Step 3] If there are at most ϵ ( k 1 2 ) pairs that produce proofs of non γ regularity that halt. P i is ϵ regular.
[Step 4] Apply Lemma 1 where P = P i , k = k i , γ = ϵ 9 / 108 and obtain P with 1 + k i 4 k i classes
[Step 5] Let k i + 1 = k i 4 k i , P i + 1 = P , i = i + 1 and go to Step 2.

The algorithm will terminate with an ϵ -regular partition in O ( ϵ 45 ) steps since the improvement at each step is γ 5 / 20 = O ( ϵ 45 ) .

References

Algorithmic version for Szemerédi regularity partition Wikipedia