2) Boolean Algebra and Logic Gates Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What is Boolean Algebra?

A

Boolean algebra is a formal notation for describing logical relations. AND, OR & NOT.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

NOT Gate

A

Q = ¬A (NOT A)

Input Output
A NOT A
1 0
0 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

AND Gate

A

Q = A . B (A AND B)

A            B            Q
0            0             0
0             1             0
1              0            0 
1              1              1
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

OR Gate

A

Q = A + B (A OR B)

A             B            Q
0             0            0
0             1              1
1              0             1
1              1              1
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

XOR

A
Q = A ⊕ B (A XOR B)
Q = (A . ̅B) + (Ā . B)

“Exclusive OR” - True when one input or the other is True, not both.

A           B             Q
0           0              0
0           1               1
1            0              1
1            1               0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

NOR

A

Q = (A+B) ̅ NOT (A OR B)

A           B              Q
0           0               1           
0            1               0
1             0              0
1             1               0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

NAND

A

Q = (A.B) ̅ NOT (A AND B)

A           B             Q
0           0             1
0           1              1
1            0             1
1            1              0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Order of operations

A
  1. Brackets
  2. NOT ( ̅ or ¬)
  3. AND, NAND ( . )
  4. OR, NOR, XOR ( + or ⊕)

A.B+C
(A.B)+C

How well did you know this?
1
Not at all
2
3
4
5
Perfectly