Theory of Computability

Slides:



Advertisements
Similar presentations
Variants of Turing machines
Advertisements

1 Nondeterministic Space is Closed Under Complement Presented by Jing Zhang and Yingbo Wang Theory of Computation II Professor: Geoffrey Smith.
The class NP Section 7.3 Giorgi Japaridze Theory of Computability.
1 Introduction to Computability Theory Lecture12: Decidable Languages Prof. Amos Israeli.
P and NP Sipser (pages ). CS 311 Fall Polynomial time P = ∪ k TIME(n k ) … P = ∪ k TIME(n k ) … TIME(n 3 ) TIME(n 2 ) TIME(n)
FORMAL LANGUAGES, AUTOMATA AND COMPUTABILITY Read sections 7.1 – 7.3 of the book for next time.
CHAPTER 3 The Church-Turing Thesis
Foundations of (Theoretical) Computer Science
Applied Computer Science II Chapter 7: Time Complexity Prof. Dr. Luc De Raedt Institut für Informatik Albert-Ludwigs Universität Freiburg Germany.
CS 310 – Fall 2006 Pacific University CS310 P vs NP the steel cage death match Section 7.2 November 29, 2006.
CS Master – Introduction to the Theory of Computation Jan Maluszynski - HT Lecture NP-Completeness Jan Maluszynski, IDA, 2007
Chapter 2 The Fundamentals: Algorithms, the Integers, and Matrices
Theory of Computing Lecture 15 MAS 714 Hartmut Klauck.
Approximation Algorithms Pages ADVANCED TOPICS IN COMPLEXITY THEORY.
February 18, 2015CS21 Lecture 181 CS21 Decidability and Tractability Lecture 18 February 18, 2015.
The class P Section 7.2 CSC 4170 Theory of Computation.
Umans Complexity Theory Lectures Lecture 1a: Problems and Languages.
Measuring complexity Section 7.1 Giorgi Japaridze Theory of Computability.
The Church-Turing Thesis Chapter 3 Giorgi Japaridze Theory of Computability.
Computability Heap exercise. The class P. The class NP. Verifiers. Homework: Review RELPRIME proof. Find examples of problems in NP.
CSC 3130: Automata theory and formal languages Andrej Bogdanov The Chinese University of Hong Kong Turing Machines.
Automata & Formal Languages, Feodor F. Dragan, Kent State University 1 CHAPTER 7 Time complexity Contents Measuring Complexity Big-O and small-o notation.
Hierarchy theorems Section 9.1 Giorgi Japaridze Theory of Computability.
CSCI 2670 Introduction to Theory of Computing November 17, 2005.
Donghyun (David) Kim Department of Mathematics and Computer Science North Carolina Central University 1 Chapter 7 Time Complexity Some slides are in courtesy.
The Classes L and NL Section 8.4 Giorgi Japaridze Theory of Computability.
Alternation Section 10.3 Giorgi Japaridze Theory of Computability.
Chapter 15 P, NP, and Cook’s Theorem. 2 Computability Theory n Establishes whether decision problems are (only) theoretically decidable, i.e., decides.
Overview of the theory of computation Episode 3 0 Turing machines The traditional concepts of computability, decidability and recursive enumerability.
 2004 SDU 1 Algorithm Informally speaking, an algorithm is a collection of simple instructions for carrying out a task. Example:  Elementary arithmetic.
Theory of Computational Complexity TA : Junichi Teruyama Iwama lab. D3
The NP class. NP-completeness
CSE 105 theory of computation
The Acceptance Problem for TMs
Probabilistic Algorithms
CSC 4170 Theory of Computation The class P Section 7.2.
Time complexity Here we will consider elements of computational complexity theory – an investigation of the time (or other resources) required for solving.
Computability and Complexity
CSC 4170 Theory of Computation The class P Section 7.2.
CSE 105 theory of computation
Courtsey & Copyright: DESIGN AND ANALYSIS OF ALGORITHMS Courtsey & Copyright:
CSCI 2670 Introduction to Theory of Computing
Approximation algorithms
Theory of Computational Complexity
Complexity 6-1 The Class P Complexity Andrei Bulatov.
Intractable Problems Time-Bounded Turing Machines Classes P and NP
Intro to Theory of Computation
Time Complexity We use a multitape Turing machine
CSC 4170 Theory of Computation Space complexity Chapter 8.
Theory of Computability
CSC 4170 Theory of Computation Mapping Reducibility Section 5.3.
CSC 4170 Theory of Computation Time complexity Section 7.1.
CS21 Decidability and Tractability
Time Complexity Classes
CSC 4170 Theory of Computation The class NP Section 7.3.
The Church-Turing Thesis
CSCI 2670 Introduction to Theory of Computing
Theory of Computability
CSC 4170 Theory of Computation Mapping Reducibility Section 5.3.
Theory of Computability
Theory of Computability
Theory of Computability
Variants of Turing machines
Instructor: Aaron Roth
CSE 105 theory of computation
CSC 4170 Theory of Computation Time complexity Section 7.1.
Theory of Computability
Theory of Computability
Intro to Theory of Computation
Presentation transcript:

Theory of Computability Giorgi Japaridze Theory of Computability The class P We saw mapping reducibility. But does it capture our intuitive concept of reducibility in the most general way? It doesn’t. E.g., consider ATM and its complement. Intuitively, they are reducible to one another because a solution to either could be used to solve the other by simply reversing the answer. However, we know that the complement of ATM is not mapping reducible to ATM because the latter is Turing recognizable while the former is not. Now we’ll look at a very general form of reducibility, called Turing reducibility, which captures our intuitive concept of reducibility more closely. Section 7.2

The definition of P and the importance of P Giorgi Japaridze Theory of Computability Definition 7.12 P is the class of languages that are decidable in polynomial time on a deterministic (single-tape) TM. In other words, P = TIME(n1)  TIME(n2)  TIME(n3)  TIME(n4)  … Importance P is invariant for all models of computation that are polynomially equivalent to the deterministic single-tape TM. Here polynomial equivalence means equivalence with only a polynomial difference in running time. Thus, P is a mathematically robust class, not affected by the particulars of the model of computation that we are using. P roughly corresponds to the class of problems that are realistically solvable on a computer. Thus, P is relevant from a practical standpoint.

Analyzing polynomial-time algorithms 7.2.b Giorgi Japaridze Theory of Computability 1. When we only care about polynomiality, algorithms can be described at high level without reference to features of a particular implementation model. Doing so avoids tedious details of tapes and head motions. 2. We describe algorithms with numbered stages. The notion of a stage is Analogous to a step of a TM, though of course, implementing one stage will usually require many TM steps. Asymptotic analysis allows us to ignore this difference. 3. To show that an algorithm runs in polynomial time, it is sufficient to show that: a) There is a polynomial upper bound (usually in big-O notation) on the number of stages that the algorithm uses when it runs on an input of length n, and b) Each stage takes a polynomial number of (actual TM) steps on a reasonable deterministic model. 4. The underlying (and usually non-specified) encoding of objects should be reasonable, and polynomially equivalent to other reasonable encodings. E.g., encoding 12 as 111111111111 is unreasonable as it is exponentially bigger than the binary (or decimal) encoding. 5. Among the reasonable encodings for graphs are encodings of their adjacency matrices. Since the size of such a matrix only polynomially differs from the number of nodes, it is OK if we show the polynomiality of an algorithm in the number of its nodes rather than in the size of its adjacency matrix.

The PATH problem 7.2.c Giorgi Japaridze Theory of Computability PATH = {<G,s,t> | G is a directed graph that has a directed path from s to t} 2 3 1 4 5 8 s 7 6 t 9 12 10 11 14 15 13 16

A polynomial-time algorithm for the PATH problem 7.2.d Giorgi Japaridze Theory of Computability M = “On input <G,s,t> where G is a directed graph and s,t are nodes of G: 1. Mark s. 2. Repeat until no additional nodes are marked: 3. Scan all the edges of G. If an edge (a,b) is found going from a marked node a to an unmarked node b, mark node b. 4. If t is marked, accept. Otherwise reject.” 2 3 1 4 5 8 s 7 6 t 9 12 10 11 14 15 13 16

RELPRIME = {<x,y> | x and y are relatively prime} The RELPRIME problem 7.2.e Giorgi Japaridze Theory of Computability Two numbers are relatively prime iff 1 is the largest integer that evenly divides both of them. Are the following numbers relatively prime? 15 and 27 8 and 9 11 and 19 RELPRIME = {<x,y> | x and y are relatively prime} Is RELPRIME decidable? What is the time complexity of an ad hoc decision algorithm (TM)? But there is a smarter algorithm that runs in polynomial time. It is based on the Euclidean algorithm for finding the greatest common divisor.

A polynomial-time algorithm for the RELPRIME problem Giorgi Japaridze Theory of Computability The Euclidean algorithm: E = “On input <x,y>, where x and y are natural numbers, x>y: 1. Repeat until y=0. 2. Assign x  x mod y. 3. Exchange x and y. 4. Output x.” Testing on <33,15>: Output: 3 What is the time complexity of this algorithm? --- It can be shown to be polynomial because on every iteration of Step 1, the value of x is at most half of the previous value. Now, the following algorithm R solves RELPRIME in polynomial time: R = “On input <x,y>, where x and y are natural numbers: 1. Swap x and y if necessary so that x>y. 2. Run E on <x,y>. 3. If the result is 1, accept. Otherwise reject.

The time complexity of context-free languages Giorgi Japaridze Theory of Computability Theorem 7.16 Every context-free language is a member of P. Specifically, is of complexity O(n3). Proof omitted (and will not be asked).