Expresión (notA)and(notB)and(not(A+notB))+(AB)and(not(A+B))
El profesor se sorprenderá mucho al ver tu solución correcta😉
Solución
Solución detallada
$$\neg \left(a \vee b\right) = \neg a \wedge \neg b$$
$$a \wedge b \wedge \neg \left(a \vee b\right) = \text{False}$$
$$\neg \left(a \vee \neg b\right) = b \wedge \neg a$$
$$\neg a \wedge \neg b \wedge \neg \left(a \vee \neg b\right) = \text{False}$$
$$\left(a \wedge b \wedge \neg \left(a \vee b\right)\right) \vee \left(\neg a \wedge \neg b \wedge \neg \left(a \vee \neg b\right)\right) = \text{False}$$
Tabla de verdad
+---+---+--------+
| a | b | result |
+===+===+========+
| 0 | 0 | 0 |
+---+---+--------+
| 0 | 1 | 0 |
+---+---+--------+
| 1 | 0 | 0 |
+---+---+--------+
| 1 | 1 | 0 |
+---+---+--------+