Turing Machines Homework Before We Start Languages Now Our Picture Looks Like Turing Machine

Total Page:16

File Type:pdf, Size:1020Kb

Turing Machines Homework Before We Start Languages Now Our Picture Looks Like Turing Machine Homework • Homework #5 Turing Machines – Returned today • Homework #7 (due Thursday) – Help after lecture And the languages they handle Before We Start Languages • Any questions? • Is that your final answer? – What is a language? – What is a class of languages? Now our picture looks like Turing Machine Context Free Languages • A Machine consists of: – A state machine Deterministic Context Free Languages – An input tape – A movable r/w tape head Regular Languages • A move of a Turning Machine Finite – Read the character on the tape at the current position of Languages the tape head – Change the character on the tape at the current position of the tape head – Move the tape head We’re going to start to look at – Change the state of the machine based on current state languages out here and character read 1 Turing Machine Turing Machine • Tape that holds • In the original Turing Machine Input tape (input/memory) ... character string – The read tape was infinite in both directions Read head • Movable tape head that – The text describes a semi-infinite TM where reads and writes • The tape is bounded on the left and infinite on the State character right Machine • It can be shown that the semi-infinite TM is • Machine that changes (program) equivalent to the basic TM. state based on what is – As not to confuse, I’ll follow the conventions in read in the book…(as much as that bothers me!) Turing Machines Turing Machines • About the input tape • About the machine states – Bounded to the left, infinite to the right – A Turing Machine does not have a set of – All cells on the tape are originally filled with a accepting states special “blank” character ∆ – Instead, each TM has a special halting state, h. – Tape head is read/write • Once in the halting state, the machine halts. – Tape head can not move to the left of the start – Unlike PDAs, the basic TM is deterministic! of the tape • If it tries, the machine “crashes” Turing Machines Turing Machines • Let’s formalize this • Transition function: – A Turing Machine M is a 5-tuple: – δ: Q x (Γ∪{ ∆ }) → (Q ∪ {h}) x (Γ∪{ ∆ }) x {R, L, Σ Γ δ S} – M = (Q, , , q0, ) where • Q = a finite set of states (assumed not to contain the halting state h) – Input: • Σ = input alphabet (strings to be used as input) • Current state • Γ = tape alphabet (chars that can be written onto the tape. • Tape symbol read at current position of tape head Includes symbols from Σ) – Output: • Both Σ and Γ are assumed not to contain the “blank” symbol • State in which to move the machine (can be the halting state) • δ = transition function • Tape symbol to write at the current position of the tape head (can be the “blank” symbol) • Direction in which to move the tape head (R = right, L = left, S= stationary) 2 Turing Machine Turing Machine • Accepting a string • Running a Turing Machine – A string x is accepted by a TM, if – The execution of a TM can result in 4 possible • Starting in the initial configuration cases: • With x on the input tape • The machine “halts” (ACCEPT) • The machine eventually ends up in the halting state. • The machine has nowhere to go (REJECT) –I.e. • The machine “crashes” (REJECT) ∆ * • The machine goes into an “infinite loop” (REJECT •(q0, x) a (h, xay) – for x,y ∈(Γ∪{∆})*, a ∈(Γ∪{∆}) but keeps us guessing!) Turing Machine Computation with Turing Machines • Language accepted by a TM • Computing functions with TMs – The language accepted by a TM is the set of all – The result of the function applied to an input input strings x on which the machine halts. string x, will be left on the tape when the machine halts. – Functions with multiple arguments can be placed on the input tape with arguments separated by blanks. • Questions? Computation with Turing Machines Computation with Turing Machines • Computing functions with TMs • Computing functions with TMs – Formally, – Formally (with multiple arguments) Σ Γ δ Σ Γ δ • Let T = (Q, , , q0, ) be a TM and let f be a • Let T = (Q, , , q0, ) be a TM and let f be a partial function on Σ*. We say T computes f if for partial function on (Σ*) k. We say T computes f if ∈Σ* every x where f is defined: for every (x1, x2. …, xk) where f is defined: ∆ * ∆ ∆ ∆ ∆ * ∆ –(q0, x) a (h, f(x)) –(q0, x1 x2… xk) a (h, f(x1, x2. …, xk)) • And for every other x, T fails to halt on input x. • And for every other k-tuple, T fails to halt on input x. 3 Computation with Turing Machines TMs and languages • Characteristic function of a set: • Two classes of languages that involve TMs: – For any language L, the characteristic function is defined as: – Languages, L accepted by TM •1 if x ∈ L • Halts on x ∈L, “rejects” on x ∉L • 0 otherwise – Languages, L recognized by a TM – If a TM computes the characteristic function of a • TM computes the characteristic function of L language, it will always halt with either a 1 or 0 left on • Halts on all x the tape • Give yes/no answer as to whether x ∈L • This is stronger than saying that x is accepted by the TM since if x ∉ L, for a TM that accepts L, there is no guarantee that the the machine will halt. TMs and languages TMs and languages • Two classes of languages that involve TMs: • First observation: – A language is recursively enumerable if there is – Every recursive language is also recursively a TM that accepts it enumerable – A language is recursive if there is a TM that • Modify the TM that recognizes the language so that recognizes it. it goes into a “nowhere state” just before placing the 0 on the tape indicating that a string is not in the language. TMs and languages TMs and languages • Game plan Is there something out 1. Show that there exists a language that is not Recursively here recursively enumerable Enumerable 2. Show that there exists a language that is recursively enumerable but not recursive. Recursive Is there something in here 4 A language that is not recursively enumerable Universal Turing Machine • Sorry, no pumping Lemma for TMs! • Universal Turing Machine –A TM Tu that takes as input, an encoded version of another TM M’ and an input to M’. • Instead we introduce the notion of a – M will simulate the processing of M’ Universal Turning Machine • If M’ halts on input x, Tu will halt • If M’ rejects on input x,Tu will reject. –Tu is a general purpose TM • M’ is a program run on the general purpose TM Universal Turing Machine Universal Turing Machine • Encoding scheme • Encoding scheme – We need a way to encode a TM so that it can be – Associate states, symbols, and directions with provided as input to T u binary numbers: – Define sets: • States: • = {q , q , … } = set of all possible states that may appear in Q 1 2 → any TM – s(h) 0 → i+1 – s(qi) 0 • S = {a1, a2, a3, …} = set of all possible tapes symbols that can be written on any TM. • Symbols –So for any TM –s(∆) → 0 ⊆ Γ⊆ → i+1 •Q Q and S – s(ai) 0 Universal Turing Machine Universal Turing Machine • Encoding scheme • Encoding scheme – Associate states, symbols, and directions with – Encoding transitions: binary numbers: • Encode each state, symbol, direction • Directions: • Separate by 1’a – s(S) → 0 – The transition δ (p,a) = (q, b, D) can be → – s(L) 00 encoded as: – s(R) → 000 • s(p)1s(a)1s(q)1s(b)1s(D) 5 Universal Turing Machine Universal Turing Machine • Encoding • The input to Tu will be – Encoding for a TM – an encoded TM and • Encode the start state – a string x to run on that TM • Encode each of it’s moves – We encode x by individually encoding the • Separate by 1’s characters of x (separated by 1’s) – e(T) = s(q)1e(m )1e(m )1…1e(m )1 1 2 k •x = z1z2…zn • e(x) = s(z1)1s(z2)1…1s(zn)1 Universal Turing Machine Universal Turing Machine • Encoding Scheme • Encoding example – Finally, the description of the TM and the – States •q– state 1 encoding of the string to run on the TM will be 0 • p – state 2 separated by 2 1’s • s – state 3 • Input to Tu – Symbols – e(M)11e(x) • a – symbol 1 • b – symbol 2 Universal Turing Machine Universal Turing Machine • Encoding example • Encoding scheme – States • s (h) = 0 – The actual scheme isn’t really important (in •s(q) = 00 0 fact, there are many) • s(p) = 000 • s(r) = 0000 – What is important is that we can encode a TM – Symbols and it’s input as a binary string. •s(∆) = 0 • s(a) = 00 • s(b) = 000 001 00101000101 000 – Directions • s(S) → 0 •s(L) → 00 • s(R) → 000 6 Universal Turing Machine Universal Turing Machine • For the mathematically inclined… • How it works – The set of all TMs is countably infinite –3 tape TM • We can define a one-to-one and onto function • Tape 1 – Input and output tape between the set of TMs and the set of natural • Tape 2 – Working tape numbers { 0, 1, 2, …} • Tape 3 – encoded form of the state that machine being simulated is in – Note that a 3 tape TM is equivalent to a “basic” TM. Universal Turing Machine Universal Turing Machine • How it works • On a single move, • How it works ... – The symbol on each – When we start ∆e(T)11e(x) is on tape 1 tape is read – Step 1: Move e(x) from tape 1 to tape 2 and ..
Recommended publications
  • Computability and Complexity
    Computability and Complexity Lecture Notes Winter Semester 2016/2017 Wolfgang Schreiner Research Institute for Symbolic Computation (RISC) Johannes Kepler University, Linz, Austria [email protected] July 18, 2016 Contents List of Definitions5 List of Theorems7 List of Theses9 List of Figures9 Notions, Notations, Translations 12 1. Introduction 18 I. Computability 23 2. Finite State Machines and Regular Languages 24 2.1. Deterministic Finite State Machines...................... 25 2.2. Nondeterministic Finite State Machines.................... 30 2.3. Minimization of Finite State Machines..................... 38 2.4. Regular Languages and Finite State Machines................. 43 2.5. The Expressiveness of Regular Languages................... 58 3. Turing Complete Computational Models 63 3.1. Turing Machines................................ 63 3.1.1. Basics.................................. 63 3.1.2. Recognizing Languages........................ 68 3.1.3. Generating Languages......................... 72 3.1.4. Computing Functions.......................... 74 3.1.5. The Church-Turing Thesis....................... 79 Contents 3 3.2. Turing Complete Computational Models.................... 80 3.2.1. Random Access Machines....................... 80 3.2.2. Loop and While Programs....................... 84 3.2.3. Primitive Recursive and µ-recursive Functions............ 95 3.2.4. Further Models............................. 106 3.3. The Chomsky Hierarchy............................ 111 3.4. Real Computers................................
    [Show full text]
  • Recursively Enumerable and Recursive Languages
    Review • Languages and Grammars – Alphabets, strings, languages • Regular Languages – Deterministic Finite and Nondeterministic Automata – Equivalence of NFA and DFA Regular Expressions CS 301 - Lecture 23 – Regular Grammars – Properties of Regular Languages – Languages that are not regular and the pumping lemma Recursive and Recursively • Context Free Languages – Context Free Grammars – Derivations: leftmost, rightmost and derivation trees Enumerable Languages – Parsing and ambiguity – Simplifications and Normal Forms – Nondeterministic Pushdown Automata – Pushdown Automata and Context Free Grammars Fall 2008 – Deterministic Pushdown Automata – Pumping Lemma for context free grammars – Properties of Context Free Grammars • Turing Machines – Definition, Accepting Languages, and Computing Functions – Combining Turing Machines and Turing’s Thesis – Turing Machine Variations – Universal Turing Machine and Linear Bounded Automata – Today: Recursive and Recursively Enumerable Languages Definition: A language is recursively enumerable Recursively Enumerable if some Turing machine accepts it and Recursive Languages 1 Let L be a recursively enumerable language Definition: A language is recursive and M the Turing Machine that accepts it if some Turing machine accepts it and halts on any input string For string w : if w∈ L then M halts in a final state In other words: if w∉ L then M halts in a non-final state A language is recursive if there is or loops forever a membership algorithm for it Let L be a recursive language and M the Turing Machine
    [Show full text]
  • Computability
    Computability Tao Jiang Ming Li Department of Computer Science Department of Computer Science McMaster University University of Waterloo Hamilton, Ontario L8S 4K1, Canada Waterloo, Ontario N2L 3G1, Canada Bala Ravikumar Kenneth W. Regan Department of Computer Science Department of Computer Science University of Rhode Island State University of New York at Bu®alo Kingston, RI 02881, USA Bu®alo, NY 14260, USA 1 Introduction In the last two chapters, we have introduced several important computational models, including Turing machines, and Chomsky's hierarchy of formal grammars. In this chapter, we will explore the limits of mechanical computation as de¯ned by these models. We begin with a list of fundamental problems for which automatic computational solution would be very useful. One of these is the universal simulation problem: can one design a single algorithm that is capable of simulating any algorithm? Turing's demonstration that the answer is yes [Turing, 1936] supplied the proof for Babbage's dream of a single machine that could be programmed to carry out any computational task. We introduce a simple Turing machine programming language called \GOTO" in order to facilitate our own design of a universal machine. Next, we describe the schemes of primitive recur- sion and ¹-recursion, which enable a concise, mathematical description of computable functions that is independent of any machine model. We show that the ¹-recursive functions are the same as those computable on a Turing machine, and describe some computable functions including one that solves a second problem on our list. The success in solving ends there, however. We show in the last section of this chapter that 1 all of the remaining problems on our list are unsolvable by Turing machines, and subject to the Church-Turing thesis, have no mechanical or human solver at all.
    [Show full text]
  • Turing Machines: an Introduction
    CIT 596 – Theory of Computation 1 Turing Machines: An Introduction We have seen several abstract models of computing devices: Deterministic Finite Automata, Nondeterministic Finite Automata, Non- deterministic Finite Automata with ²-Transitions, Pushdown Automata, and Deterministic Pushdown Automata. However, none of the above “seem to be” as powerful as a real com- puter, right? We now turn our attention to a much more powerful abstract model of a computing device: a Turing machine. This model is believed to do everything that a real computer can do. °c Marcelo Siqueira — Spring 2005 CIT 596 – Theory of Computation 2 Turing Machines: An Introduction A Turing machine is somewhat similar to a finite automaton, but there are important differences: 1. A Turing machine can both write on the tape and read from it. 2. The read-write head can move both to the left and to the right. 3. The tape is infinite. 4. The special states for rejecting and accepting take immediate effect. °c Marcelo Siqueira — Spring 2005 CIT 596 – Theory of Computation 3 Turing Machines: An Introduction Formally, a Turing machine is a 7-tuple, (Q, Σ, Γ, δ, q0, qaccept, qreject), where Q is the (finite) set of states, Σ is the input alphabet such that Σ does not contain the special blank symbol t, Γ is the tape alphabet such that t∈ Γ and Σ ⊆ Γ, δ : Q × Γ → Q × Γ ×{L, R} is the transition function, q0 ∈ Q is the start state, qaccept ∈ Q is the accept state, and qreject ∈ Q is the reject state, where qaccept 6= qreject.
    [Show full text]
  • Theory of Computation Summary
    Theory of Computation (CS 46) Sets and Functions We write 2A for the set of subsets of A. Definition. A set, A, is countably infinite if there exists a bijection from A to the natural numbers. Note. This allows us to enumerate A, using the order from the bijection. Definition. A set is countable if it is finite or countably infinite. It is uncountable otherwise. Theorem. If A is a subset of a countable set, then A is countable. Theorem. N ´ N is countable. Corollary. A countable union of countable sets is countable. Programs Definition. A program is a finite string (ordered set of symbols) over a finite alphabet. Note. This is distinct from the process associated with the program, which may be infinite. Theorem. The number of programs is countable. Proof. The number of strings of length k is finite, and the set of all programs is the union of this countable number of countable sets. Theorem. The number of functions from the natural numbers to {0,1} is uncountably infinite. Corollary. There are more functions than possible programs. Thus, some functions are not computable. Languages Definition. An alphabet (S) is a finite set of symbols. A string is a finite sequence from an alphabet. The set of all strings over an alphabet is denoted S*. · |w| is the length of the string w. · ak = aa … a (k times) Definition. A language is a subset of S*. The following operations are defined on languages: · L1 + L2 is the union of the two languages · L1 · L2 = {l1l2 | l1 ÎL1 and l2 Î L2} is the concatenation of two languages.
    [Show full text]
  • QUESTION BANK SOLUTION Unit 1 Introduction to Finite Automata
    FLAT 10CS56 QUESTION BANK SOLUTION Unit 1 Introduction to Finite Automata 1. Obtain DFAs to accept strings of a’s and b’s having exactly one a.(5m )(Jun-Jul 10) 2. Obtain a DFA to accept strings of a’s and b’s having even number of a’s and b’s.( 5m )(Jun-Jul 10) L = {Œ,aabb,abab,baba,baab,bbaa,aabbaa,---------} 3. Give Applications of Finite Automata. (5m )(Jun-Jul 10) String Processing Consider finding all occurrences of a short string (pattern string) within a long string (text string). This can be done by processing the text through a DFA: the DFA for all strings that end with the pattern string. Each time the accept state is reached, the current position in the text is output. Finite-State Machines A finite-state machine is an FA together with actions on the arcs. Statecharts Statecharts model tasks as a set of states and actions. They extend FA diagrams. Lexical Analysis Dept of CSE, SJBIT 1 FLAT 10CS56 In compiling a program, the first step is lexical analysis. This isolates keywords, identifiers etc., while eliminating irrelevant symbols. A token is a category, for example “identifier”, “relation operator” or specific keyword. 4. Define DFA, NFA & Language? (5m)( Jun-Jul 10) Deterministic finite automaton (DFA)—also known as deterministic finite state machine—is a finite state machine that accepts/rejects finite strings of symbols and only produces a unique computation (or run) of the automaton for each input string. 'Deterministic' refers to the uniqueness of the computation. Nondeterministic finite automaton (NFA) or nondeterministic finite state machine is a finite state machine where from each state and a given input symbol the automaton may jump into several possible next states.
    [Show full text]
  • Languages and Finite Automata
    class19.pdf • Page 2. RE and Recursive. Linz 6th, §11.1 • Def RE. Linz 6th Definition 11.1 • Def Recursive. Linz 6th Definition 11.2 • Page 28. ∃ lang not RE. Linz 6th, §11.1 • [Thm 11.2 by counting argument] • Thm 11.3 by diagonalization • Page 50. Recursive is 푝푟표푝푒푟 푠푢푏푠푒푡 of RE Linz 6th, §11.1 • [Thm 11.4 If L and L complement both re, then both recursive. L recursive, then L complement recursive.] • Thm 11.5 ∃ a non-recursive, but re language 1 Recursively Enumerable and Recursive Languages 2 Recall Definition (class 18.pdf) Definition 10.4, Linz, 6th, page 279 Let S be a set of strings. An enumeration procedure for S is a Turing Machine that generates all strings of one by one and each string is generated in finite time. 3 Definition: A language is recursively enumerable if some Turing machine accepts it 4 Let L be a recursively enumerable language and M the Turing Machine that accepts it For string w : if w L then halts in a final state if w L then halts in a non-final state or loops forever 5 Definition (11.2, page 287): A language is recursive if some Turing machine accepts it and halts on any input string In other words: A recursive language has a membership algorithm. 6 Let L be a recursive language and M the Turing Machine that accepts it L is a recursive language if there is a Turing Machine M such that For any string w : if w L then halts in a final state if w L then halts in a non-final state 7 We will prove: 1.
    [Show full text]
  • Theory of Computation Final Exam
    Theory of Computation Final Exam. 2007 NAME: .................................................. Student ID.: .................................................. 1 1 (72 pts)) True or false? (Score = Right - 2 Wrong.) Mark ‘O’ for true; ‘×’ for false. i 1. .....O..... {a |i is prime} is not context free. n n 2. .....X..... {(a b) |n ≥ 1} is context free. n m 3. .....X..... {(a b) |m, n ≥ 1} is context free. 4. .....O..... If L1 is context free and L2 is regular, then L1/L2 is context free. (Note that L1/L2 = {x | ∃y ∈ L2, xy ∈ L1}) 5. .....X..... If L1/L2 and L1 are context free, then L2 must be recursive. 6. .....X..... If L1 and L1 ∪ L2 are context free, then L2 must be context free. 7. .....O..... If L1 is context free and L2 is regular, then L1 − L2 is context free. 8. .....X..... If L1 is regular and L2 is context free, then L1 − L2 is context free. 9. .....O..... If L1 is regular and L2 is context-free, then L1 ∩ L2 must be a CFL. 10. .....O..... If L1 and L2 are CFLs, then L1 ∪ L2 must be a CFL. R R 11. .....O..... If L is context free, then L (={x |x ∈ L}) is also context free. 12. .....X..... Nondeterministic and deterministic versions of PDAs are equivalent. 13. .....O..... If a language L does not satisfy the conditions stated in the pumping lemma for CFLs, then L is not context-free. 14. .....X..... Every infinite set of strings over a single letter alphabet Σ (={a}) contains an infinite context free subset. 15. .....X..... Every infinite context-free set contains an infinite regular subset.
    [Show full text]
  • Public Sector Exams
    Theory & Practice Book Computer Science & IT for Public Sector Exams ISRO, DRDO, BARC, BEL, HAL, NTPC, ONGC, BHEL, SAIL, GAIL, MTNL, FCI, ECL, ATC, DMRC, HLL, UPRVNL, CSPEB, OPTCL.... Corporate Office: 44-A/1, Kalu Sarai, New Delhi-16 | Regd. Office: 25-A, Ber Sarai, New Delhi-16 Website: www.madeeasypublications.org | Phone: 011-26560862, 011-32059862 MADE EASY Publications Corporate Office: 44-A/1, Kalu Sarai, New Delhi-16; Regd. Office: 25-A, Ber Sarai, New Delhi-16 Website: www.madeeasypublications.org; Phone: 011-26560862, 011-9958995830 E-mail: [email protected]; [email protected] Theory & Practice Book for Computer Science & IT Copyright © 2013, by MADE EASY Publications. All rights are reserved. No part of this publication may be reproduced, stored in or introduced into a retrieval system, or transmitted in any form or by any means (electronic, mechanical, photo-copying, recording or otherwise), without the prior written permission of the above mentioned publisher of this book. First Edition: 2010 Second Edition: 2012 Third Edition: 2013 IBSN: 978-93-81069-32-5 Typesetat: MADE EASY Publications, New Delhi-110016 PREFACE “Theory & Practice Book on Computer Science” contains theory including basic concepts and formulae and nearly 3000 questions with answers and explanations. The authors (MADE EASY Team) are very well aware of the requirements of the Public Sector Examinations like ISRO, DRDO, BARC, BEL, HAL, NTPC, ONGC, BHEL, SAIL, GAIL, MTNL, ECL, ATC, DMRC, HLL, UPRVNL, CSPEB, OPTCL....etc. Therefore content of this book includes such questions similar to which questions are normally asked in the Public Sector Examinations.
    [Show full text]
  • Faculty of Degree Engineering - 083 Department of CE / IT – 07 / 16 Multiple Choice Questions Bank Theory of Computation 2160704
    Faculty of Degree Engineering - 083 Department of CE / IT – 07 / 16 Multiple Choice Questions Bank Theory Of Computation 2160704 1 Let R1 and R2 be regular sets defined over alphabet ∑ then A R1 UNION R2 is regular B R1 INTERSECTION R2 is regular C ∑ INTERSECTION R2 IS NOT REGULAR D R2* IS NOT REGULAR Ans. R1 UNION R2 is regular 2 Consider the production of the grammar S->AA A->aa A->bb Describe the language specified by the production grammar. A L = {aaaa,aabb,bbaa,bbbb} B L = {abab,abaa,aaab,baaa} C L = {aaab,baba,bbaa,bbbb} D L = {aaaa,abab,bbaa,aaab} Ans. L = {aaaa,aabb,bbaa,bbbb} 3 Give a production grammar that specified language L = {ai b2i >= 1} A {S->aSbb,S->abb} B {S->aSb, S->b} C {S->aA,S->b,A->b} D None of the above Ans. {S->aSbb,S->abb} 4 Which of the following String can be obtained by the language L = {ai b2i / i >=1} A aaabbbbbb B aabbb C abbabbba D aaaabbbabb. Ans. aaabbbbbb 5 Give a production grammar for the language L = {x/x ∈ (a,b)*, the number of a’s in x is multiple of 3}. A {S->bS,S->b,S->aA,S->bA,A->aB,B->bB,B->aS,S->a} B {S->aS,S->bA,A->bB,B->bBa,B->bB} C {S->aaS,S->bbA,A->bB,B->ba} 1 Prepared By: Prof. Janvi P. Patel Prof. Bhoomi M. Bangoria Computer/IT Engineering Faculty of Degree Engineering - 083 Department of CE / IT – 07 / 16 Multiple Choice Questions Bank Theory Of Computation 2160704 D None of the above Ans.
    [Show full text]
  • Csci 311, Models of Computation Chapter 11 a Hierarchy of Formal Languages and Automata
    CSci 311, Models of Computation Chapter 11 A Hierarchy of Formal Languages and Automata H. Conrad Cunningham 29 December 2015 Contents Introduction . 1 11.1 Recursive and Recursively Enumerable Languages . 2 11.1.1 Aside: Countability . 2 11.1.2 Definition of Recursively Enumerable Language . 2 11.1.3 Definition of Recursive Language . 2 11.1.4 Enumeration Procedure for Recursive Languages . 3 11.1.5 Enumeration Procedure for Recursively Enumerable Lan- guages . 3 11.1.6 Languages That are Not Recursively Enumerable . 4 11.1.7 A Language That is Not Recursively Enumerable . 5 11.1.8 A Language That is Recursively Enumerable but Not Recursive . 6 11.2 Unrestricted Grammars . 6 11.3 Context-Sensitive Grammars and Languages . 6 11.3.1 Linz Example 11.2 . 7 11.3.2 Linear Bounded Automata (lba) . 8 11.3.3 Relation Between Recursive and Context-Sensitive Lan- guages . 8 11.4 The Chomsky Hierarchy . 9 1 Copyright (C) 2015, H. Conrad Cunningham Acknowledgements: MS student Eli Allen assisted in preparation of these notes. These lecture notes are for use with Chapter 11 of the textbook: Peter Linz. Introduction to Formal Languages and Automata, Fifth Edition, Jones and Bartlett Learning, 2012.The terminology and notation used in these notes are similar to those used in the Linz textbook.This document uses several figures from the Linz textbook. Advisory: The HTML version of this document requires use of a browser that supports the display of MathML. A good choice as of December 2015 seems to be a recent version of Firefox from Mozilla.
    [Show full text]
  • Computability
    Computability COMP2600 — Formal Methods for Software Engineering Katya Lebedeva Australian National University Semester 2, 2016 Slides created by Katya Lebedeva COMP 2600 — Turing Machines 1 Definition of “Computability” Church-Turing Thesis The “Church-Turing thesis” is the general belief that the notion of “computable in principle” can be expressed in terms of • Turing’s Machines • Church’s Lambda Calculus • Godel’s¨ Recursive Functions • Kleene’s Formal Systems • Markov’s Algorithms • ::: COMP 2600 — Turing Machines 2 Definition of computability in terms of TMs: A computable function is a function that can be implemented by a TM. Definition of computability in terms of l-calculus: A computable function is a function that can be implemented as a l-term. These definitions are equivalent because • for every TM, we can write a l-term that simulates it • for every l-term, we can build a TM that simulates it We could also give definitions of computable function in terms of other models of computation. Thus, the “Church-Turing thesis” is the belief that any of these definitions is an adequate characterisation of “computability in principle”. COMP 2600 — Turing Machines 3 Why TMs? TMs are a terrible model for thinking about fast computation. But when talking about computability, we are not interested in finding fast algorithms, or even finding algorithms at all! We are interested to prove that some problems cannot be solved by any com- putational device, i.e. that they are undecidable. TM is an extremely simple model, but powerful enough to describe arbitrary algorithms. Importantly, TMs are powerful enough to simulate other TMs and simple enough to build up this simulation from scratch.
    [Show full text]