1

I need to simplify the following, although can't find good examples to indicate how to achieve this.

$$(A+\bar{B}).\bar{A}$$

Hasan Heydari
  • 1,187
  • 1
  • 8
  • 22

2 Answers2

1

\begin{align}(A + \bar{B}).\bar{A} &= A.\bar{A} + \bar{B}.\bar{A} \\& = False + \bar{B}.\bar{A} \\&= \bar{B}.\bar{A} \\&=\overline{(B+A)}\end{align}

Hasan Heydari
  • 1,187
  • 1
  • 8
  • 22
0

Sit and learn:

http://www.electronics-tutorials.ws/boolean/bool_6.html

This is a simple to learn.

Moreover, I will advice to learn Karnaugh map for harder question.

Mr.O
  • 584