Linear temporal logic

In logic, linear temporal logic or linear-time temporal logic[1][2] (LTL) is a modal temporal logic with modalities referring to time. In LTL, one can encode formulae about the future of paths, e.g., a condition will eventually be true, a condition will be true until another fact becomes true, etc. It is a fragment of the more complex CTL*, which additionally allows branching time and quantifiers. Subsequently LTL is sometimes called propositional temporal logic, abbreviated PTL.[3] Linear temporal logic (LTL) is a fragment of S1S (monadic second-order logic of one successor).[4]

LTL was first proposed for the formal verification of computer programs by Amir Pnueli in 1977.[5]

Syntax

LTL is built up from a finite set of propositional variables AP, the logical operators ¬ and ∨, and the temporal modal operators X (some literature uses O or N) and U. Formally, the set of LTL formulas over AP is inductively defined as follows:

  • if p ∈ AP then p is an LTL formula;
  • if ψ and φ are LTL formulas then ¬ψ, φ ∨ ψ, X ψ, and φ U ψ are LTL formulas.[6]

X is read as next and U is read as until. Other than these fundamental operators, there are additional logical and temporal operators defined in terms of the fundamental operators to write LTL formulas succinctly. The additional logical operators are ∧, →, ↔, true, and false. Following are the additional temporal operators.

  • G for always (globally)
  • F for eventually (in the future)
  • R for release
  • W for weakly until
  • M for strong release

Semantics

An LTL formula can be satisfied by an infinite sequence of truth evaluations of variables in AP. These sequences can be viewed as a word on a path of a Kripke structure (an ω-word over alphabet 2AP). Let w = a0,a1,a2,... be such an ω-word. Let w(i) = ai. Let wi = ai,ai+1,..., which is a suffix of w. Formally, the satisfaction relation between a word and an LTL formula is defined as follows:

  • w p if p ∈ w(0)
  • w ¬ψ if w ψ
  • w φ ∨ ψ if w φ or w ψ
  • w X ψ if w1 ψ (in the next time step ψ must be true)
  • w φ U ψ if there exists i ≥ 0 such that wi ψ and for all 0 ≤ k < i, wk φ (φ must remain true until ψ becomes true)

We say an ω-word w satisfies an LTL formula ψ when w ψ. The ω-language L(ψ) defined by ψ is {w | w ψ}, which is the set of ω-words that satisfy ψ. A formula ψ is satisfiable if there exist an ω-word w such that w ψ. A formula ψ is valid if for each ω-word w over alphabet 2AP, w ψ.

The additional logical operators are defined as follows:

  • φ ∧ ψ ≡ ¬(¬φ ∨ ¬ψ)
  • φ → ψ ≡ ¬φ ∨ ψ
  • φ ↔ ψ ≡ (φ → ψ) ∧ ( ψ → φ)
  • true ≡ p ∨ ¬p, where p ∈ AP
  • false ≡ ¬true

The additional temporal operators R, F, and G are defined as follows:

  • φ R ψ ≡ ¬(¬φ U ¬ψ) ( ψ remains true until and including once φ becomes true. If φ never become true, ψ must remain true forever.)
  • F ψ ≡ true U ψ (eventually ψ becomes true)
  • G ψ ≡ false R ψ ≡ ¬F ¬ψ (ψ always remains true)

Weak until and strong release

Some authors also define a weak until binary operator, denoted W, with semantics similar to that of the until operator but the stop condition is not required to occur (similar to release).[7] It is sometimes useful since both U and R can be defined in terms of the weak until:

  • φ W ψ ≡ (φ U ψ) ∨ G φφ U (ψG φ) ≡ ψ R (ψφ)
  • φ U ψFψ ∧ (φ W ψ)
  • φ R ψψ W (ψφ)

The strong release binary operator, denoted M, is the dual of weak until. It is defined similar to the until operator, so that the release condition has to hold at some point. Therefore, it is stronger than the release operator.

  • φ M ψ ≡ ¬(¬φ W ¬ψ) ≡ (φ R ψ) ∧ F φ

Equivalences

Let Φ, ψ, and ρ be LTL formulas. The following tables list some of the useful equivalences which extend standard equivalences among the usual logical operators.

Distributivity
X (Φ ∨ ψ) ≡ (X Φ) ∨ (X ψ)X (Φ ∧ ψ)≡ (X Φ) ∧ (X ψ)XU ψ)≡ (X Φ) U (X ψ)
F (Φ ∨ ψ) ≡ (F Φ) ∨ (F ψ)G (Φ ∧ ψ)≡ (G Φ) ∧ (G ψ)
ρ U (Φ ∨ ψ) ≡ (ρ U Φ) ∨ (ρ U ψ)(Φ ∧ ψ) U ρ ≡ (Φ U ρ) ∧ (ψ U ρ)
Negation propagation
X is self-dualF and G are dualU and R are dualW and M are dual
¬X Φ ≡ X ¬Φ¬F Φ ≡ G ¬Φ¬ (Φ U ψ) ≡ (¬Φ R ¬ψ)¬ (Φ W ψ) ≡ (¬Φ M ¬ψ)
¬G Φ ≡ F ¬Φ¬ (Φ R ψ) ≡ (¬Φ U ¬ψ)¬ (Φ M ψ) ≡ (¬Φ W ¬ψ)
Special Temporal properties
F Φ ≡ F F ΦG Φ ≡ G G ΦΦ U ψ ≡ Φ UU ψ)
Φ U ψ ≡ ψ ∨ ( Φ ∧ XU ψ) )Φ W ψ ≡ ψ ∨ ( Φ ∧ XW ψ) )Φ R ψ ≡ ψ ∧ (Φ ∨ XR ψ) )
G Φ ≡ Φ ∧ X(G Φ)F Φ ≡ Φ ∨ X(F Φ)

Negation normal form

All the formulas of LTL can be transformed into negation normal form, where

  • all negations appear only in front of the atomic propositions,
  • only other logical operators true, false, ∧, and ∨ can appear, and
  • only the temporal operators X, U, and R can appear.

Using the above equivalences for negation propagation, it is possible to derive the normal form. This normal form allows R, true, false, and ∧ to appear in the formula, which are not fundamental operators of LTL. Note that the transformation to the negation normal form does not blow up the size of the formula. This normal form is useful in translation from LTL to Büchi automaton.

Relations with other logics

LTL can be shown to be equivalent to the monadic first-order logic of order, FO[<]a result known as Kamp's theorem[8] or equivalently star-free languages.[9]

Computation tree logic (CTL) and linear temporal logic (LTL) are both a subset of CTL*, but are incomparable. For example,

  • No formula in CTL can define the language that is defined by the LTL formula F(G p).
  • No formula in LTL can define the language that is defined by the CTL formulas AG( p → (EXq ∧ EX¬q) ) or AG(EF(p)).

However, a subset of CTL* exists that is a proper superset of both CTL and LTL.

Applications

Automata-theoretic linear temporal logic model checking
An important way to model check is to express desired properties (such as the ones described above) using LTL operators and actually check if the model satisfies this property. One technique is to obtain a Büchi automaton that is equivalent to the model and another one that is equivalent to the negation of the property (cf. Linear temporal logic to Büchi automaton). The intersection of the two non-deterministic Büchi automata is empty if the model satisfies the property.[10]
Expressing important properties in formal verification
There are two main types of properties that can be expressed using linear temporal logic: safety properties usually state that something bad never happens (G ), while liveness properties state that something good keeps happening (GF or G F ). More generally, safety properties are those for which every counterexample has a finite prefix such that, however it is extended to an infinite path, it is still a counterexample. For liveness properties, on the other hand, every finite prefix of a counterexample can be extended to an infinite path that satisfies the formula.
Specification language
One of the applications of linear temporal logic is the specification of preferences in the Planning Domain Definition Language for the purpose of preference-based planning.

See also

References

  1. Logic in Computer Science: Modelling and Reasoning about Systems: page 175
  2. Linear-time Temporal Logic
  3. Dov M. Gabbay; A. Kurucz; F. Wolter; M. Zakharyaschev (2003). Many-dimensional modal logics: theory and applications. Elsevier. p. 46. ISBN 978-0-444-50826-3.
  4. Ong, Luke. "Automata, Logic and Games: Theory and Application, 1. Buchi Automata and S1S" (PDF). Oxford University.
  5. Amir Pnueli, The temporal logic of programs. Proceedings of the 18th Annual Symposium on Foundations of Computer Science (FOCS), 1977, 46–57. doi:10.1109/SFCS.1977.32
  6. Sec. 5.1 of Christel Baier and Joost-Pieter Katoen, Principles of Model Checking, MIT Press "Archived copy". Archived from the original on 2010-12-04. Retrieved 2011-05-17.
  7. Sec. 5.1.5 "Weak Until, Release, and Positive Normal Form" of Principles of Model Checking.
  8. Automata, Languages and Programming: 37th International Colloquium, ICALP ... - Google Books. Books.google.com. 2010-06-30. Retrieved 2014-07-30.
  9. Moshe Y. Vardi (2008). "Church". In Orna Grumberg; Helmut Veith. 25 years of model checking: history, achievements, perspectives. Springer. ISBN 978-3-540-69849-4. preprint
  10. Moshe Y. Vardi. An Automata-Theoretic Approach to Linear Temporal Logic. Proceedings of the 8th Banff Higher Order Workshop (Banff'94). Lecture Notes in Computer Science, vol. 1043, pp. 238--266, Springer-Verlag, 1996. ISBN 3-540-60915-6.
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.