formal definition of computation
play

Formal Definition of Computation Formal Definition of Computation - PowerPoint PPT Presentation

Formal Definition of Computation Formal Definition of Computation p.1/28 Computation model The model of computation considered so far is the work performed by a finite automaton Formal Definition of Computation p.2/28


  1. Formal Definition of Computation Formal Definition of Computation – p.1/28

  2. � Computation model The model of computation considered so far is the work performed by a finite automaton Formal Definition of Computation – p.2/28

  3. � � Computation model The model of computation considered so far is the work performed by a finite automaton Finite automata were described informally, using state diagrams, and formally, as a 5-tuple Formal Definition of Computation – p.2/28

  4. � � � Computation model The model of computation considered so far is the work performed by a finite automaton Finite automata were described informally, using state diagrams, and formally, as a 5-tuple Informal description is easier to grasp first, but the formal definition is useful for making this notion precise, resolving any ambiguities that may occur in formal description Formal Definition of Computation – p.2/28

  5. ✠ � � ✁ ✂ ✄ ☎ ✄ ✆ ✄ ☎ ✄ ✍ ✡ ✍ ☛ Formal definition of computation Let be a finite automaton and ✝✟✞ be a string over ☛✟☞ ☛✟✌✎✍ ☛✑✏ Formal Definition of Computation – p.3/28

  6. ✄ ✍ ☞ � ✄ ✞ � ✍ ☛ ✍ ✄ ☎ � ✍ ✍ ✏ ✂ � ✆ � ✁ ✂ ✄ ☎ ✄ ✄ ☛ ✄ ✠ ✡ Formal definition of computation Let be a finite automaton and ✝✟✞ be a string over ☛✟☞ ☛✟✌✎✍ ☛✑✏ Then accepts if a sequence of states exist in such that the following hold: Formal Definition of Computation – p.3/28

  7. ✄ � ✁ ☛ ☎ � ✞ ✄ ☞ ✂ ✄ ✍ ✍ ✍ ✄ � ✏ ☎ ✍ ✍ ✄ � ✁ ✂ ✄ ☎ ✄ ✆ ✄ ✠ ✡ ☛ � Formal definition of computation Let be a finite automaton and ✝✟✞ be a string over ☛✟☞ ☛✟✌✎✍ ☛✑✏ Then accepts if a sequence of states exist in such that the following hold: 1. �✂✁ Formal Definition of Computation – p.3/28

  8. � ✞ ☞ ✄ ✍ ✍ ✍ ✄ ✡ ✏ ✄ ✂ ✠ ✝ ✄ ✄ ☎ ✁ ✂ � ✁ � ☎ ✆ ✂ ✝ ✞ � ✞ ✄ ✍ � ✁ ✂ ✄ ☎ ✄ ✆ ✄ ☛ ✄ ✠ ✡ ☛ � � ✌ ☎ ✍ ✍ ☞ ☞ ☎ ☎☞ ☛ ☛ ☎ ✟ Formal definition of computation Let be a finite automaton and ✝✟✞ be a string over ☛✟☞ ☛✟✌✎✍ ☛✑✏ Then accepts if a sequence of states exist in such that the following hold: 1. �✂✁ 2. for � ✄✂ Formal Definition of Computation – p.3/28

  9. ☞ ✆ � ✏ ✂ ✄ ✂ ☛ ✄ ☎ ✁ ✍ � ✁ ✌ ☎ ✂ ✍ ☎ ☎☞ ☛ ☎ ✡ ✄ ✠ ✞ ✝ ✝ ✂ � ✄ ✟ ✞ ✄ ✍ ☞ ☎ ✡ ✄ ☛ � ✆ ✍ ✍ ✍ ✄ ☎ ✄ ✄ ✂ ☛ ✁ � ✞ ✄ � � ☞ ✄ ✠ Formal definition of computation Let be a finite automaton and ✝✟✞ be a string over ☛✟☞ ☛✟✌✎✍ ☛✑✏ Then accepts if a sequence of states exist in such that the following hold: 1. �✂✁ 2. for � ✄✂ 3. � ✁� Formal Definition of Computation – p.3/28

  10. � Interpretation Condition (1) says that the machine starts its computation in the start state Formal Definition of Computation – p.4/28

  11. � � ✆ Interpretation Condition (1) says that the machine starts its computation in the start state Condition (2) says that as long as input is available the machine goes from state to state according to its transition function Formal Definition of Computation – p.4/28

  12. � � ✆ � Interpretation Condition (1) says that the machine starts its computation in the start state Condition (2) says that as long as input is available the machine goes from state to state according to its transition function Condition (3) says that the machine accepts its input if it ends up in an accept state Formal Definition of Computation – p.4/28

  13. � � ✆ � � Interpretation Condition (1) says that the machine starts its computation in the start state Condition (2) says that as long as input is available the machine goes from state to state according to its transition function Condition (3) says that the machine accepts its input if it ends up in an accept state Can you translate this interpretation into the computation performed by a program? Formal Definition of Computation – p.4/28

  14. Translation A program behaves like a fi nite automaton: Formal Definition of Computation – p.5/28

  15. � Translation A program behaves like a fi nite automaton: Its start state is a function mapping program variables to their initial values Formal Definition of Computation – p.5/28

  16. � � Translation A program behaves like a fi nite automaton: Its start state is a function mapping program variables to their initial values Program execution goes from state to state by transitions performed according to program control flow Formal Definition of Computation – p.5/28

  17. � � � Translation A program behaves like a fi nite automaton: Its start state is a function mapping program variables to their initial values Program execution goes from state to state by transitions performed according to program control flow The language of this machine is the class of problems solved by program execution Formal Definition of Computation – p.5/28

  18. Difference A program computation differs from FA computation because: Formal Definition of Computation – p.6/28

  19. � Difference A program computation differs from FA computation because: A program may have a potential infinite set of states and can run forever Formal Definition of Computation – p.6/28

  20. � � Difference A program computation differs from FA computation because: A program may have a potential infinite set of states and can run forever During execution a program may interact with its environment Formal Definition of Computation – p.6/28

  21. � � � Difference A program computation differs from FA computation because: A program may have a potential infinite set of states and can run forever During execution a program may interact with its environment The accepting state of the program has a larger interpretation Formal Definition of Computation – p.6/28

  22. ✂ ☎ ✡ � ☛ � � ✁ ☛ ✆✝ ✄☎ Note We say that a machine recognizes the language if ✞✠✟ How is this interpreted in terms of a program execution? Formal Definition of Computation – p.7/28

  23. Regular language Definition 1.7 A language is called a regular language if some finite automaton recognizes it Formal Definition of Computation – p.8/28

  24. ✓ ✏ ✕ ✔ ✒ ✓ ✒ ✑ ✍ ☞ ✌ ✖ ✕ ✔ ✒ ✖ ✗ ☞ ✑ ✒ ☞ ✚ ✙ ✟ ✕ ✔ ✓ ✌ ✒ ✑ ✏ ✍ ☞ ✘ ✒ ✏ ✌ ✂✄ ✞ ✞ ✝ ✆ ✄ ☎ ✁ ✂ ✡ ☛ ✄ ✆ ✜ � ✁ ✄ ✞ ✠ ✌ ☞ ☛ ✟ ✞ ✡ ✟ ☎ ✞ ☛ ✡ ✝ ✆ ✄ ✛ Example computation Take the machine from Example 1.5 and ✞ ✎✍ Figure 1: Finite automaton Formal Definition of Computation – p.9/28

  25. ✄ ✝ ✄ ✌ ✝ ✄ ✄ � ☞ ✝ ✄ ☞ ✄ ☞ ✞ ✝ ✄ ☛ ✄ ✝ ☞ ☛ ✄ � ✝ Running accepts according to the formal definition of computation because the sequence of states it enters when computing on is : ✝✟✞ ✝✟✞ ✝✟✞ ✝✟✞ Formal Definition of Computation – p.10/28

  26. ✄ ☞ ✝ ✄ ✌ ✝ � ✄ ✄ ☞ ✝ ✄ ✝ ✄ ✄ ✞ ✝ ✄ ☛ ✝ ☞ ✄ ☛ � � ☞ Running accepts according to the formal definition of computation because the sequence of states it enters when computing on is : ✝✟✞ ✝✟✞ ✝✟✞ ✝✟✞ is the first state by definition ✝✟✞ Formal Definition of Computation – p.10/28

  27. ✆ � ☞ ✄ ✡ ☎ � � � � ✆ ✁ ✡ ✄ ✡ ✄ � ✝ ☞ ✞ ✆ ✁ ✝ ☞ ✄ ✁ ✡ � ✝ ✝ ☞ ☞ � ✄☎ ☛ ✂ ✄ ☞ ☛ ✝ ✝ ✞ ✄ ✝ ✄ ✄ ✝ ☞ ✄ ✁ ✄ ✝ ✌ ✄ ✝ ☞ ✄ ✆ ✝ Running accepts according to the formal definition of computation because the sequence of states it enters when computing on is : ✝✟✞ ✝✟✞ ✝✟✞ ✝✟✞ is the first state by definition ✝✟✞ , , ✝✟✞ ✝✟✞ Formal Definition of Computation – p.10/28

  28. � ☞ ✂ ✄ ☞ ✝ ✁ ✆ ☞ ✡ ✝ ✆ � ✡ ✁ ✄ ☞ ✝ ✁ ✆ ✆ ✄☎ ☎ ✝ ✡ ✌ ✝ ✁ ✆ ✡ ✌ ✝ � � ✝ ✄ � ✁ ✆ � ✝ � ✡ ✞ ☞ � � ✄ ✄ ✆ ✄ ☞ ✝ ✄ ☞ ✝ ✞ ✌ ✝ ☎ ☛ ✝ ✞ ✡ ☛ � � ✝ ✄ ✡ ✄ � ✄ ✁ ✁ ✆ � ✝ ☞ � ✂ ✝ ✄ ☞ ✝ ✄ ✄ ✄ ☎ ✄ ☞ ✄ Running accepts according to the formal definition of computation because the sequence of states it enters when computing on is : ✝✟✞ ✝✟✞ ✝✟✞ ✝✟✞ is the first state by definition ✝✟✞ , , ✝✟✞ ✝✟✞ , , ✝✟✞ ✝✟✞ Formal Definition of Computation – p.10/28

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