Log-space transducer

A log space transducer (LST) is a type of Turing machine used for log-space reductions.

A log space transducer, , has three tapes:

will be designed to compute a log-space computable function (where is the alphabet of both the input and output tapes). If is executed with on its input tape, when the machine halts, it will have remaining on its output tape.

A language is said to be log-space reducible to a language if there exists a log-space computable function, , which will convert an input from problem into an input to problem . I.E. .

This seems like a rather convoluted idea, but it has two useful properties that are desirable for a reduction:

  1. The property of transitivity holds. (A reduces to B and B reduces to C implies A reduces to C).
  2. If A reduces to B, and B is in L, then we know A is in L.

Transitivity holds because it is possible to feed the output tape of one reducer (AB) to another (BC). At first glance, this seems incorrect because the AC reducer needs to store the output tape from the AB reducer onto the work tape in order to feed it into the BC reducer, but this is not true. Each time the BC reducer needs to access its input tape, the AC reducer can re-run the AB reducer, and so the output of the AB reducer never needs to be stored entirely at once.

References


This article is issued from Wikipedia - version of the 11/3/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.