Boolean Algebra, using DeMorgan's law

210 Views Asked by At

I have obtained this function:

$$(\overline{A}*D) + (\overline{A}*C) + (\overline{B}*\overline{D})$$

... after I have used Karnaugh Map to simplify the canonical expression.

And now, I am needing to get and equivalent expression using DeMorgan's law to implement the function with NAND gates.

So I have followed these steps:

$$(\overline{A}*D) + (\overline{A}*C) + (\overline{B}*\overline{D})$$

$$\overline{\overline{(\overline{A}*D) + (\overline{A}*C) + (\overline{B}*\overline{D})}}$$

$$\overline{(\overline{\overline{A}*D}) * (\overline{{\overline{A}*C}}) * (\overline{\overline{B}*\overline{D}}})$$

But it is not an equivalent function... thus what I have done wrong?

1

There are 1 best solutions below

0
On

It is equivalent, but I had been implementing the function of wrong way.