I'm currently practicing on Boolean algebra and theorems, recently I found a question that asks to simplify the Boolean expression ABC+A'B'C'. During trying to simplify this when I was trying to construct a KMAP
| A/BC | 00 | 01 | 11 | 10 |
|---|---|---|---|---|
| 0 | 1 | 0 | 0 | 0 |
| 1 | 0 | 0 | 1 | 0 |
I realized that I can instead use A XNOR B AND B XNOR C and so I attempted to figure out how to transform it and this is my try:
$$ABC + \overline A \overline B \overline C$$ $$\overline {\overline{(ABC)} \overline{(\overline A \overline B \overline C)}}$$ $$\overline{(\overline A + \overline B + \overline C)(A + B + C)}$$ $$\overline{\overline AB + \overline AC + \overline BA + \overline BC + \overline CA +\overline CB}$$
after this i can group it up and make the XORS but im stuck and i cannot make the 2 XNOR