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

595 users

0 votes
VRS_PropLogic: pg 123

"if a subformula has only positive or only negative occurences, then implications are sufficient for abbreviating the new variables"

From what I understand, the linear clause form for a formula :

b ->  a &(b|c)

_______________________

x0 -> (b|c) : {!x0, b,c}

x1-> (a&c) : {!x1,a}, {!x1,x0}

x2 -> (b ->x1) : {!x2, !b, x1}

x2: {x2}

_________________________

Am I correct in deducing this would also be a valid linear-clause formula?

I only see the solution for "↔" in the exam solutions. Would the implication solution also be accepted?
in * TF "Emb. Sys. and Rob." by (180 points)

1 Answer

+1 vote

Of course, you can use the optimization when we have only positive occurrences. Your computation is correct, and you can even eliminate the final x2:

    x0 -> (b|c)
    x1 -> a&x0
    b->x1

by (172k points)
Imprint | Privacy Policy
...