Here you can ask questions and find or give answers to organizational, academic and other questions about studying computer science.

1.1k questions

1.2k answers

1.6k comments

529 users

0 votes
Hello,

the definition of universal predecessors in set theory is pre∀(Q) := {s1 ∈ S | suc(s1) ⊆ Q}, i.e. all states of S that have all their successors (if any) in Q. If a state has no successors it is also contained in pre∀(Q).
The definition of pre∀(Q) in propositional logic is the following, with φ being the formula that symbolically represents Q and R being the formula of the symbolic transition relation:
pre∀(φ) :⇔ ∀x1′ . . . xn′. R → old2new(φ)
(old2new(): substitutes state variables xi with next state variables xi').

In the set representation, also all states that have no successors are contained. But since those states have no outgoing transitions, they are not contained in R → old2new(φ) and therefore also not represented by pre∀(φ). Is that correct or have I done a mistake?

Best regards,
choehne
in * TF "Emb. Sys. and Rob." by (770 points)
edited by
Thank you for your interesting question! One humble wish for the future: Could you possible use the tag “VRS”?
Thanks for letting me know! I fixed it in my past questions.

1 Answer

+1 vote
 
Best answer

You have made a mistake: Look if a state x does not have outgoing transitions, then the transition relation R(x,x') is not satisfied for any assignment to x' if x is assigned with the values of the state in question. Hence, the implication R(x,x') →φ(x')  you mention is trivially true for that x and any x', and hence, that state x is in pre∀(φ).

So, both definitions are indeed equivalent to each other.

by (166k points)
selected by
Thank you very much! I ran into the pitfall of implications, as I have done more than once before :-)
Yes, this "vacuous" satisfaction of implication is making us often trouble, but it is the only option to be consistent with most definitions. Bytheway, that is also a big trouble for specifications: It is easy to verify Phi->Psi for any system in case Phi is unsatisfiable, but it is meaningless.
In set theory, we can express ∀x∈X. … and  ∃x∈X. …. In quantified logic, there is a slight difference. There, we'd write ∃x. X(x) ∧ … and ∀x. X(x) → ….
Thanks to both of you for your advices!
Imprint | Privacy Policy
...