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