theory of computation
play

Theory of Computation Course note based on Computability, Complexity, - PowerPoint PPT Presentation

A Universal Program (4) Theory of Computation Course note based on Computability, Complexity, and Languages: Fundamentals of Theoretical Computer Science , 2nd edition, authored by Martin Davis, Ron Sigal, and Elaine J. Weyuker. course note


  1. A Universal Program (4) Theory of Computation Course note based on Computability, Complexity, and Languages: Fundamentals of Theoretical Computer Science , 2nd edition, authored by Martin Davis, Ron Sigal, and Elaine J. Weyuker. course note prepared by Tyng–Ruey Chuang Institute of Information Science, Academia Sinica Department of Information Management, National Taiwan University Week 4, Spring 2010 1 / 30

  2. A Universal Program (4) About This Course Note ◮ It is prepared for the course Theory of Computation taught at the National Taiwan University in Spring 2010. ◮ It follows very closely the book Computability, Complexity, and Languages: Fundamentals of Theoretical Computer Science , 2nd edition, by Martin Davis, Ron Sigal, and Elaine J. Weyuker. Morgan Kaufmann Publishers. ISBN: 0-12-206382-1. ◮ It is available from Tyng-Ruey Chuang’s web site: http://www.iis.sinica.edu.tw/~trc/ and released under a Creative Commons “Attribution-ShareAlike 3.0 Taiwan” license: http://creativecommons.org/licenses/by-sa/3.0/tw/ 2 / 30

  3. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) Coding Programs by Numbers For each program P in language S , we will devise a method ◮ to associate a unique number, #( P ), to the program P , and ◮ to retrieve a program from its number. In addition, for each number n ∈ N , we will retrieve from n a program. 3 / 30

  4. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) Arranging Variables and Labels ◮ The variables are arranged in the following order Y , X 1 , Z 1 , X 2 , Z 2 , X 3 , Z 3 , . . . ◮ The labels are arranged in the following order A 1 , B 1 , C 1 , D 1 , E 1 , A 2 , B 2 , C 2 , D 2 , E 2 , A 3 , . . . ◮ #( V ) is the position of variable V in the ordering. So is #( L ) for label L . ◮ Thus, #( X 2 ) = 4 , #( Z 1 ) = #( Z ) = 3 , #( E ) = 5 , #( B 2 ) = 7 , . . . . 4 / 30

  5. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) Coding Instructions by Numbers Let I be an instruction of language S . We write #( I ) = � a , � b , c �� where 1. if I is unlabeled, then a = 0; if I is labeled L , then a = #( L ); 2. if variable V is mentioned in I , then c = #( V ) − 1; 3. if the statement in I is V ← V or V ← V + 1 or V ← V − 1 then b = 0 or 1 or 2, respectively; 4. if the statement in I is IF V � = 0 GOTO L ′ then b = #( L ′ ) + 2. 5 / 30

  6. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) Coding Instructions by Numbers, Examples ◮ The number of the unlabeled instruction X ← X + 1 is � 0 , � 1 , 1 �� = � 0 , 5 � = 10 . ◮ The number of the labeled instruction [ A ] X ← X + 1 is � 1 , � 1 , 1 �� = � 1 , 5 � = 21 . 6 / 30

  7. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) Retrieving The Instruction from A Number For any given number q , there is a unique instruction I with #( I ) = q . How? ◮ First we compute l ( q ). If l ( q ) = 0, I is unlabeled; otherwise I has the l ( q )th label L in our list. ◮ Then we compute i = r ( r ( q )) + 1 to locate the i th variable V in our list as the variable mentioned in I . ◮ Then the statement in I will be V ← V if l ( r ( q )) = 0 V ← V + 1 if l ( r ( q )) = 1 V ← V − 1 if l ( r ( q )) = 2 IF V � = 0 GOTO L ′ if j = l ( r ( q )) − 2 > 0 and L ′ is the j th label in the list. 7 / 30

  8. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) Coding Programs by Numbers, Finally Let a program P consists of the instructions I 1 , I 2 , . . . , I k . Then we set #( P ) = [#( I 1 ) , #( I 2 ) , . . . , #( I k )] − 1 We call #( P ) the number of program P . Note that the empty program has number 0. 8 / 30

  9. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) Coding Programs by Numbers, Examples Consider the following “nowhere defined” program P [ A ] X ← X + 1 IF X � = 0 GOTO A Let I 1 and I 2 , respectively, be the first and the second instruction in P , then #( I 1 ) = � 1 , � 1 , 1 �� = � 1 , 5 � = 21 #( I 2 ) = � 0 , � 3 , 1 �� = � 0 , 23 � = 46 Therefore #( P ) = 2 21 · 3 46 − 1 9 / 30

  10. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) Coding Programs by Numbers, Examples What is the program whose number is 199? 10 / 30

  11. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) Coding Programs by Numbers, Examples What is the program whose number is 199? We first compute 199 + 1 = 200 = 2 3 · 3 0 · 5 2 = [3 , 0 , 2] Thus, if #( P ) = 199, then P consists of 3 instructions whose numbers are 3, 0, and 2. As 3 = � 2 , 0 � = � 2 , � 0 , 0 �� 2 = � 0 , 1 � = � 0 , � 1 , 0 �� We conclude that P is the following program [ B ] Y ← Y Y ← Y Y ← Y + 1 This is not a very interesting program, as it just computes f ( x ) = 1. 10 / 30

  12. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) A Problem with Number 0 ◮ The number of the unlabeled instruction Y ← Y is � 0 , � 0 , 0 �� = � 0 , 0 � = 0 ◮ By the definition of G¨ odel number, the number of a program will be unchanged if an unlabeled Y ← Y is appended to its end. Note that this does not change the output of the program. ◮ However, we remove even this ambiguity by requiring that the final instruction in a program is not permitted to be the unlabeled statement Y ← Y . ◮ Now, each number determines a unique program (just as each program determines a unique number)! 11 / 30

  13. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) HALT( x , y ): A Predicate on Programs and Their Inputs We define predicate HALT( x , y ) such that HALT( x , y ) ⇔ program number y eventually halts on input x . 12 / 30

  14. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) HALT( x , y ): A Predicate on Programs and Their Inputs We define predicate HALT( x , y ) such that HALT( x , y ) ⇔ program number y eventually halts on input x . Let P be the program such that #( P ) = y . Then � if Ψ (1) 1 P ( x ) is defined, HALT( x , y ) = if Ψ (1) 0 P ( x ) is undefined. 12 / 30

  15. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) HALT( x , y ): A Predicate on Programs and Their Inputs We define predicate HALT( x , y ) such that HALT( x , y ) ⇔ program number y eventually halts on input x . Let P be the program such that #( P ) = y . Then � if Ψ (1) 1 P ( x ) is defined, HALT( x , y ) = if Ψ (1) 0 P ( x ) is undefined. Note that HALT( x , y ) is a total function. 12 / 30

  16. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) HALT( x , y ): A Predicate on Programs and Their Inputs We define predicate HALT( x , y ) such that HALT( x , y ) ⇔ program number y eventually halts on input x . Let P be the program such that #( P ) = y . Then � if Ψ (1) 1 P ( x ) is defined, HALT( x , y ) = if Ψ (1) 0 P ( x ) is undefined. Note that HALT( x , y ) is a total function. But, is HALT( x , y ) computable? 12 / 30

  17. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) HALT( x , y ) Is Not Computable 13 / 30

  18. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) HALT( x , y ) Is Not Computable Theorem 2.1. HALT( x , y ) is not a computable predicate. 13 / 30

  19. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) HALT( x , y ) Is Not Computable Theorem 2.1. HALT( x , y ) is not a computable predicate. Proof. Suppose HALT( x , y ) were computable. Then we could construct the following program P : [ A ] IF HALT( X , X ) GOTO A 13 / 30

  20. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) HALT( x , y ) Is Not Computable Theorem 2.1. HALT( x , y ) is not a computable predicate. Proof. Suppose HALT( x , y ) were computable. Then we could construct the following program P : [ A ] IF HALT( X , X ) GOTO A It is clear that � undefined if HALT( x , x ) Ψ (1) P ( x ) = 0 if ∼ HALT( x , x ). 13 / 30

  21. Coding Programs by Numbers (4.1) A Universal Program (4) The Halting Problem (4.2) Universality (4.3) HALT( x , y ) Is Not Computable Theorem 2.1. HALT( x , y ) is not a computable predicate. Proof. Suppose HALT( x , y ) were computable. Then we could construct the following program P : [ A ] IF HALT( X , X ) GOTO A It is clear that � undefined if HALT( x , x ) Ψ (1) P ( x ) = 0 if ∼ HALT( x , x ). Let #( P ) = y 0 . Then, for all x , HALT( x , y 0 ) ⇔ Ψ (1) P ( x ) is defined ⇔ P halts on x ⇔ ∼ HALT( x , x ) 13 / 30

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