Reputation: 47300
How can simplify down the following boolean expression ?
Upvotes: 0
Views: 948
Reputation: 29942
This could be written as
Q = A * B + A * B'
that is like to write
Q = A * (B + B')
that is
Q = A * 1 => A
Upvotes: 1
Reputation: 182714
I think from the first DeMorgan law you can convert it to:
Q = A.B + A.B'
Which is A.
Upvotes: 2