Beta Phase: Square45 is currently in beta testing. Expect some features or content to be incomplete or missing.
45

Logic Gates (AND, OR, NOT)

The fundamental physical and mathematical components of digital electronics. They implement basic Boolean operations: Y=ABY = A \land B, Y=ABY = A \lor B, Y=¬AY = \neg A.
📜

The statement of the theorem

Define the fundamental Boolean operations Y=f(A,B)Y = f(A, B) using the following formal definitions: \n1. AND Gate (Conjunction): Y=AB={1if A=1 and B=10otherwiseY = A \land B = \begin{cases} 1 & \text{if } A=1 \text{ and } B=1 \\ 0 & \text{otherwise} \end{cases}\n2. OR Gate (Disjunction): Y=AB={0if A=0 and B=01otherwiseY = A \lor B = \begin{cases} 0 & \text{if } A=0 \text{ and } B=0 \\ 1 & \text{otherwise} \end{cases}\n3. NOT Gate (Negation): Y=¬A=1AY = \neg A = 1 - A (assuming B={0,1}\text{B} = \{0, 1\}). These operations are idempotent, commutative, and associative.