A logical circuit was given, I had to create a boolean expression from it; which I did correctly (I guess). I calculated the output of each gate separately, considering the variables.
From the given circuit I got this expression:
('xy + x) + ((x + y) + z) * 'u
I than would need to put this in a Karnaugh's map to simplify the expression (and later on the circuit). But this is the step I got stuck on.
How to put that expression in Karnaugh's map? Even when I perform algebra on the current expression I get terms which aren't present in the map, or single terms like only 'x', but 'only x' ain't present in the map.
I have already converted expressions to Karnaugh map with no problems, but I guess I have difficulty now because it's with 4 variables, and a tough expression.
