1.4.3 - Boolean Algebra

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

13 Terms

1
New cards

What are the types of logic gates

Symbol

AND - Conjunction - ^

OR - Disjunction - v

NOT - Negation - ¬

XOR - Exclusive Disjunction - v with a line under it

<p>AND - Conjunction - ^</p><p>OR - Disjunction - v</p><p>NOT - Negation - ¬</p><p>XOR - Exclusive Disjunction - v with a line under it</p>
2
New cards

What is a Karnaugh map

Draw one

A way of mapping out the effect variables have when they are true/ false

<p>A way of mapping out the effect variables have when they are true/ false</p>
3
New cards

What are the simplifying laws

De Morgan

Distribution

Associating

Commutation

Double Negation

4
New cards

What is de morgans law

Breaking the negative and then changing the operator between two literals

<p>Breaking the negative and then changing the operator between two literals</p>
5
New cards

What is distribution

A and B or A and C = A and (C or B)

A or B and A or C = A or (B and C)

<p>A and B or A and C = A and (C or B)</p><p>A or B and A or C = A or (B and C)</p>
6
New cards

What is association

Getting rid of/ adding brackets

<p>Getting rid of/ adding brackets</p>
7
New cards

Commutation

A and B is equal to B and A

<p>A and B is equal to B and A</p>
8
New cards

Double negation

Double negative = positive

<p>Double negative = positive</p>
9
New cards

What are the logic circuits you should know

D-type flips flops

Half adders

Full adders

10
New cards
<p>What is the D-type flip flop</p>

What is the D-type flip flop

Has two inputs - clock pulse (Used to coordinate components of the CPU) and a control signal

Output will change at a rising edge - the start of a clock tick

The image updates the value of Q whenever the clock ticks (Rising edge) The value of is the stored value in the image.

A flip-flop is a basic unit of memory and set of flip-flops can be combined together to create registers

<p>Has two inputs - clock pulse (Used to coordinate components of the CPU) and a control signal </p><p>Output will change at a rising edge - the start of a clock tick</p><p>The image updates the value of Q whenever the clock ticks (Rising edge) The value of is the stored value in the image.</p><p>A flip-flop is a basic unit of memory and set of flip-flops can be combined together to create registers</p>
11
New cards

What is an adder

A logic circuit which adds together the number of inputs which are true and outputs the number in binary

There are two adder circuits - half and full

12
New cards

What is an half adder

Two inputs - A and B

Two outputs - Sum and Carry

Circuit is formed from just two logic gates AND, XOR

<p>Two inputs - A and B</p><p>Two outputs - Sum and Carry</p><p>Circuit is formed from just two logic gates AND, XOR</p>
13
New cards

What is a full adder

Similar to half adder but has an additional input allowing for a carry in to be represented.

The carry in allows the full adder to be chained together as the result from the last will be CARRIED IN

<p>Similar to half adder but has an additional input allowing for a carry in to be represented. </p><p>The carry in allows the full adder to be chained together as the result from the last will be CARRIED IN</p>