DIGital:

Lesson 0010: Continuation of Boolean Expression Notation


The Rules


Check Up

What is the following operation the same as?

~(~(A+B))

Well, there are two ways to go about this problem. We can look at it and simplify it using boolean algebra, or we can look at it from a logical perspective. Always look at it from a logical perspective before you begin using boolean algebra.

We can see here that we have a NOT operation on an A OR B. But then we see that NOT-ed again. If we think about it, if we do NOT(NOT A) then the answer is just A. So, NOT(NOT(A OR B)) just is A OR B.



Check your progress

  1. What is the following expression equal to when A is true and B is false? ~(A+B)

      1
      0

  2. If A and B are both the same, the answer is true and if they are different, the answer is false, what is the boolean expression?
      A NOR B
      A NAND B
      A EQUIV B
      A XOR B

  3. What operation is being used in the following equation?

    A+~B

      A NOR B
      A NAND B
      A XOR B
      none of the above

  4. Give the result of the following expression if A is true, B is true,and C is false.

    ~(AB)~(AC)


      1
      0

  5. Which one of the following operations is an EQUIV operation?

      A@B
      ~(A@B)
      none of the above

  6. What two operators form the NOR operation?

      XOR and NOT
      OR and AND
      OR and NOT
      none of the above




DIGital
An Online Digital Circuitry Course
Your Comments Welcome