Warning: mostly for fun / basic science

##Preliminaries

Hierarchy theorems

The time hierarchy theorem is one of the simplest results in complexity theory. It says that if , then there are functions that we can compute in time that we can't compute in time . For example, there are functions that you can compute in time that you can't compute in time.

Hierarchy theorems are proved by diagonalization---consider the problem, "does machine halt in time at most ?" This problem can be easily solved in time. But if any machine solves this problem in time then we can get a contradiction by asking about itself.

This proof strategy is very blunt. One way to formalize its bluntness is to introduce the notion of relative complexity. Rather than considering normal computers, we consider a computer that has access to a black box computing a particular function . Hierarchy theorems hold relative to any function .

Relativization is a hallmark of "easy" complexity theoretic results (i.e. those that we can prove). We can prove very few separations that don't relativize. (Scott Aaronson has introduced a slightly stronger notion of algebrization which more accurately captures what we can actually prove, and we can prove a few more lower bounds on low-depth circuits.)

Distributional estimation problems

A distributional estimation problem is a sequence of distributions over pairs . The goal of an estimator is to approximate given . The score of a estimator on is the expected squared error, i.e. the expectation of , for pairs drawn from . If is a probabilistic estimator, then we also take an expectation over 's internal randomness.

(This definition is due to Vadim Kosoy.)

Let's say that is a better estimator than on a distributional estimation problem if there is a constant and an such that for every , 's score on is at least higher than 's score (i.e., such that the lim inf of 's score minus 's score is strictly positive).

Time hierarchy for distributional estimation problems

Now we can ask:

Is there a distributional estimation problem and an estimator running in time such that is a better estimator on than any estimator running in time ?

The answer is almost certainly "yes," and there is a very natural hard problem---sample a machine which runs in time and estimate the expected value of .

Time hierarchy does not relativize for distributional estimation problems

We can construct a probabilistic oracle such that exactly the same set of distributional estimation problems can be solved in time as can be solved by any algorithm running in any amount of time.

Namely, consider the construction of reflective oracles from this paper. With this oracle in hand, for any estimator running in any amount of time, there is an estimator running in time which approximates the results of running up to error , and in particular which is not a worse predictor than .

On input , queries the reflective oracle to estimate the expected value of . It starts by comparing this expected value to , then performs a binary search to narrow down the value to an interval of length . This gives us error of , and it works regardless of how expensive is to compute.

This argument is relative to a certain probabilistic oracle. It would be more convincing if the containment failed relative to some deterministic oracle. I'm not sure if it does.

A natural candidate deterministic oracle is one which takes as input a randomized (oracle) Turing machine , a probability , an accuracy , and an auxiliary input . The oracle makes no guarantees at all about its behavior on any particular input . But if accepts with probability strictly more than in time , then the oracle guarantees that it returns on at least of the possible tuples . And conversely, if accepts with probability strictly less than , then the oracle guarantees that it returns on at most of the possible tuples .

If such an oracle exists, then time hierarchy for distributional estimation problems certainly doesn't hold with respect to this oracle. I can't really tell whether such an oracle exists, my guess is that it does.

I think that the existence of such a deterministic oracle is itself an interesting question.

Conclusion

Hierarchy theorems are practically the only "easy" separation results in complexity theory. But they are easy to prove for reasons that seem morally unrelated to the real reasons that they are true.

In some sense distributional estimation problems are more natural than conventional decision problems. If we can't prove time hierarchy for these problems, it is arguably one of the most fundamental gaps in our understanding of complexity theory, even more glaring than (for example) P vs PSPACE.

Because time hierarchy doesn't seem to relativize for distributional estimation problems, I think there is a good chance that existing techniques can't prove it. That said, there may also be a simple argument for hierarchy that I overlooked.

Personal Blog

2

New Comment
6 comments, sorted by Click to highlight new comments since: Today at 9:27 PM

On input , queries the reflective oracle...

Did you flip the the definitions of and in that paragraph compared with the previous one?

Unless I'm missing something, if you consider arbitrary distributions then a time hierarchy definitely exists. To see this consider a Solomonoff distribution. For this distribution any problem that cannot be solved in given worst case complexity will have error bounded from below for any estimator of this complexity.

It is interesting to consider the question for computable or samplable distributions. For this I don't have an immediate answer but we should probably look for time-hierarchy results in average-case complexity (I'm working through a crappy connection now so I can't google it properly).

I think that I posed the question badly. It's not clear how to prove time hierarchy even for the worst-case estimation problems, the tricky part is the estimation not the distribution.

Decision problems are a special case of estimation problems so it is sufficient to prove a time hierarchy for probabilistic algorithms. To see this, consider a decision problem and an estimator . We can now construct a probabilistic algorithm s.t. . We have . Conversely, a probabilistic algorithm can be trivially interpreted as an estimator. So, a probabilistic algorithm with time complexity and success probability gives an estimator with time complexity and error . On the other hand there is some polynomial s.t. if there is no probabilistic algorithm with time complexity and success probability , then there is no estimator with time complexity and error (we should assume that is sufficient to amplify error probability to ; for reasonable computational models a linear polynomial is enough).

Now, you're right that there is no complete proof of a probabilistic time hierarchy, however:

a. The hierarchy is known given O(1) advice.

b. The hierarchy follows given sufficient derandomization assumptions.

I agree that probabilistic time hierarchy would imply me hierarchy for estimation problems. Time hierarchy is actually known with literally 1 bit of advice.

I believe that time hierarchy with O(1) advice also implies time hierarchy for estimation problems. Consider the advice machine for the hard problem running with advice 0 and the advice machine running with 1. Each of those estimates some function. If both of these functions are quickly estimable, then there is a fast advice machine which solves the hard problem (it uses its advice to decide which of the fast estimators to run), contradicting time hierarchy with advice.

In general, estimation problems seem much nicer than decision problems when we are talking about probabilistic algorithms. For example, every algorithm effectively solves some estimation problem, whereas most probabilistic algorithms don't solve any decision problem (this is why we can't eliminate the advice). Relatedly, there are complete estimation problems but no natural complete decision problems for probabilistic time (and hence no natural candidates for a concrete problem to demonstrate probabilistic time hierarchy, which would make our inability to prove it significantly less interesting).

I feel like there should be some intuitive claims that don't work for BPP because it is a kind of terrible class, but which do work for estimation problems.

Good point! More precisely, an arbitrary estimator may have significant error w.r.t. because doesn't have to be small but it doesn't matter because we can always amplify by running it multiple times and averaging the results. So we still get a hierarchy, just slightly less tight (but this tightness is not very interesting since it depends on the computational model anyway).