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

1.2k questions

1.3k answers

1.7k comments

582 users

0 votes

ago in # Study-Organisation (Master) by (120 points)

1 Answer

0 votes

For instance, you can use the following formula:

exists(
    {q0,q1},
    q0&!q1|q0&q1,
    !q0 &!q1 & !a & !next(q0) |
    !q0 & q1 & !a &  next(q0) &  next(q1) |
     q0 & q1 & !a & !next(q0) & !next(q1) |
     q0 & q1 &  a &  next(q0) & !next(q1) |
     q0 &!q1 & !a & !next(q0) & !next(q1) ,
    {},
    F G (!q0&!q1|q1&!q0)
)
or as an alternative this one as well:
exists(
    {q0,q1},
    q0,
    !q0 & q1 & !a &  next(q0) & next(q1) |
     q0 & q1 &  a &  next(q0) & !next(q1) | 
    !q0 &!q1 & !a & !next(q0) |
     q0      & !a & !next(q0) & !next(q1) ,
    {},
    F G !q0
)
ago by (171k points)
Imprint | Privacy Policy
...