PL (complexity)
PL, or probabilistic L, is the class of languages recognizable by a polynomial time logarithmic space randomized machine with probability > Template:1/2 (this is called unbounded error). Equivalently, as shown below, PL is the class of languages recognized by unbounded time unbounded error logspace randomized machine.
An example of PL complete problem (under logspace reduction) is finding whether the determinant of a matrix (with integral coefficients) is positive. Given a matrix Template:Mvar and a number Template:Mvar, testing with [note 1] is also PL complete. By contrast, testing whether matrix permanent is positive is PP complete.
PLPL=PL in the sense that for every f in PL, PL is unchanged if it is extended to allow Template:Tmath as a subroutine, where A is the input string.
PL contains NL and BPL and is contained in NC2.
Approximating determinant in PL
Determinant of an integral matrix can be reduced to finding the difference between the number of accepting and rejecting paths on a polynomially sized directed acyclic graph with distinguished start, accept, and reject nodes. [1]
Comparing the number of accepting and rejecting paths can be done in PL as follows. Modify the graph to make all paths the same length and for each node to have at most two successors. Take a random path. For each node with just one successor, fail (output random answer) with probability Template:1/2. At the end, accept if we reached Accept node, reject if we reached Reject node, and fail otherwise. Each distinct path will be counted equally — while some paths are more likely to be taken, this is exactly compensated by reduced likelihood of continuing along that path.
Probabilistic logspace without a time limit
If time is unlimited, the machines can run in expected exponential time — for example, keep a counter and increment it with probability Template:1/2 and zero it otherwise; halt when the counter overflows. If zero error (alternatively, one-sided error) is allowed, the class equals NL — the machine can simulate NL by trying random paths for an exponential amount of time and using NL=coNL.
If bounded error is allowed, a complete promise or approximation problem is estimating stationary distribution for an ergodic Markov chain. The complexity class is not known to equal PL, and an attempt to simulate PL through blackbox probability amplification fails: Despite unbounded time, bounded error logspace machines cannot distinguish a random coin from one that lands head Template:Tmath of the time where Template:Tmath grows superpolynomially.
For unbounded error logspace machines, unbounded time can be reduced to polynomial time as follows. Computing acceptance probability can be reduced to solving a linear system. For each state Template:Mvar, add a variable Template:Mvar — probability of acceptance if current state is i. If there is no path from i to Accept, set Template:Math, and otherwise express Template:Mvar in terms of states immediately reachable from state i. The system can be solved using determinants, and testing whether is in PL.[note 1] One complication is that the coefficients are in NL (using NL=coNL). We address it by guessing a 'proof' for each coefficient value, failing if the guess does not work, and ensuring that all paths make the same number of guesses for each coefficient.
Notes
References
Cite error: <ref> tags exist for a group named "note", but no corresponding <references group="note"/> tag was found