1 / 50

Introduction to Computability Theory

Introduction to Computability Theory. Lecture11: The Halting Problem Prof. Amos Israeli. The Halting Problem. In this lecture we present an undecidable language.

yves
Download Presentation

Introduction to Computability Theory

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction to Computability Theory Lecture11: The Halting Problem Prof. Amos Israeli

  2. The Halting Problem In this lecture we present an undecidable language. The language that we prove to be undecidable is a very natural language namely the language consisting of pairs of the form where Mis a TM accepting string w:

  3. The Halting Problem Since this language requires to decide whether the computation of TM M halts on input w, it is often called The Halting Problem. Theorem The halting problem is Turing Recognizable.

  4. Proof Consider a TM U that gets a pair as input and simulates the run ofM on input w. If M accepts or rejects so does U. Otherwise, U loops. Note:U recognizes ATM ,since it accepts any pair , that is: any pair in which M accepts input w.

  5. Simulating an Input TM On the previous lecture, we detailed the simulation of a DFA by a TM. Simulating one TM by another, using the encoding of the first TM is a very similar process. In the next slide we review the main characteristics of TM N simulating TM M, using M’s encoding <M>.

  6. Simulating an Input TM TM N works as follows: • Mark M’s initial state and w’s initial symbol as the “current state” and “current head location”. • Look for M’s next transition on the description of its transition function. • Execute M’s transition.

  7. Simulating an Input TM • Move M’s “current state” and “current head location” to their new places. • If M’s new state is a deciding state decide according to the state, otherwise – repeat stages 2-5.

  8. Diagonalization Our goal in this lecture is to prove that ATM is not decidable. The proof uses a common mathematical technique known as Diagonalization. Diagonalization was first used by Cantor when he found a way to distinguish between several types of infinite sets.

  9. Cardinality Cantor dealt with questions like: How many natural numbers are there? Infinity! How many real numbers are there? Infinity! Does the amountofnatural numbers equal to the amount of real numbers? How is the size of infinite sets measured?

  10. Cardinality Cantor’s answer to these question was the notion of Cardinality. The cardinality of a set is a property marking its size. Two sets has the same cardinality if there is a correspondence between their elements

  11. Intuitive Notion of Correspondence At this point of the lecture, think about a correspondence between sets A and B as 2 lists: A list of A’s elements and in parallel a list of B’s elements. These 2 lists are juxtaposed so that each element of A corresponds to a unique element of B.

  12. Example Clearly, the cardinality of A is equal to the cardinality of B. How about the cardinality of infinite sets?

  13. Example How about the cardinality of infinite sets? Is the cardinality of natural numbers larger than the cardinality of even natural numbers? Intuitively, the cardinality of any set should be larger that the cardinality of any of its proper subsets. Alas, our intuition of sets is driven by our daily experience with finite sets.

  14. Example So let us try to create a correspondence between the natural numbers the even natural numbers? Indeed defines the wanted correspondence between the 2 sets.

  15. Example So the cardinality of N is equal to the cardinality ofEN.

  16. Countable Sets This last example suggests the notion of Countable Sets: A set A is countable if it is either finiteor its cardinality is equal to the cardinality of N. A cool way of looking at countable sets is:“A set is countable if a list of its elements can be created”.

  17. Countable Sets “A set is countable if a list of its elements can be created”. Note: This list does not have to be finite, but for each natural number i, one should be able to specify the i-th element on the list. For example, for the set EN the i-th element on the list is 2i .

  18. Countable Sets We just proved that EN, the set of even natural numbers is countable. What about the set of rational numbers? Is the set Q of rational numbers countable? Can its elements be listed?

  19. The set of Rationals is Countable Theorem The set of rational numbers is countable. Proof In order to prove this theorem we have to show how a complete list of the rational numbers can be formed.

  20. The set of Rationals is Countable Recall that each natural number is defined by a pair of natural numbers. One way to look at the Rationals is by listing them in an infinite Rectangle. ……… ……… ……… ……… ……… ………………………………………………...

  21. The set of Rationals is Countable How can we form a list including all these numbers? If we first list The first row – We will never reach the second. ……… ……… ……… ……… ……… ………………………………………………...

  22. The set of Rationals is Countable One way to do it is to start from the upper left corner, and continue in this fashion

  23. The set of Rationals is Countable Note that some rational numbers appear more than once. For example: all numbers on the main diagonal are equal to 1, so this list is not final. In order to compute the actual place of a given rational, we need to erase all duplicates, but this is a technicality…

  24. So perhaps all sets are countable Can you think of any infinite set whose elements cannot be listed in one after the other? Well, there are many: Theorem The set of infinite binary sequences is not countable.

  25. Uncountable Sets Assume that there exists a list of all binary sequences. Such a list may look like this: ……… ……… ……… ……… ……… …………………….................

  26. Uncountable Sets But can you be sure that all sequences are in this list? In fact, There exist many sequences that are not on the list: ……… ……… ……… ……… ……… …………………….................

  27. Uncountable Sets Consider for example S=0,0,1,1,0,… . The sequence S is formed so that 1st elt. Of 1st seq. 2nd elt. Of 2nd seq. 3rd elt. Of 3rd seq. And so on … ……… ……… ……… ……… ……… ……………………...........

  28. Uncountable Sets In general: The i-th element of S, differs from the i-th element of the i-th sequence in the list. Note: the i-th element of the i-th sequence in the list is always the element on the diagonal. Can the sequence S appear on the list?

  29. Uncountable Sets Assume there exists an index j such that In this case, But by definition: Contradiction!!

  30. Uncountable Sets For any sequence on the list, , the sequence differs from by its element on the diagonal, that is: , so cannot be on the list. For obvious reasons, this technique is called Diagonalization.

  31. Uncountable Sets We just used diagonalization to prove that the set of infinite binary sequences is uncountable. Can a a similar proof for the set of real numbers?

  32. Turing Unrecognizable Languages Corollary Some Languages are not Turing-recognizable. Proof For any (finite) alphabet, , the set of (finite) strings , is countable. A list of all elements in is obtained by first listing strings of length 1, then 2, …, then n…

  33. Proof (cont.) The set of all TM-s is also countable because every TM, , can be described by its encoding , which is a string over . So the set of TM-s corresponds to a subset of . Note: Here we use the (unproven but correct) fact that the cardinality of a set is always not greater then the cardinality of any of its supersets.

  34. Proof (cont.) Since each TM recognizes exactly a single language, a list of all TM-s can be used as a list of all recognizable languages. If we show that the set of languages over is uncountable,we can deduce that at least a single language is not on the list, that is: it is not recognized by any TM.

  35. Proof (cont.) We have already seen that the set of infinite binary sequences is uncountable. If we form a correspondence between the set of languages and the set of infinite binary sequences we will show that the set of languages is uncountable.

  36. Proof (cont.) Consider a fixed list l of all words . The correspondence is formed as follows: For every infinite binary sequence S, corresponds the language: QED

  37. The Language ___ Is Undecidable So far we proved the existence of a language which is not Turing recognizable. Now we continue our quest to prove: Theorem The languageis undecidable.

  38. The Language ___ Is Undecidable Before we start the proof let us consider two ancient questions: Question1: Can god create a boulder so heavy that god cannot lift?

  39. The Language ___ Is Undecidable Question2: In the small town of L.J. there is a single barber: Over the barber’s chair there is a note saying:“I will shave you on one condition: Thaw shall never shave thyself!!!” Who Shaves the Barber?

  40. Proof Assume, by way of contradiction, that is decidable and let H be a TM deciding . That is Define now another TM new D that uses H as a subroutine as follows:

  41. Proof Define now another TM new D that uses H as a subroutine as follows: D=“On input where Nis a TM: 1. Run H on input . 2. Output the opposite of H’s output namely: If Haccepts reject, otherwise accept.“

  42. Proof Note: What we do here is taking advantage of the two facts: Fact1: TM M should be able to compute with any string as input. Fact2: The encoding of M, , is a string.

  43. Proof Running a machine on its encoding is analogous to using a compiler for the computer language Pascal to, that is written in Pascal, to compile itself. As we recall from the two questions self-reference is sometimes means trouble (god forbid…)

  44. Proof What we got now is: Consider now the result of running D with input . What we get is:

  45. Proof So if Daccepts, it rejects wand if it rejects it accepts. Double Trouble. And it all caused by our assumption that TM H exists!!!

  46. Proof Review • Define . • Assume that id decidable and let H be a TM deciding it. • Use H to build TM Dthat gets a TM encoding and behaves exactly opposite toH’s behavior, namely:

  47. Proof Review • Run TM D on its encoding and conclude: Contradiction.

  48. So Where is the Diagonalization? The following table describes the behavior of each machine on its encoding:

  49. So Where is the Diagonalization? This table describes the behavior of TM H. Note: TMHrejects where loops.

  50. Proof Review Now TM D is added to the table…

More Related