What's the difference between the dual and the complement of a boolean expression?

Viewed 96862

Its the same thing right? Or is there a slight difference? I just wanna make sure I'm not misunderstanding anything.

7 Answers

In finding dual, we replace

  1. AND with OR and vice versa
  2. 0 with 1 and vice versa

In finding complement, in addition to above two, we also need to replace

A with A' and vice versa (that is, variables with their complements)

Related