Complete the truth tables for these two Boolean expressions: (a) Output = A + B (b) Output = A + AB
Let us complete the truth tables for these two Boolean expressions:
(a) Output = A + B
"\\begin{array}{||c|c||c||}\n\\hline\\hline\nA & B & A+B\\\\\n\\hline\\hline\n0 & 0 & 0\\\\\n\\hline\n0 & 1 & 1 \\\\\n\\hline\n1 & 0 & 1\\\\\n\\hline\n1 & 1 & 1\\\\\n\\hline\\hline\n\\end{array}"
(b) Output = A + AB
"\\begin{array}{||c|c||c|c||}\n\\hline\\hline\nA & B & AB& A+AB\\\\\n\\hline\\hline\n0 & 0 & 0 & 0\\\\\n\\hline\n0 & 1 & 0 & 0\\\\\n\\hline\n1 & 0 & 0 & 1\\\\\n\\hline\n1 & 1 & 1 & 1\\\\\n\\hline\\hline\n\\end{array}"
Comments
Leave a comment