1.4.3 Boolean Algebra Flashcards

1
Q

How can problems be defined?

A

Using boolean logic in boolean equations

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

What results can come from a boolean equation?

A

True
False

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

What is the name given to the conjunction operation?

A

AND

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

What is the symbol given to the conjunction operation?

A

ʌ

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

What is the shape given to the conjunction operation?

A

D

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

What is the name given to the disjunction operation?

A

OR

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

What is the symbol given to the disjunction operation?

A

V

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

What is the name given to the negation operation?

A

NOT

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

What is the symbol given to the negation operation?

A

¬

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

What is the shape given to the negation operation?

A

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

What name is given to the exclusive disjunction operation?

A

XOR

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

What symbol is given to the exclusive disjunction operation?

A

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

What is a truth table?

A

A table showing every possible combination of inputs to a logic gate and corresponding output

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

How are boolean equations made?

A

By combining boolean operators

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

What is a Karnaugh map?

A

A method of simpiflying boolean expressions

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

Describe how boolean expressions can be simplified using Karnaugh map.

A

Write truth table as a Karnaugh map
Highlight groups of 1s in map
Remove variables which change within rectangles
Keep variables which do not change

17
Q

How can expressions be simplified using De Morgan’s Law?

A

¬(A ʌ B) = ¬A v ¬B
¬(A v B) = ¬A ʌ ¬B

18
Q

How can expressions be simplified using Distribution Law?

A

A ʌ (B v C) = (A ʌ B) v (A ʌ C)
A v (B ʌ C) = (A v B) ʌ (A v C)
A ʌ (B ʌ C) = (A ʌ B) ʌ (A ʌ C)
A ʌ (B v C) = (A v B) v (A v C)

19
Q

How can expressions be simplified using Association Law?

A

(A ʌ B) ʌ C = A ʌ (B ʌ C) = A ʌ B ʌ C
(A v B) v C = A v (B v C) = A v B v C

20
Q

How can expressions be simplified using Commutation Law?

A

A v B = B v A
A ʌ B = B ʌ A

21
Q

How can expressions be simplified using Double Negation Law?

22
Q

What is the purpose of a D-type flip flop?

A

To store the value of a single bit

23
Q

When is the stored value in a D-type flip flop updated?

A

On the rising edge of the clock signal

24
Q

Which logic gates are used in the logic circuit of a D-type flip flop?

A

4 NAND gates

25
What two inputs are taken in the logic gate of a D-type flip flop?
Control signal Clock
26
What are adders?
Logic circuits which add together the number of inputs which are True
27
What two inputs are taken in the logic gate of a half adder?
A B
28
What two outputs are produced in the logic gate of a half adder?
Sum Carry
29
Which logic gates are used in the logic circuit of a half adder?
AND XOR
30
What values are output by a half adder when both A & B are false?
Sum is False Carry is False
31
What values are output by a half adder when A is True and B is False?
Sum is True Carry is False
32
What values are output by a half adder when A is False and B is True?
Sum is True Carry is False
33
What values are output by a half adder when both A & B are True?
Sum is False Carry is True
34
What three inputs are taken in the logic gate of a full adder?
A B Carry (in)
35
What two outputs are produced in the logic gate of a full adder?
Sum Carry (out)
36
Which logic gates are used in the logic circuit of a full adder?
2 XOR gates 2 AND gates OR gate