Expresión не(не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$$
$$\neg a \Rightarrow b = a \vee b$$
$$\neg a \not\Rightarrow b = \neg a \wedge \neg b$$
$$a \not\Rightarrow b \wedge \neg a \not\Rightarrow b = \text{False}$$
Tabla de verdad
+---+---+--------+
| a | b | result |
+===+===+========+
| 0 | 0 | 0 |
+---+---+--------+
| 0 | 1 | 0 |
+---+---+--------+
| 1 | 0 | 0 |
+---+---+--------+
| 1 | 1 | 0 |
+---+---+--------+