\documentclass[a4paper]{scrartcl} \usepackage[backend=biber,natbib]{biblatex} \bibliography{library} \usepackage{amsmath} \usepackage{amsthm} \newtheorem{definition}{Definition} \newcommand{\defeq}{\overset{\text{def}}{=}} \newcommand{\Uop}{\mathbf{U}} \newcommand{\Xop}{\mathbf{X}} \newcommand{\Sop}{\mathbf{S}} \newcommand{\Fop}{\mathbf{F}} \newcommand{\Gop}{\mathbf{G}} \title{Model Checking} \subtitle{Assignment 1} \author{Camil Staps \and Erin van der Veen} \begin{document} \maketitle \section{Past Modalities in LTL} % Explain that past Modalities are not necessary for a complete logic % Explain that LTLP does make the logic more succinct (Paper 1) %TODO: Give example on what kind of things we want to express with LTLP This section of the book concerns an extension of LTL called ``Past Modalities''. The combination of LTL and Past Modalities is often called ``LTL-Past'' or LTLP, for the sake of brevity (and without compromising readability) we will use the first (LTL-Past) to denote this combination. When temporal logic was first introduced by Arthur N. Prior in his 1957 book~\cite{Prior1957}, the logic consisted of both past and future modalities. It wasn't until later, after it was shown that past modalities do not increase the expressive power of LTL~\cite{Gabbay1980}, that computing scientists stopped considering past modalities in favour of minimality. In 2003 Nicolas Markey showed that, while past modalities do not increase expressive power, they do make the LTL exponentially more succinct~\cite{Markey2003}. In particular, Markey shows that there is a class of LTL-Past formulas that are $O(n)$, but $\Omega(2^n)$ in LTL. Markey achieves this proof by providing an formula that is in exactly this class. \subsection{Syntax and Semantics} % Provide formal syntax %TODO: Provide intuitive semantics %TODO: Provide formal semantics This subsection describes the syntax and semantics of LTLP. Given that LTLP is an extension of LTL, we are left with two options. The first options is to define the entire syntax of LTLP without considering that we have already defined LTL. This options is slightly more verbose, but does ensure that this subsection does not depend on the subsection 5.1.1. The second option builds on the syntax and semantics that were already defined for LTL formulae. It is this option that we will use for this book, since it allows us to focus exclusively on the past modalities that are the focus of this section. \begin{definition} LTLP formulae over the set $LTL$ of LTL formulae are formed according to the following grammar: $$\phi ::= l \mid \phi_1 \Sop \phi_2 \mid \Xop^{-1} \phi$$ where $l \in LTL$. \end{definition} Additionally, we extend LTLP further with the following abbreviations: \begin{definition} Given $\phi \in LTLP$, then\footnote{Note that we assume that the LTL formulas are also extended as given in subsection 5.1.1}: \begin{align*} %\Fop \phi &\defeq \top \Uop \phi\\ %\Gop \phi &\defeq \neg \Fop \neg \phi\\ \Fop^{-1} \phi &\defeq \top \Sop \phi\\ \Gop^{-1} \phi &\defeq \neg \Fop^{-1} \neg \phi \end{align*} \end{definition} \subsection{LTL and LTL-Past} %TODO: Consider/Analyse differences between LTL and LTL-Past \subsection{LTL-Past to LTL} %TODO: Provide the syntactic algorithm to convert LTLP to LTL %TODO: Provide algorithm via automata to convert LTLP to LTL %TODO: In both cases make use of examples from SSH Paper %TODO: (Section?) Assess if LTLP is actually more succinct using the examples from the SSH Paper \subsection{Minimal Bad Prefix in NuSMV} %TODO: Given a formula of the form vw^\omega, can we find a n \in \mathbb{N} such that vw^n is a bad prefix? \section{Contribution} %TODO: Like we are some immature group of children, we have to provide proof of contribution \printbibliography \end{document}