1.4.3 Boolean Algebra Flashcards

You may prefer our related Brainscape-certified 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?

A

¬¬A = A

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
Q

What two inputs are taken in the logic gate of a D-type flip flop?

A

Control signal
Clock

26
Q

What are adders?

A

Logic circuits which add together the number of inputs which are True

27
Q

What two inputs are taken in the logic gate of a half adder?

A

A
B

28
Q

What two outputs are produced in the logic gate of a half adder?

A

Sum
Carry

29
Q

Which logic gates are used in the logic circuit of a half adder?

A

AND
XOR

30
Q

What values are output by a half adder when both A & B are false?

A

Sum is False
Carry is False

31
Q

What values are output by a half adder when A is True and B is False?

A

Sum is True
Carry is False

32
Q

What values are output by a half adder when A is False and B is True?

A

Sum is True
Carry is False

33
Q

What values are output by a half adder when both A & B are True?

A

Sum is False
Carry is True

34
Q

What three inputs are taken in the logic gate of a full adder?

A

A
B
Carry (in)

35
Q

What two outputs are produced in the logic gate of a full adder?

A

Sum
Carry (out)

36
Q

Which logic gates are used in the logic circuit of a full adder?

A

2 XOR gates
2 AND gates
OR gate