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

531 users

0 votes
KV-Diagram Sheet 09
((d|a?d:(c->a))|((a?c:c)?d<->d:!b)->c)

I have a question regarding this propositional formular. Why is the case a=1,b=0,c=0,d=0 true? In the solution it says that its true. Due to the precedence rules, 'or' is prioritized over the 'implication' (narrow), that means that either the left part of 'or' or the right part implicies c. Do i misunderstand the formular?

in * Other Teaching Fields by (410 points)

1 Answer

0 votes

You are right. This is a mistake. for a=1, b=0, c=0, d=0 the formula should be false. You can also double check with the tools.

 ((d|a?d:(c->a))|((a?c:c)?d<->d:!b)->c)
⇔((0|1?0:(0->1))|((1?0:0)?0<->0:!0)->0)
⇔((1?0:1)|(0?0<->0:1)->0)
⇔(0|1->0)
⇔(1->0)
⇔0
by (2.4k points)

Related questions

0 votes
1 answer
asked Aug 22, 2020 in * Other Teaching Fields by davidschulz (410 points)
0 votes
1 answer
asked Aug 21, 2020 in * Other Teaching Fields by Eichi (200 points)
0 votes
1 answer
asked Aug 21, 2020 in * Other Teaching Fields by Eichi (200 points)
+1 vote
1 answer
asked Aug 18, 2020 in * Other Teaching Fields by davidschulz (410 points)
+1 vote
1 answer
asked Aug 18, 2020 in * Other Teaching Fields by Eichi (200 points)
Imprint | Privacy Policy
...