Horace Eye Kc9EYE Boolean Algebra (logic)

logo


Formulas
Capacitance Equivalence and Codes
Programming Projects
Boolean Algebra (logic)
Binary Subtraction Algoithm
AC Components and Values
Code Practice Oscillator Project
Qrp Wattmeter
Voltmeter Impedance Measurement
Wall Wort Testing
QRP Dummy Load
Homebrew Key
Online Log


SOHO MDI
SOHO MDI
Credit:Solar and Heliospheric observatory
LASCO C3
LASCO C3
Credit: Solar and Heliosperic observatory

Combinational Logic Gates
where:
A = input
B = input
Q = result

AND
A B Q
0 0 0
0 1 0
1 0 0
1 1 1
Q = A×B
OR
A B Q
0 0 0
0 1 1
1 0 1
1 1 1
Q = A+B
NOT
Input Output
1 0
0 1
Output = ¬Input
NAND
A B Q
0 0 1
0 1 1
1 0 1
1 1 0
NOR
A B Q
0 0 1
0 1 0
1 0 0
1 1 0
XOR
A B Q
0 0 0
0 1 1
1 0 1
1 1 0
XNOR
A B Q
0 0 1
0 1 0
1 0 0
1 1 1

Single Variable Theorems
Identities: A×1=A , A+0=A
Null elements: A×0=0 , A+1=1
Idempotence: A×A=A , A+A=A
Complements: A׬A=0 , A+¬A=1
Involution: (¬A)=A
Where : ¬ = negation or logical NOT

Multivariable Theorems
Commutative: A×B=B×A , A+B=B+A
Associative: (A×B)×C=A×(B×C) , (A+B)+C=A+(B+C)
Distributive: (A+B)×(A+C)=A+B×C , A×B+A×C=A×(B+C)
Covering: A×(A+B)=A , A+A×B=A
Combining: (A+B)×(A+B)=A , A×B+A׬B=A
Consensus: A×B+¬A×C+B×C=A×B+¬A×C , (A+B)×(¬A+C)×(B+C)=(A+B)×(¬A+C)
Where: ¬ = negation or logical NOT