Friday, May 1, 2009

Kolmogorov Complexity and derandomization

Motivation
------------

The sets Rμ of random strings with high Kolmogorov complexity and bounded resources are good examples of sets with a lot of information content that is difficult to access. Many of these sets have been studied [BM97,Ko91,KC00] as possible examples of intractable sets that are not complete for any of the standard complexity classes. Based on [Al05], we now show that these sets can, in fact, be exploited by efficient reductions.

The completeness results are obtained via derandomization techniques, mostly relativizing hardness vs randomness tradeoffs in the contrapositive: If there exists a problem in complexity class C that is hard when given oracle access to A, then there exists a pseudorandom generator secure against A that is computable within C. We argue that no pseudorandom generator computable in C can be secure against Rμ, and thus every problem in C is easy given oracle access to Rμ. In other words, C reduces to Rμ.

Definitions
-----------

The computational model that we use is the multi-tape Turing machine with random-access to its input tape (the ideas work in any general model). Wlg, we pick a single universal machine U.
Kolmogorov complexity CA(x) is usually defined as the length of the shortest description d{0,1}* such that UA(d)=x, where U is a universal Turing machine with oracle access to A. The definition we use is slightly different: instead of requiring UA(d) to produce x, it should recognize the correct value of xi for every i.
We now define several resource-bounded Kolmogorov complexity measures:


Definition 1 [Kt,KT,KS]
KtA(x)=min{d+logt:UA(d,i,b) accepts in t steps iff xi=b}
KTA(x)=min{d+t:UA(d,i,b) accepts in t steps iff xi=b}

The only difference is that in KT the time bound is given exponentially more weight. Considering space-bounded notions, too, will yield complete problems for space-bounded
classes:

KSA(x)=min{d+s:UA(d,i,b) accepts in s space iff xi=b}

Both Kt and KS can be approximated in terms of KTA, for appropriate oracle choices:

Theorem 2:
There exist a complete set A for E, a complete set B for DSPACE(n), and a constant c s.t.
Kt(x)/cKTA(x)
KS(x)/cKTB(x)

Proof sketch: Let AE and let x be given, s.t. KTA(x)=m. Thus, there is a description dx of length m, s.t. UA(dx,i,b) accepts iff xi=b in time at most m. During computation, U asks queries of length at most m. Since AE, each query can be answered in time 2O(m).
Let M denote the algorithm simulating the computation of UA(dx,i,b) for every i by directly computing the answers of A, then the description dʹx=M,dx is sufficient for U to compute U(dʹx,i,b) in time 2O(m). As dʹx=m+O(1), we can conclude that Kt(x)m+O(1)+log(2O(m))=O(m).
The proof for KS is similar.

We focus on sets containing strings of high complexity, for various measures.

Definition 3:
For any Kolmogorov complexity measure μ, define
Rμ={x:μ(x)x/2}.

The bound of x/2 is arbitrary. Essentially, all we need is that the set Rμ has polynomial density (it contains at least 2n/nk strings of each length n, for some k).
The following propositions are straightforward.

Proposition 4:
RKtE, RKSDSPACE(n), and RKTcoNP.

Proposition 5:
The sets RKt, RKS all have polynomial density.


Nonuniform Hardness Results
-------------------------------

We show that strings of high Kolmogorov complexity are very useful as oracles. We will argue that an appropriate set Rμ of Kolmogorov random strings can be used to distinguish the output of a pseudorandom generator Gf from truly random strings. This in turn will enable us to efficiently reduce f to Rμ.

Recall that A is PSPACE-robust if PSPACEA=PA (machines are allowed to ask oracle
queries of only polynomial size). The complete sets for many large complexity classes (PSPACE, EXP, EXPSPACE) have this property, as well as the complete sets (under linear-time
reductions) for classes like DSPACE(n) and E.

We will build a pseudorandom generator based on the Nisan-Wigderson paradigm [NW94]. [BFNW93] construct, for any ε>0, a variant GBFNW_:{0,1}nε{0,1}n such that for any x of size nε, the function is computable in space O(nε) given access to the Boolean function f on inputs of size at most nε. If f is PSPACE-robust, there is a constant c independent of ε, such that each bit is computable in time nεc with oracle access to f. The following hardness versus randomness tradeoff holds.

Theorem 6 [BFNW93]
Let f be a Boolean function, ε>0, and GBFNW_ be the pseudorandom generator described above. Let T be a set and p(n) a polynomial. If
PrUn[rT]-PxUnε[GBFNW_(x)T]1/p(n)
for all large n, then there exists a polynomial size oracle circuit family {Cn} with oracle T that computes f and queries T non-adaptively.

We use the notation AP/poly_tt to denote that there exists a truth-table (i.e., nonadaptive) reduction from A to B that is computable by a family of polynomial-size circuits.
(A truth-table reduction is a reduction from one set of natural numbers to another. Truth-table reductions are more powerful than Turing reductions in a mathematical sense, since they provide finer equivalent class, but they are a weaker tool.)

Theorem 7:
Let A be any PSPACE-robust set. Let L be a set of polynomial density s.t. for every xL, KTA(x)>xγ for some constant γ>0. Then A is reducible to L via P/poly_tt reductions.

Proof Sketch: Let f be the characteristic function of A. Consider GBFNW_,
choose ε as follows. We know that every bit of GBFNW_ is computable in time nεc for some constant c independent of ε, given access to A. Set ε=γ/2c (wlg c>1).

Any string in the range of GBFNW_ has small KTA complexity: Let y=GBFNW_(x), for some x. On x, every bit of GBFNW_ is computable in time nγ/2 with access to oracle A. Hence, KTA(y)x+O(nγ/2logn)+O(1)nγ. Thus, L distinguishes the output of GBFNW_ from random, and by Theorem 6, f is P/poly_tt reducible to L.

By Theorem 2 and Proposition 5, we can apply Theorem 7 to
the set A from Theorem 2, RKt, and the set B from Theorem 2, RKS.
(A and B are clearly PSPACE-robust, since they are complete for EXP and PSPACE, respectively.) Combining this with Proposition 4, we get:

Corollary 8:
RKt is complete for EXP under P/poly_tt reductions. RKS is complete for PSPACE under P/poly_tt reductions.


Those results also obtain natural examples that witness the difference in power of various reducibilities, as some of the sets which we show are complete under truth-table reductions are provably not complete under polynomial-time many-one reductions.



1 comment:

  1. Al05: E. Allender et al. Power from Random Strings

    BFNW93: L. Babai et al. BPP has subexponential time simulations
    unless EXPTIME has publishable proofs.

    BM97: H. Buhrman and E. Mayordomo. An excursion to the Kolmogorov random strings.

    KC00: V. Kabanets and J.-Y. Cai. Circuit minimization problem.

    Ko91: K.-I Ko. On the complexity of learning minimum time-bounded turing machines.

    NW94: N. Nisan and A. Wigderson. Hardness vs randomness.

    ReplyDelete

Note: Only a member of this blog may post a comment.