Supriya Ghosh (Editor)

Yao's principle

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

In computational complexity theory, Yao's principle or Yao's minimax principle states that the expected cost of a randomized algorithm on the worst case input, is no better than a worst-case random probability distribution of the deterministic algorithm which performs best for that distribution. Thus, to establish a lower bound on the performance of randomized algorithms, it suffices to find an appropriate distribution of difficult inputs, and to prove that no deterministic algorithm can perform well against that distribution. This principle is named after Andrew Yao, who first proposed it.

Contents

Yao's principle may be interpreted in game theoretic terms, via a two-player zero sum game in which one player, Alice, selects a deterministic algorithm, the other player, Bob, selects an input, and the payoff is the cost of the selected algorithm on the selected input. Any randomized algorithm R may be interpreted as a randomized choice among deterministic algorithms, and thus as a strategy for Alice. By von Neumann's minimax theorem, Bob has a randomized strategy that performs at least as well against R as it does against the best pure strategy Alice might choose; that is, Bob's strategy defines a distribution on the inputs such that the expected cost of R on that distribution (and therefore also the worst case expected cost of R) is no better than the expected cost of any single deterministic algorithm against the same distribution.

Statement

Let us state the principle for Las Vegas randomized algorithms, i.e., distributions over deterministic algorithms that are correct on every input but have varying costs. It is straightforward to adapt the principle to Monte Carlo algorithms, i.e., distributions over deterministic algorithms that have bounded costs but can be incorrect on some inputs.

Consider a problem over the inputs X , and let A be the set of all possible deterministic algorithms that correctly solve the problem. For any algorithm a A and input x X , let c ( a , x ) 0 be the cost of algorithm a run on input x .

Let p be a probability distributions over the algorithms A , and let A denote a random algorithm chosen according to p . Let q be a probability distribution over the inputs X , and let X denote a random input chosen according to q . Then,

max x X   E [ c ( A , x ) ] min a A   E [ c ( a , X ) ] ,

i.e., the worst-case expected cost of the randomized algorithm is at least the cost of the best deterministic algorithm against input distribution q .

Proof

Let C = max x X   E [ c ( A , x ) ] and D = min a A   E [ c ( a , X ) ] . We have C = x q x C x q x E [ c ( A , x ) ] = x q x a p a c ( a , x ) = a p a x q x c ( a , x ) = a p a E [ c ( a , X ) ] a p a D = D .

As mentioned above, this theorem can also be seen as a very special case of the Minimax theorem.

References

Yao's principle Wikipedia