Binary Logic
What is a binary logic and what values does it use?
Binary logic is a system used in computing that works with 2 values: 0 (false) and 1(true)
Simplify the expression:
( A + B + C)( A + B̄)(A + C)
A + BC
How many cells are in a 4-variable K-map?
16
Convert the following binary number to hexadecimal and decimal:
110101101011(2)
Hex - D6B
Decimal - 3435
Given the truth table implemented in code:
if (A,B,C): output = 1 for inputs:
001, 010, 011, 101, 111
otherwise 0
a) Write the minterm expression
b) Simplify using a K-map
a) F=Σ(1,2,3,5,7)
b) F=C+BA