Réponses:
Il existe une interprétation logique des différents niveaux de la hiérarchie polynomiale, qui étend la caractérisation témoin de et .
Un langage est dans s'il y a un prédicat de polytime et un polynôme tels que
Ici:
Similarly, is in if it can be written in a similar way, only starting with .
As an example, is , and consists of all languages such that
Your third example is , which is . I'm not sure what is the logical characterization.
To say contains problems with "small verifiable witnesses" is conceptually inaccurate at best. The witnesses are only polynomially bounded because we want the verifier to be efficient (i.e., run in polynomial time). In such a setting, only a polynomially long prefix of any witness can be relevant, hence why we insist on polynomially long witnesses. Also, "small" potentially means constant or logarithmic; those are not used, of course, because they can be brute-forced by polynomial-time algorithms (and only give us problems in ).
The way the proof system notion of generalizes to yield the polynomial hierarchy is much like the logical point of view that Yuval Filmus describes in his answer. Let me introduce the less technical view behind it.
We consider two-party games which are based on QBFs. An instance (or the "board" if you care to imagine it as a board game like chess or checkers) of such a game is a formula , and the two players, say and , take turns choosing values for and , respectively. Each such choice constitutes a move. When no more values are left, the formula (i.e., the game's final position) is evaluated; wins if it is true, and wins if it is false.
This game models existential and universal quantifiers in the following way: If the formula is a true QBF, then (which plays the role of existential quantifiers) will always have a winning strategy and be able to choose a series of which cause to be true regardless of the values picked by (which plays the role of universal quantifiers). The "yes" instances are those in which the QBF is true, that is, always has a winning strategy, regardless of how plays.
and then correspond to games which last for moves and in which and , respectively, get to go first. Actually, you even get and the inclusion as a bonus since it corresponds to the class of games which go on for an arbitrary (though predetermined) number of moves.
Note also that and are rather degenerate cases of these games because and , respectively, do not get the chance to move at all! For example, for the "yes" instances of , gets to win simply by doing nothing (since a "yes" instance is a tautology and is true regardless of what chooses).
There is also a more generalized version of the above which is based on generic games (and not QBFs specifically). You can find it, for instance, in section 5.4 "PSPACE and Games" of Goldreich's "Computational Complexity: A Conceptual Perspective" (here is a free link to the draft version; see p. 174 as well as pp. 118–121).
is the closure of under polynomial time Turing reductions (=Cook reductions). Therefore, it is closed under Cook reductions, so that we have . In fact, for any oracle , we define as the closure of under Cook reductions, and we always have and . Also and . But Cook reductions feel slightly unnatural for decision problems.
Note that is a function class in disguide, and that too is a function class in disguise. Let us write for the class of polynomial time computable partial functions, i.e. the function class corresponding to , and for the function class corresponding to . Including the partial functions allows to use established notation (used in A taxonomy of complexity classes of functions by A. Selman, 1994) that avoids the name clash with the unrelated class .
Cook reduction feel more natural for function classes. You probably encountered a Cook reduction (and implicitly also the class ) at the point where your text book or professor explained why it is OK to only look at decision problems. Typically, something like an algorithm (from ) to compute the lexicographically last satisfying assignment of a given SAT instance is described. One first asks the oracle whether there is any satisfying assignment at all, and then determines the values of the (binary) variables by successively asking the oracle whether there is a satisfying assignment where are set to the already determined values, and is set to . If yes, then one sets to , otherwise one sets to . (Note that this is a partial function, since the function is undefined in case there is no satisfying assignment.)
Let me try to say some words about Yuval Filmus remark:
Your third example is , which is . I'm not sure what is the logical characterization.
There are two difficulties to overcome: (1) the characterization of a function class has a different feel than the logical characterization of a decision class, and (2) at least for we have to model the deterministic character of the queries to the oracle .
If we look at the class of partial functions corresponding to the class of decision problems first, then we can ignore (2) for a moment: A partial function is in if there is a polytime partial function , a polytime predicate and a polynomial such that where
One could try to overcome (2) by introducing the operators and . But it would still get ugly, and one can argue whether this would really constitute a logical characterization.