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