summary of lecture iii
play

Summary of Lecture III Introducing Temporal Logics. Intuitions - PowerPoint PPT Presentation

F ORMAL M ETHODS L ECTURE III: L INEAR T EMPORAL L OGIC Alessandro Artale Faculty of Computer Science Free University of Bolzano artale@inf.unibz.it http://www.inf.unibz.it/ artale/ Some material (text, figures) displayed in these slides


  1. F ORMAL M ETHODS L ECTURE III: L INEAR T EMPORAL L OGIC Alessandro Artale Faculty of Computer Science – Free University of Bolzano artale@inf.unibz.it http://www.inf.unibz.it/ ∼ artale/ Some material (text, figures) displayed in these slides is courtesy of: M. Benerecetti, A. Cimatti, M. Fisher, F. Giunchiglia, M. Pistore, M. Roveri, R.Sebastiani. Alessandro Artale (FM – First Semester – 2007/2008) – p. 1/39

  2. Summary of Lecture III Introducing Temporal Logics. Intuitions beyond Linear Temporal Logic. LTL: Syntax and Semantics. LTL in Computer Science. LTL Interpreted over Kripke Models. LTL and Model Checking: Intuitions. Alessandro Artale (FM – First Semester – 2007/2008) – p. 2/39

  3. An Introduction to Temporal Logics In classical logic, formulae are evaluated within a single fixed world. For example, a proposition such as “it is Monday” must be either true or false . Propositions are then combined using constructs such as ‘ ∧ ’, ‘ ¬ ’, etc. But, most (not just computational) systems are dynamic. In temporal logics, evaluation takes place within a set of worlds. Thus, “it is Monday” may be satisfied in some worlds, but not in others. Alessandro Artale (FM – First Semester – 2007/2008) – p. 3/39

  4. An Introduction to Temporal Logics (Cont.) The set of worlds correspond to moments in time. How we navigate between these worlds depends on our particular view of time. The particular model of time is captured by a temporal accessibility relation between worlds. Essentially, temporal logic extends classical propositional logic with a set of temporal operators that navigate between worlds using this accessibility relation. Alessandro Artale (FM – First Semester – 2007/2008) – p. 4/39

  5. Typical Models of Time Alessandro Artale (FM – First Semester – 2007/2008) – p. 5/39

  6. Summary Introducing Temporal Logics. Intuitions beyond Linear Temporal Logic. LTL: Syntax and Semantics. LTL in Computer Science. LTL Interpreted over Kripke Models. LTL and Model Checking: Intuitions. Alessandro Artale (FM – First Semester – 2007/2008) – p. 6/39

  7. Linear Temporal Logic (LTL): Intuitions Consider a simple temporal logic (LTL) where the accessibility relation characterises a discrete, linear model isomorphic to the Natural Numbers. Typical temporal operators used are ϕ ϕ is true in the next moment in time ❦ ϕ ϕ is true in all future moments ♦ ϕ ϕ is true in some future moment ϕ U ψ ϕ is true until ψ is true Examples: ❦ (( ¬ passport ∨¬ ticket ) ⇒ ¬ board _ flight ) Alessandro Artale (FM – First Semester – 2007/2008) – p. 7/39

  8. Computational Example ( requested ⇒ ♦ received ) ❦ ( received ⇒ processed ) ( processed ⇒ ♦ done ) From the above we should be able to infer that it is not the case that the system continually re-sends a request, but never sees it completed ( ¬ done ); i.e. the statement requested ∧ ¬ done should be inconsistent. Alessandro Artale (FM – First Semester – 2007/2008) – p. 8/39

  9. Summary Introducing Temporal Logics. Intuitions beyond Linear Temporal Logic. LTL: Syntax and Semantics. LTL in Computer Science. LTL Interpreted over Kripke Models. LTL and Model Checking: Intuitions. Alessandro Artale (FM – First Semester – 2007/2008) – p. 9/39

  10. LTL: Syntax Countable set Σ of atomic propositions : p , q ,... the set F ORM of formulas is: ϕ , ψ → p | (atomic proposition) ⊤ | (true) ⊥ | (false) ¬ ϕ | (complement) ϕ ∧ ψ | (conjunction) ϕ ∨ ψ | (disjunction) ϕ | ❦ (next time) ϕ | (always) ♦ ϕ | (sometime) ϕ U ψ (until) Alessandro Artale (FM – First Semester – 2007/2008) – p. 10/39

  11. Temporal Semantics We interpret our temporal formulae in a discrete, linear model of time. Formally, this structure is represented by = � N , I � M where • I : N �→ 2 Σ maps each Natural number (representing a moment in time) to a set of propositions. The semantics of a temporal formula is provided by the satisfaction relation: | = : ( M × N × F ORM ) → { true , false } Alessandro Artale (FM – First Semester – 2007/2008) – p. 11/39

  12. Semantics: The Propositional Aspect We start by defining when an atomic proposition is true at a time point “ i ” (for p ∈ Σ ) � M , i � | = p p ∈ I ( i ) iff The semantics for the classical operators is as expected: = ¬ ϕ = ϕ � M , i � | � M , i � �| iff = ϕ ∧ ψ = ϕ and � M , i � | = ψ � M , i � | � M , i � | iff = ϕ ∨ ψ = ϕ or � M , i � | = ψ � M , i � | � M , i � | iff = ϕ ⇒ ψ = ϕ then � M , i � | = ψ � M , i � | if � M , i � | iff M , i | = ⊤ M , i �| = ⊥ Alessandro Artale (FM – First Semester – 2007/2008) – p. 12/39

  13. Temporal Operators: ‘next’ ϕ = ϕ ❦ � M , i � | = � M , i + 1 � | iff This operator provides a constraint on the next moment in time. Examples: ❦ ( sad ∧ ¬ rich ) ⇒ sad ❦ (( x = 0 ) ∧ add 3 ) ⇒ ( x = 3 ) Alessandro Artale (FM – First Semester – 2007/2008) – p. 13/39

  14. Temporal Operators: ‘sometime’ = ♦ ϕ = ϕ � M , i � | there exists j . ( j ≥ i ) ∧ � M , j � | iff N.B. while we can be sure that ϕ will be true either now or in the future, we can not be sure exactly when it will be true. Examples: ( ¬ resigned ∧ sad ) ⇒ ♦ famous sad ⇒ ♦ happy send ⇒ ♦ receive Alessandro Artale (FM – First Semester – 2007/2008) – p. 14/39

  15. Temporal Operators: ‘always’ ϕ = ϕ � M , i � | = for all j . if ( j ≥ i ) then � M , j � | iff This can represent invariant properties. Examples: lottery-win ⇒ rich Alessandro Artale (FM – First Semester – 2007/2008) – p. 15/39

  16. Temporal Operators: ‘until’ = ϕ U ψ = ψ ∧ � M , i � | there exists j . ( j ≥ i ) ∧ � M , j � | iff = ϕ for all k . ( i ≤ k < j ) ⇒ � M , k � | Examples: start _ lecture ⇒ talk U end _ lecture born ⇒ alive U dead request ⇒ reply U acknowledgement Alessandro Artale (FM – First Semester – 2007/2008) – p. 16/39

  17. Satisfiability and Validity A structure M = � N , I � is a model of φ , if = φ , for some i ∈ N . � M , i � | Similarly as in classical logic, an LTL formula φ can be satisfiable , unsatisfiable or valid . A formula φ is: Satisfiable , if there is model for φ . Unsatisfiable , if φ is not satisfiable. Valid (i.e., a Tautology ): = φ iff ∀ M , ∀ i ∈ N . � M , i � | = φ . | Alessandro Artale (FM – First Semester – 2007/2008) – p. 17/39

  18. Entailment and Equivalence Similarly as in classical logic we can define the notions of entailment and equivalence between two LTL formulas Entailment. φ | = ψ iff ∀ M , ∀ i ∈ N . � M , i � | = φ ⇒ � M , i � | = ψ Equivalence. φ ≡ ψ iff ∀ M , ∀ i ∈ N . � M , i � | = φ ⇔ � M , i � | = ψ Alessandro Artale (FM – First Semester – 2007/2008) – p. 18/39

  19. Equivalences in LTL and ♦ are duals The temporal operators ϕ ≡ ♦ ¬ ϕ ¬ ♦ (and then ) can be rewritten in terms of U ♦ ϕ ≡ ⊤ U ϕ All the temporal operators can be rewritten using the “Until” and “Next” operators Alessandro Artale (FM – First Semester – 2007/2008) – p. 19/39

  20. Equivalences in LTL (Cont.) ♦ distributes over ∨ while distributes over ∧ ♦ ( ϕ ∨ ψ ) ≡ ♦ ϕ ∨ ♦ ψ ( ϕ ∧ ψ ) ≡ ϕ ∧ ψ The following equivalences are useful for generating formulas in Negated Normal Form. ϕ ≡ ¬ ϕ ❦ ❦ ¬ ¬ ( ϕ U ψ ) ≡ ( ¬ ψ U ( ¬ ϕ ∧¬ ψ )) ∨ ¬ ψ Alessandro Artale (FM – First Semester – 2007/2008) – p. 20/39

  21. LTL Vs. FOL Linear Temporal Logic can be thought of as a specific decidable (PSPACE-complete) fragment of classical first-order logic We just map each proposition to a unary predicate in FOL. In general, the following satisfiability preserving mapping ( � ) holds: p ( t ) p � ❦ p ( t + 1 ) p � ∃ t ′ . ( t ′ ≥ t ) ∧ p ( t ′ ) ♦ p � ∀ t ′ . ( t ′ ≥ t ) ⇒ p ( t ′ ) p � Alessandro Artale (FM – First Semester – 2007/2008) – p. 21/39

  22. Summary Introducing Temporal Logics. Intuitions beyond Linear Temporal Logic. LTL: Syntax and Semantics. LTL in Computer Science. LTL Interpreted over Kripke Models. LTL and Model Checking: Intuitions. Alessandro Artale (FM – First Semester – 2007/2008) – p. 22/39

  23. Temporal Logic in Computer Science Temporal logic was originally developed in order to represent tense in natural language. Within Computer Science, it has achieved a significant role in the formal specification and verification of concurrent reactive systems. Much of this popularity has been achieved as a number of useful concepts can be formally, and concisely, specified using temporal logics, e.g. • safety properties • liveness properties • fairness properties Alessandro Artale (FM – First Semester – 2007/2008) – p. 23/39

  24. Safety Properties Safety: “something bad will not happen” Typical examples: ¬ ( reactor _ temp > 1000 ) ❦ ¬ ( one _ way ∧ other _ way ) ❦ ❦ ❦ ¬ (( x = 0 ) ∧ ( y = z / x )) and so on..... ¬ .... Usually: Alessandro Artale (FM – First Semester – 2007/2008) – p. 24/39

  25. Liveness Properties Liveness: “something good will happen” Typical examples: ♦ rich ♦ ( x > 5 ) ( start ⇒ ♦ terminate ) and so on..... Usually: ♦ .... Alessandro Artale (FM – First Semester – 2007/2008) – p. 25/39

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