Computer Science
State the two Idempotent laws of boolean algebra. Verify any one of them using the truth table.
Boolean Algebra
11 Likes
Answer
This law states that when a variable is either added or multiplied to the same variable will result in the same variable.
A + A = A
A . A = A
Truth Table
A | A | A+A |
---|---|---|
0 | 0 | 0 |
1 | 1 | 1 |
A | A | A.A |
---|---|---|
0 | 0 | 0 |
1 | 1 | 1 |
Answered By
7 Likes
Related Questions
Reduce the following boolean functions with the help of Karnaugh's map:
F(U, V, W, Z)=Σ(0, 1, 2, 3, 12, 13, 14, 15)State the dual form of the following boolean expression:
X.Y'(X.Y'.Z + X + X'.Z')Given the boolean function F(x, y, z)=Σ(0, 2, 4, 5, 6). Reduce it using Karnaugh's map.
Given: F(x, y, z)=Σ(1, 4, 5, 6, 7).
Prove that: F(x, y, z)=π(0, 2, 3).