1

How do I simplify the Boolean function: ABC + B I've tried doing De Morgan's, but that doesn't do anything to simplify this. Can somebody show the steps on how to simplify this please?

joe
  • 13

2 Answers2

1

$ABC+\bar{A} +\bar{C} = ABC+ \bar{A}BC+ \bar{A} +\bar{C} =BC + \bar{A} +\bar{C}$.

$BC + \bar{A} +\bar{C}= BC + \bar{A} +\bar{C} + B\bar{C}= B + \bar{A} +\bar{C}$.

copper.hat
  • 172,524
  • how do you get from ABC + A' + C' to ABC + A'BC + A' + C'? what theorem do you use? – joe Aug 09 '16 at 04:04
  • 1
    It is easy to verify using a truth table that $X = X + XY$ for any $Y$. Hence $\bar{A} = \bar{A}+ \bar{A}BC$. – copper.hat Aug 09 '16 at 04:31
0

DeMorgan's is the right way to go.

To get you started, it gives you: $$\begin{align}&\rm ABC+A'+C' \\[1ex]=~&\rm B(AC)+(AC)'\\[1ex] \ddots\end{align}$$

Now try distribution and simplify. (Alt: you could distribute and simplify twice.)

Graham Kemp
  • 129,094