advanced topics in theoretical computer science
play

Advanced Topics in Theoretical Computer Science Part 1: Turing - PowerPoint PPT Presentation

Advanced Topics in Theoretical Computer Science Part 1: Turing Machines and Turing Computability (2) 6.11.2019 Viorica Sofronie-Stokkermans Universit at Koblenz-Landau e-mail: sofronie@uni-koblenz.de 1 Last time Deterministic Turing


  1. Advanced Topics in Theoretical Computer Science Part 1: Turing Machines and Turing Computability (2) 6.11.2019 Viorica Sofronie-Stokkermans Universit¨ at Koblenz-Landau e-mail: sofronie@uni-koblenz.de 1

  2. Last time • Deterministic Turing Machine (DTM) • Configuration, transition between configurations, computation To halt, to hang • Representation of Turing machines - as in definition - diagram (flow-chart) representation 2

  3. Last time • Definitions: TM-computable function • TM part is the set of all partial TM -computable functions f : N k → N • TM is the set of all total TM -computable functions f : N k → N Remark: Restrictions when defining TM and TM part : • Only functions over N • Only functions with values in N (not in N m ) This is not a real restriction: Words from other domains can be encoded as natural numbers. 3

  4. Last time Types of Turing machines: – Standard deterministic Turing Machines (Standard DTM) – Other types of Turing machines: • Tape infinite on both sides • Several tapes • Non-deterministic Turing machines • For every TM with both sides infinite tape which computes a function f or accepts a language L , there exists a standard DTM M ′ which also computes f (resp. accepts L ). • For every k -DTM which computes a function f (or accepts a language L ) there exists a DTM M ′ which computes f (resp. accepts L ). 4

  5. Last time Universal Turing machines: TM which simulates other Turing machines • Universal Turing machine U receives as input (i) the rules of an arbitrary TM M and (ii) a word w . • U simulates M , by always changing the configurations (according to the transition function δ ) the way M would change them. Problem: Turing machines take words (or numbers) as inputs. Can we encode an arbitraty Turing machine as a number or as a word? Solution: G¨ odelisation Method for assigning with every Turing machine a number or a word (G¨ odel number or G¨ odel word) such that the Turing machine can be effectively reconstructed from that number (or word). 5

  6. Last time • Acceptable language • Recursively enumerable language • Enumerable language • Decidable language relationships between these notions. 6

  7. Last time A DTM M decides a language L if • for every input word w ∈ L , M halts with band contents Y (yes) • for every input word w �∈ L , M halts with band contents N (no) L is called decidable if there exists a DTM which decides L . Let L be a language over Σ 0 with #, Y , N �∈ Σ 0 . Let M = ( K , Σ, δ , s ) be a DTM with Σ 0 ⊆ Σ. • M enumerates L if there exists a state q B ∈ K (the blink state) E such that: L = { w ∈ Σ ∗ u ∈ Σ ∗ ; s , # ⊢ ∗ 0 | M q B , # w # u } • L is called recursively enumerable if there exists a DTM M which enumerates L . 7

  8. Acceptable/Recursively enumerable/Decidable Theorem (Acceptable = Recursively enumerable) A language is recursively enumerable iff it is acceptable. Proposition Every decidable language is acceptable. Proposition The complement of any decidable language is decidable. Proposition (Characterisation of decidability) A language L is decidable iff L and its complement are acceptable. 8

  9. Recursively enumerable = Type 0 Formal languages are of type 0 if they can be generated by arbitrary grammars (no restrictions). Proposition The recursively enumerable languages (i.e. the languages acceptable by DTMs) are exactly the languages generated by arbitrary grammars (i.e. languages of type 0). 9

  10. Undecidability of the halting problem M Turing machine �→ G ( M ) G¨ odelisation HALT = { ( G ( M ), w ) | M halts on input w } Is HALT decidable? 10

  11. Undecidability of the halting problem Proposition: HALT = { ( G ( M ), w ) | M halts on input w } is not decidable. Proof: Assume, in order to derive a contradiction, that there exists a TM M H which halts on every input and accepts only inputs in HALT . We construct the following TM: M loops x # x x accept M H Copy Loop reject 1. Let x be the input. 2. Copy the input. Let x # x be the result. 3. Decide using M H if ( x , x ) ∈ HALT 4. If yes: loop 5. If no: halt 11

  12. Undecidability of the halting problem Proposition: HALT = { ( G ( M ), w ) | M halts on input w } is not decidable. Proof: Assume, in order to derive a contradiction, that there exists a TM M H which halts on every input and accepts only inputs in HALT . What happens when we start M with input G ( M )? loops M x # x x accept M H Copy Loop reject Case 1: M started with G ( M ) halts: Then ( G ( M ), G ( M )) �∈ HALT Contradiction! Case 2: M started with G ( M ) does not halt: Then ( G ( M ), G ( M )) ∈ HALT Contradiction! 12

  13. Undecidability proofs: Example Theorem. K = { G ( M ) | M halts for input G ( M ) } is acceptable but undecidable. Proof: Undecidable: Similar to the undecidability proof for HALT . Acceptable: M K := M prep U , ( U universal TM; M prep brings tape in form required by U ). Reformulation using numbers instead of words: G¨ odelization �→ G¨ odel numbers Let M 0 , M 1 , . . . , M n , . . . be an enumeration of all Turing Machines M n is the TM with G¨ odel number n . K = { n | M n halts on input n } 13

  14. Today • How to prove that a language is undecidable? 14

  15. Undecidability proofs Proof via reduction • L 1 , L 2 languages • L 1 known to be undecidable • To show: L 2 undecidable • Idea: Assume L 2 decidable. Let M 2 be a TM which decides L 2 . Show that then we can construct a TM which decides L 1 . For this, we have to find a computable function f which transforms an instance of L 1 into an instance of L 2 A w ( w ∈ L 1 iff f ( w ) ∈ L 2 ) Let M f be the TM which computes f . Construct M 1 = M f M 2 . Then M 1 decides L 1 . 15

  16. Undecidability proofs Proof via reduction Definition. L 1 , L 2 languages. L 1 ≤ L 2 ( L 1 is reducible to L 2 ) if there exists a computable function f such that: A w ( w ∈ L 1 iff f ( w ) ∈ L 2 ) Theorem. If L 1 ≤ L 2 and L 1 is undecidable then L 2 is undecidable. 16

  17. Undecidability proofs: Example Theorem. H 0 = { n | M n halts for input 0 } is undecidable. Proof: We show that K can be reduced to H 0 , i.e. that there exists a TM computable function f : N → N such that i ∈ K iff f ( i ) ∈ H 0 . Only main idea here, we will come back to this example later 17

  18. Undecidability proofs: Example Theorem. H 0 = { n | M n halts for input 0 } is undecidable. Proof: We show that K can be reduced to H 0 , i.e. that there exists a TM computable function f : N → N such that i ∈ K iff f ( i ) ∈ H 0 . Want: f ( i ) = j iff ( M i halts for input i iff M j halts for input 0). For every i there exists a TM A i s.t.: s , ## ⊢ ∗ A i h , # | i #. Let M K be the TM which accepts K . We define f ( i ) := j where j is the G¨ odel number of M j = A i M K . f is TM computable. We show that f has the desired property: f ( i ) = j ∈ H 0 iff M j = A i M K halts for input 0 (##) iff M K halts for input i iff i ∈ K . 18

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend