Turing Machine Time Complexity (DTIME) Measure

From GM-RKB
Jump to navigation Jump to search

A Turing Machine Time Complexity (DTIME) Measure is a Computational Time Complexity Measure that represents the amount of time that takes a computing system to solve a computational task using a certain algorithm.



References

2020a

2020b

  • (Wikipedia, 2020) ⇒ https://en.wikipedia.org/wiki/Time_hierarchy_theorem Retrieved:2020-4-5.
    • In computational complexity theory, the time hierarchy theorems are important statements about time-bounded computation on Turing machines. Informally, these theorems say that given more time, a Turing machine can solve more problems. For example, there are problems that can be solved with n2 time but not n time.

      The time hierarchy theorem for deterministic multi-tape Turing machines was first proven by Richard E. Stearns and Juris Hartmanis in 1965. It was improved a year later when F. C. Hennie and Richard E. Stearns improved the efficiency of the Universal Turing machine. Consequent to the theorem, for every deterministic time-bounded complexity class, there is a strictly larger time-bounded complexity class, and so the time-bounded hierarchy of complexity classes does not completely collapse. More precisely, the time hierarchy theorem for deterministic Turing machines states that for all time-constructible functions f(n), : [math]\displaystyle{ \mathsf{DTIME}\left(o\left(\frac{f(n)}{\log f(n)}\right)\right) \subsetneq \mathsf{DTIME}(f(n)) }[/math] . The time hierarchy theorem for nondeterministic Turing machines was originally proven by Stephen Cook in 1972. It was improved to its current form via a complex proof by Joel Seiferas, Michael Fischer, and Albert Meyer in 1978. Finally in 1983, Stanislav Žák achieved the same result with the simple proof taught today. The time hierarchy theorem for nondeterministic Turing machines states that if g(n) is a time-constructible function, and f(n+1) = o(g(n)), then : [math]\displaystyle{ \mathsf{NTIME}(f(n)) \subsetneq \mathsf{NTIME}(g(n)) }[/math] . The analogous theorems for space are the space hierarchy theorems. A similar theorem is not known for time-bounded probabilistic complexity classes, unless the class also has one bit of advice.


2015

2006