Chapter 2 – Number Systems and Boolean Algebra

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/28

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.

29 Terms

1
New cards

What is a number system?

A writing system for expressing numbers using digits or symbols in a consistent manner.

2
New cards

What is the base (radix) of a number system?

The number of unique digits (including zero) used to represent numbers in that system.

3
New cards

What are the common number systems and their bases?

  • Decimal (Base 10): Digits 0–9

  • Binary (Base 2): Digits 0, 1

  • Octal (Base 8): Digits 0–7

  • Hexadecimal (Base 16): Digits 0–9 and A–F

4
New cards

 How do you convert from any base to decimal?

Multiply each digit by its base raised to the power of its position and sum the results.

5
New cards

Which number system is used internally by computers?

Binary

6
New cards

How do you convert binary to octal?

Group binary digits in groups of 3 from the right and convert each group to an octal digit.

7
New cards

How do you convert binary to hexadecimal?

Group binary digits in groups of 4 from the right and convert each group to a hex digit.

8
New cards

What is Boolean algebra?

A branch of algebra where variables take values of TRUE (1) or FALSE (0).

9
New cards

Boolean algebra uses which values?

True and False

10
New cards

What are the Commutative Laws of Boolean algebra?

A + B = B + A → A · B = B · A

11
New cards

What are the associative laws?

A + (B + C) = (A + B) + C → A · (B · C) = (A · B) · C

12
New cards

What are the Distributive Laws?

A + (B · C) = (A + B)(A + C → A · (B + C) = A·B + A·C

13
New cards

What does De Morgan’s first law state?

(A + B)’ = A’ · B’

14
New cards

What is the Absorption Law?

A + A·B = A → A·(A + B) = A

15
New cards

How do you simplify Boolean expressions?

Apply Boolean laws (commutative, associative, distributive, etc.) to reduce expressions to simpler forms.

16
New cards

Which Boolean form uses a sum of minterms?

Sum of Products (SOP)

17
New cards

What are minterms and maxterms?

  • Minterm: Product (AND) of all variables in true/false form.

  • Maxterm: Sum (OR) of all variables in true/false form.

18
New cards

How are minterms defined?

Product of all variables once (true or complemented)

19
New cards

What is the Sum of Products (SOP) form?

Expression represented as a sum (OR) of minterms.

20
New cards

What is the Product of Sums (POS) form?

Expression represented as a product (AND) of maxterms.

21
New cards

What are the two canonical forms?

  • SOP (Σ): Sum of minterms.

  • POS (π): Product of maxterms.

22
New cards

How do you convert between canonical forms?

Replace Σ with π and list the missing minterm/maxterm indices.

23
New cards

What is a standard form Boolean expression?

A Boolean expression where all terms include all variables, expanded for simplification.

24
New cards

What is a Karnaugh Map (K-Map)?

A graphical tool used to simplify Boolean expressions by grouping adjacent 1s.

25
New cards

What is a Karnaugh Map (K-Map) used for?

Boolean simplification

26
New cards

Which of the following is NOT a K-Map rule?

Groups can be diagonal

27
New cards

What are “don’t care” conditions in K-Maps?

Inputs that are irrelevant for simplification

28
New cards

What is the Logisim tool used for?

To design and simulate digital circuits implementing Boolean expressions.

29
New cards

What tool can be used to draw and test logic gate circuits?

Logisim