#Nand2Tetris #study #lesson1 #Notes
Boolean Algebra
- binary values : 0 and 1 or true and false
Boolean Function :
- accepts input : binary [ 0 and 1]
- returns output : binary [0 and 1 ]
Boolean Operators
- AND (AND) : x.y | x intersection y
- OR (OR) : x + y | x union y
- Not (!) : x line on the top | negation x
// some other operators and their meanings
- Xor : (Not-x and y) or (x and Not-y)
- Nand : Not (x and y)
- Nor : Not (x or y)
- Xnor : Not (x xor y)
- Implication : Not x or y
- Equivalence : (x and y) or (Not-x and Not-y)
@selfmadecoder
Boolean Algebra
- binary values : 0 and 1 or true and false
Boolean Function :
- accepts input : binary [ 0 and 1]
- returns output : binary [0 and 1 ]
Boolean Operators
- AND (AND) : x.y | x intersection y
- OR (OR) : x + y | x union y
- Not (!) : x line on the top | negation x
// some other operators and their meanings
- Xor : (Not-x and y) or (x and Not-y)
- Nand : Not (x and y)
- Nor : Not (x or y)
- Xnor : Not (x xor y)
- Implication : Not x or y
- Equivalence : (x and y) or (Not-x and Not-y)
@selfmadecoder