Tech Nerd
8.01K subscribers
1.01K photos
162 videos
25 files
577 links
yeab | 21 | M | Developer | Dropout
https://portfolio-mine-livid.vercel.app

This is my Blog .. Feel free to join 👋
Download Telegram
#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