Preview

11 - Simplifying Statements #2

 1. ~(A * B) * (~A + B) * (~B + B) can be reduced to:

  A

  B

  A+B

  ~A

 2. (A +B) * (A + B) * (~B + B) can be reduced to:

   (A + B)

  A

  ~A

  B

 3. A*(A +B) *B*A*A+ B*(A+B) can be reduced to:

  ~A

  B

   (A + B)

  A

 4. A*(B+B+A+A+C+C) can be reduced to:

  ~A

  B

  A

   (A + B)

 5. A*(B*A) can be reduced to B

  TRUE

  FALSE

 6. A+B*(C+~B)+~A+(~A) can be reduced to:

  FALSE

  TRUE

  A

  A+B

 7. B+(A+A+C) can be reduced to just 'A'

  TRUE

  FALSE

 8. A*(A+(B*C*D)+A+(C+~C)) can be reduced to:

  A+D

  ~A

  B+C

  A

 9. ~(A * B) * (~A + B) * (~B + B) can be reduced to ~A

  FALSE

  TRUE

 10. (~A + ~B) * (~A + B) can be reduced to just 'A'

  FALSE

  TRUE