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 5, Spring 2010 1 / 19

  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 / 19

  3. Universality (4.3) A Universal Program (4) Recursively Enumerable Sets (4.4) The Stepping Function STP A simple modification of the program U n would enable us to prove that following predicate is computable: STP( x 1 , . . . , x n , y , t ) ⇔ Program number y halts after t or fewer steps on inputs x 1 , . . . , x n ⇔ There is a computation of program y of length ≤ t + 1, beginning with inputs x 1 , . . . , x n We simply need to add a counter to determine when we have simulated t steps. However, we can prove a stronger result. 3 / 19

  4. Universality (4.3) A Universal Program (4) Recursively Enumerable Sets (4.4) Function STP is Primitive Recursive Theorem 3.2. For each n > 0, the predicate STP ( n ) ( x 1 , . . . , x n , y , t ) is primitive recursive. ✷ The idea is to provide numeric versions of the notations of snapshot and successor of snapshot, and to show that the necessary functions are primitive recursive. We first define the following functions for extracting the components of the i th instruction of program number y : LABEL( i , y ) = l (( y + 1) i ) VAR( i , y ) = r ( r (( y + 1) i )) + 1 INSTR( i , y ) = l ( r (( y + 1) i )) LABEL ′ ( i , y ) l ( r (( y + 1) i )) ˙ = − 2 4 / 19

  5. Universality (4.3) A Universal Program (4) Recursively Enumerable Sets (4.4) Function STP is Primitive Recursive, Continued Next we define some predicates that indicate, for program y and the snapshot represented by x = � i , s � , where i is the number of the instruction to be executed and s the current state (i.e., variable S in U n ), what kind of action is to be performed next. SKIP( x , y ) ⇔ [INSTR( l ( x ) , y ) = 0 & l ( x ) ≤ Lt ( y + 1)] ∨ [INSTR( l ( x ) , y ) ≥ 2 & ∼ ( p VAR ( l ( x ) , y ) | r ( x ))] INCR( x , y ) ⇔ INSTR( l ( x ) , y ) = 1 DECR( x , y ) ⇔ INSTR( l ( x ) , y ) = 2 & p VAR ( l ( x ) , y ) | r ( x ) BRANCH( x , y ) ⇔ INSTR( l ( x ) , y ) > 2 & p VAR ( l ( x ) , y ) | r ( x ) & ( ∃ i ) ≤ Lt ( y +1) LABEL( i , y ) = LABEL ′ ( l ( x ) , y ) 5 / 19

  6. Universality (4.3) A Universal Program (4) Recursively Enumerable Sets (4.4) Function STP is Primitive Recursive, Continued Now we can define SUCC( x , y ), which for program number y , computes the successor to the snapshot represented by x . SUCC( x , y ) = � l ( x ) + 1 , r ( x ) � if SKIP( x , y )   � l ( x ) + 1 , r ( x ) · p VAR ( l ( x ) , y ) � if INCR( x , y )     � l ( x ) + 1 , r ( x ) / p VAR ( l ( x ) , y ) � if DECR( x , y ) � min i ≤ Lt ( y +1) [LABEL( i , y ) = LABEL ′ ( l ( x ) , y )] , r ( x ) � if BRANCH( x , y )      � Lt ( y + 1) + 1 , r ( x ) � otherwise. 6 / 19

  7. Universality (4.3) A Universal Program (4) Recursively Enumerable Sets (4.4) Function STP is Primitive Recursive, Continued We also need n � INIT ( n ) ( x 1 , . . . , x n ) = � 1 , ( p 2 i ) x i � i =1 which gives the representation of the initial snapshot for input x 1 , . . . , x n , and TERM( x , y ) ⇔ l ( x ) > Lt ( y + 1) which tests whether x represents a terminal snapshot for program y . 7 / 19

  8. Universality (4.3) A Universal Program (4) Recursively Enumerable Sets (4.4) Function STP is Primitive Recursive, Continued Putting these together we can define a primitive recursive function that gives the numbers of the successive snapshots produced by a given program: SNAP ( n ) ( x 1 , . . . , x n , y , 0) INIT ( n ) ( X 1 , . . . , x n ) = SNAP ( n ) ( x 1 , . . . , x n , y , i + 1) SUCC(SNAP ( n ) ( x 1 , . . . , x n , y , i ) , y ) = Thus, STP ( n ) ( x 1 , . . . , x n , y , t ) ⇔ TERM(SNAP ( n ) ( x 1 , . . . , x n , y , t ) , y ) It is clear that STP ( n ) ( x 1 , . . . , x n , y , t ) is primitive recursive. ✷ 8 / 19

  9. Universality (4.3) A Universal Program (4) Recursively Enumerable Sets (4.4) A Normal Form for Partial Computable Functions Theorem 3.3. Let f ( x 1 , . . . , x n ) be a partially computable function. Then there is a primitive recursive predicate R ( x 1 , . . . , x n , y ) such that f ( x 1 , . . . , x n ) = l (min R ( x 1 , . . . , x n , z )) z ✷ Proof . Let y 0 be the number of a program that computes f ( x 1 , . . . , x n ). Let R ( x 1 , . . . , x n , z ) be the following predicate STP ( n ) ( x 1 , . . . , x n , y 0 , r ( z )) ( r (SNAP ( n ) ( x 1 , . . . , x n , y 0 , r ( z )))) 1 = l ( z ) & 9 / 19

  10. Universality (4.3) A Universal Program (4) Recursively Enumerable Sets (4.4) A Normal Form for Partial Computable Functions Theorem 3.3. Let f ( x 1 , . . . , x n ) be a partially computable function. Then there is a primitive recursive predicate R ( x 1 , . . . , x n , y ) such that f ( x 1 , . . . , x n ) = l (min R ( x 1 , . . . , x n , z )) z ✷ Proof . Let y 0 be the number of a program that computes f ( x 1 , . . . , x n ). Let R ( x 1 , . . . , x n , z ) be the following predicate STP ( n ) ( x 1 , . . . , x n , y 0 , r ( z )) ( r (SNAP ( n ) ( x 1 , . . . , x n , y 0 , r ( z )))) 1 = l ( z ) & If the above predicate is defined, then for any such z , the computation by program y 0 terminates in r ( z ) or few steps, and l ( z ) is the value held in the output variable Y . 9 / 19

  11. Universality (4.3) A Universal Program (4) Recursively Enumerable Sets (4.4) A Normal Form for Partial Computable Functions Theorem 3.3. Let f ( x 1 , . . . , x n ) be a partially computable function. Then there is a primitive recursive predicate R ( x 1 , . . . , x n , y ) such that f ( x 1 , . . . , x n ) = l (min R ( x 1 , . . . , x n , z )) z ✷ Proof . Let y 0 be the number of a program that computes f ( x 1 , . . . , x n ). Let R ( x 1 , . . . , x n , z ) be the following predicate STP ( n ) ( x 1 , . . . , x n , y 0 , r ( z )) ( r (SNAP ( n ) ( x 1 , . . . , x n , y 0 , r ( z )))) 1 = l ( z ) & If the above predicate is defined, then for any such z , the computation by program y 0 terminates in r ( z ) or few steps, and l ( z ) is the value held in the output variable Y . If on the other hand, the predicate is undefined, then STP ( n ) ( x 1 , . . . , x n , y 0 , t ) must be false for all t . That is, f ( x 1 , . . . , x n ) ↑ . ✷ 9 / 19

  12. Universality (4.3) A Universal Program (4) Recursively Enumerable Sets (4.4) A Characterization of Partially Computable Functions Theorem 3.4. A function is partially computable if and only if it can be obtained from the initial functions by a finite number of applications of composition, recursion, and minimalization. ✷ 10 / 19

  13. Universality (4.3) A Universal Program (4) Recursively Enumerable Sets (4.4) A Characterization of Partially Computable Functions Theorem 3.4. A function is partially computable if and only if it can be obtained from the initial functions by a finite number of applications of composition, recursion, and minimalization. ✷ Proof. ( ⇐ ) That every function which can be so obtained is partially computable is a consequence of Theorems 1.1, 2.1, 2,2, 3.1, and 7.2 in Chapter 3. That is, there is a program in S for the function so obtained. 10 / 19

  14. Universality (4.3) A Universal Program (4) Recursively Enumerable Sets (4.4) A Characterization of Partially Computable Functions Theorem 3.4. A function is partially computable if and only if it can be obtained from the initial functions by a finite number of applications of composition, recursion, and minimalization. ✷ Proof. ( ⇐ ) That every function which can be so obtained is partially computable is a consequence of Theorems 1.1, 2.1, 2,2, 3.1, and 7.2 in Chapter 3. That is, there is a program in S for the function so obtained. ( ⇒ ) Given a partially computable function — a program in language S — Theorem 3.3 in this Chapter show how to express this function in the form l (min R ( x 1 , . . . , x n , z )) z where R is a primitive recursive predicate. Finally, R is used in a minimalization and then composed with the primitive recursive function l . ✷ 10 / 19

  15. Universality (4.3) A Universal Program (4) Recursively Enumerable Sets (4.4) A Characterization of Computable Functions When min z R ( x 1 , . . . , x n , z ) is a total function, we say that we are applying the operation of proper minimalization to R . Now, if l (min R ( x 1 , . . . , x n , z )) z is total, then R ( x 1 , . . . , x n , z ) must be total too. Hence we have: Theorem 3.5. A function is computable if and only if it can be obtained from the initial functions by a finite number of applications of composition, recursion, and proper minimalization. ✷ 11 / 19

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