The following boolean expression in CNF form
$$ (x \lor y) \land (x \lor \lnot z) $$
Has been mapped into the Karnaugh map below
\begin{array}{| c | c | c | c | c |} \hline - & yz & y\lnot z & \lnot y \lnot z & \lnot y z \\ \hline x & 1 & 1 & 1 & 1 \\ \hline \lnot x & 0 & 1 & 0 & 0 \\ \hline \end{array}
How can I get the DNF from this Karnaugh map?
CNFexpression? – olfek Apr 13 '17 at 23:57