Entropy compression
In mathematics and theoretical computer science, entropy compression is an information theoretic method for proving that a random process terminates, originally used by Robin Moser to prove an algorithmic version of the Lovász local lemma.[1][2]
Description
[edit]To use this method, one proves that the history of the given process can be recorded in an efficient way, such that the state of the process at any past time can be recovered from the current state and this record, and such that the amount of additional information that is recorded at each step of the process is (on average) less than the amount of new information randomly generated at each step. The resulting growing discrepancy in total information content can never exceed the fixed amount of information in the current state, from which it follows that the process must eventually terminate. This principle can be formalized and made rigorous using Kolmogorov complexity.[3]
Example
[edit]An example given by both Fortnow[3] and Tao[4] concerns the Boolean satisfiability problem for Boolean formulas in conjunctive normal form, with uniform clause size. These problems can be parameterized by two numbers where is the number of variables per clause and is the maximum number of different clauses that any variable can appear in. If the variables are assigned to be true or false randomly, then the event that a clause is unsatisfied happens with probability and each event is independent of all but other events. It follows from the Lovász local lemma that, if is small enough to make (where is the base of the natural logarithm) then a solution always exists. The following algorithm can be shown using entropy compression to find such a solution for inputs that obey a constraint on of a similar form.
- Choose a random truth assignment
- While there exists an unsatisfied clause , call a recursive subroutine
fix
with as its argument. This subroutine chooses a new random truth assignment for the variables in , and then recursively calls the same subroutine on all unsatisfied clauses (possibly including itself) that share a variable with , until none are left.
This algorithm cannot terminate unless the input formula is satisfiable, so a proof that it terminates is also a proof that a solution exists. Each iteration of the outer loop reduces the number of unsatisfied clauses (it causes to become satisfied without making any other clause become unsatisfied) so the key question is whether the fix
subroutine terminates or whether it can get into an infinite recursion.[3]
To answer this question, consider on the one hand the number of random bits generated in each iteration of the fix
subroutine ( bits per clause) and on the other hand the number of bits needed to record the history of this algorithm in such a way that any past state can be generated. To record this history, we may store the current truth assignment ( bits), the sequence of arguments to the outermost calls to the fix
subroutine (at most bits, where is the number of clauses in the input), and then a sequence of records that either indicate that a recursive call to fix
returned or that it made a recursive call, and which of the clauses sharing a variable with the current clause was passed as an argument to that recursive call. There are possible outcomes per record, so the number of bits needed to store a record (using a compact encoding method such as arithmetic coding that allows storage using a fractional number of bits per record) is .[3]
This information is enough to recover the entire sequence of calls to fix
, including the identity of the clause given as an argument to each call. To do so, progress forward through the call sequence using the stored outermost call arguments and stored records to infer the argument of each call in turn. Once the sequence of recursive calls and their arguments has been recovered, the truth assignments at each stage of this process can also be recovered from the same information. To do so, start from the final truth assignment and then progress backwards through the sequence of randomly reassigned clauses, using the fact that each clause was previously unsatisfiable to uniquely determine the values of all of its variables prior to its random reassignment. Thus, after calls to fix
, the algorithm will have generated random bits but its entire history (including those generated bits) can be recovered from a record that uses only bits. This is only possible when the number of stored bits is at least as large as the number of randomly generated bits. It follows that, when is small enough to make , that is, when , the fix
subroutine can only perform recursive calls over the course of the whole algorithm.[3]
History
[edit]The name "entropy compression" was given to this method in a blog posting by Terence Tao[4] and has since been used for it by other researchers.[5][6][7]
Moser's original version of the algorithmic Lovász local lemma, using this method, achieved weaker bounds than the original Lovász local lemma, which was originally formulated as an existence theorem without a constructive method for finding the object whose existence it proves. Later, Moser and Gábor Tardos used the same method to prove a version of the algorithmic Lovász local lemma that matches the bounds of the original lemma.[8]
Since the discovery of the entropy compression method, it has also been used to achieve stronger bounds for some problems than would be given by the Lovász local lemma. For example, for the problem of acyclic edge coloring of graphs with maximum degree , it was first shown using the local lemma that there always exists a coloring with colors, and later using a stronger version of the local lemma this was improved to . However, a more direct argument using entropy compression shows that there exists a coloring using only colors, and moreover this coloring can be found in randomized polynomial time.[6]
References
[edit]- ^ Moser, Robin A. (2009), "A constructive proof of the Lovász local lemma", STOC'09—Proceedings of the 2009 ACM International Symposium on Theory of Computing, New York: ACM, pp. 343–350, arXiv:0810.4812, doi:10.1145/1536414.1536462, ISBN 978-1-60558-506-2, MR 2780080.
- ^ Lipton, R. J. (June 2, 2009), "Moser's Method of Bounding a Program Loop", Gödel's Lost Letter and P=NP.
- ^ a b c d e Fortnow, Lance (June 2, 2009), "A Kolmogorov Complexity Proof of the Lovász Local Lemma", Computational Complexity.
- ^ a b Tao, Terence (August 5, 2009), "Moser's entropy compression argument", What's New.
- ^ Dujmović, Vida; Joret, Gwenaël; Kozik, Jakub; Wood, David R. (2016), "Nonrepetitive Colouring via Entropy Compression", Combinatorica, 36 (6): 661–686, arXiv:1112.5524, Bibcode:2011arXiv1112.5524D, doi:10.1007/s00493-015-3070-6.
- ^ a b Esperet, Louis; Parreau, Aline (2013), "Acyclic edge-coloring using entropy compression", European Journal of Combinatorics, 34 (6): 1019–1027, arXiv:1206.1535, doi:10.1016/j.ejc.2013.02.007, MR 3037985.
- ^ Ochem, Pascal; Pinlou, Alexandre (2014), "Application of entropy compression in pattern avoidance", Electronic Journal of Combinatorics, 21 (2), Paper 2.7, arXiv:1301.1873, Bibcode:2013arXiv1301.1873O, doi:10.37236/3038, MR 3210641.
- ^ Moser, Robin A.; Tardos, Gábor (2010), "A constructive proof of the general Lovász local lemma", Journal of the ACM, 57 (2), Art. 11, arXiv:0903.0544, doi:10.1145/1667053.1667060, MR 2606086.