Lesson 6: Number System Conversion

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

1/73

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.

74 Terms

1
New cards

Types of Number System Conversions

  • Binary to Decimal, Octal, Hexadecimal

  • Decimal to Binary, Octal, Hexadecimal

  • Octal to Decimal, Binary, Hexadecimal

  • Hexadecimal to Binary, Octal, Decimal

2
New cards

2

Binary numbers are based on the radix of __.

3
New cards

10

Decimal numbers are based on the radix of ___.

4
New cards

1, 0

Binary will only be represented in__ and ___

5
New cards

2

What is the base of binary numbers?

6
New cards

10

What is the base of decimal numbers?

7
New cards

1 and 0

What digits does binary use?

8
New cards

Write exponent markers above the digits starting from 0 on the right.

What is the first step in converting binary to decimal?

9
New cards

The power of 2 for each digit.

What does the exponent marker show?

10
New cards

Multiply them by 2 raised to the power of their position.

What do you do with the digits that are 1?

11
New cards

Ignore them (they contribute 0).

What do you do with the digits that are 0?

12
New cards

Add all the results together.

What is the last step after multiplying the digits?

13
New cards

binary is based on 2.

Why do we use powers of 2?

14
New cards

13₁₀ (8 + 4 + 0 + 1)

What is the decimal value of 1101₂

15
New cards

Binary to Octal Conversion

It is converting binary numbers to octal

16
New cards

3 binary digits

How many binary digits make up one octal digit?

17
New cards

Group the binary digits into groups of three, starting from the right (least significant bit).

What is the first step when converting binary to octal?

18
New cards

Add 0s to the left until it has three digits.

What do you do if the leftmost group doesn’t have three digits?

19
New cards

Add 0s to the right to complete a group of three digits.

What should you do if the number has a decimal part (fraction)?

20
New cards

Convert each group of three binary digits into its decimal equivalent.

After grouping into threes, what’s the next step?

21
New cards

What is the place value concept used when converting each group?

(4, 2, 1) – each position represents 4, 2, and 1 from left to right.

22
New cards

What do you do after converting each group into decimal?

Write the decimal results together — that’s the octal number.

23
New cards

Because one octal digit equals three binary digits.

Why do we group binary digits into three?

24
New cards

Binary to Hexadecimal Conversion

It is the convertion of binary values to hexadecimal conversion

25
New cards

4 binary digits

How many binary digits make up one hexadecimal digit?

26
New cards

Group the binary digits into groups of four, starting from the right (least significant bit).

What is the first step when converting binary to hexadecimal?

27
New cards

Add 0s to the left until it has four digits.

What do you do if the leftmost group doesn’t have four digits?

28
New cards

Add 0s to the right until the group has four digits.

What should you do if the binary number has a fractional part (decimal)?

29
New cards

Convert each group of four binary digits into its decimal equivalent.

After grouping into fours, what’s the next step?

30
New cards

(8, 4, 2, 1) – each position from left to right represents 8, 4, 2, and 1.

What place value concept is used when converting each group of four?

31
New cards

Replace them with their hexadecimal symbols: A=10, B=11, C=12, D=13, E=14, F=15.

What should you do with decimal results from 10 to 15?

32
New cards

Combine them to form the final hexadecimal number.

What do you do after converting all groups into hex digits?

33
New cards
  • Step 1: Group → 1101 0110

  • Step 2: Convert → 13 6

  • Step 3: Replace → D6₁₆

Example: What is 11010110₂ in hexadecimal?

34
New cards

Because one hexadecimal digit equals four binary digits.

Why do we group binary digits into four?

35
New cards

Decimal to Binary Conversion

It is the convertion of decimal numbers to binary values.

36
New cards

To change a number with base 10 into a number with base 2.

What is the goal of decimal to binary conversion?

37
New cards

Successive division by 2.

What is the main method used to convert the whole number part?

38
New cards

Successive multiplication by 2.

What is the main method used to convert the fractional part (if any)?

39
New cards

Divide the decimal number by 2.

What is the first step when converting a decimal number to binary?

40
New cards

Record the remainder — it will become part of the binary number.

What do you do with the remainder after dividing by 2?

41
New cards

Divide the quotient again by 2.

What do you do with the quotient after division?

42
New cards

When the quotient becomes 0.

When do you stop dividing by 2?

43
New cards

Write the remainders in reverse order (from last to first).

How do you write the final binary number?

44
New cards

Multiply the fractional part by 2 repeatedly and record the whole number parts that appear.

What should you do if there’s a fractional part in the decimal number?

45
New cards

Combine the whole number result (from division) and the fractional result (from multiplication) separated by a binary point.

How do you form the final binary number when there’s a fraction?

46
New cards

25 ÷ 2 = 12 remainder 1

12 ÷ 2 = 6 remainder 0

6 ÷ 2 = 3 remainder 0

3 ÷ 2 = 1 remainder 1

1 ÷ 2 = 0 remainder 1

Final answer (reverse remainders): 11001₂

Convert 25₁₀ to binary

47
New cards

Because the first remainder corresponds to the least significant bit (LSB) and the last remainder is the most significant bit (MSB).

Why do we reverse the order of the remainders?

48
New cards

Decimal to Octal Conversion

It is the conversion from decimal to octal values.

49
New cards

To convert a number from base 10 (decimal) to base 8 (octal).

What is the goal of decimal to octal conversion?

50
New cards

Successive division by 8.

What is the main method used to convert the whole number part?

51
New cards

Successive multiplication by 8.

What is the method used to convert the fractional part (if any)?

52
New cards

Divide the decimal number by 8.

What is the first step in converting a decimal number to octal?

53
New cards

Record the remainder — it becomes part of the octal result.

What do you do with the remainder after division?

54
New cards

What do you do with the quotient?

Continue dividing the quotient by 8.

55
New cards

When the quotient becomes 0.

When do you stop dividing by 8?

56
New cards

How do you write the final octal number?

Write the remainders in reverse order (from last to first).

57
New cards

Multiply the fractional part by 8 and record the whole number part each time.

How do you convert a fractional part to octal?

58
New cards

Combine the whole number result (from division) and the fractional result (from multiplication) with a radix point (octal point).

How do you form the final octal result if there’s a fraction?

59
New cards
60
New cards
  • 125 ÷ 8 = 15 remainder 5

  • 15 ÷ 8 = 1 remainder 7

  • 1 ÷ 8 = 0 remainder 1

  • Final answer (reverse order): 175₈

Convert 125₁₀ to octal.

61
New cards

Because the first remainder represents the least significant digit (rightmost) and the last remainder is the most significant (leftmost).

Why is the remainder reversed in the final answer?

62
New cards

To convert a number from base 10 (decimal) to base 16 (hexadecimal).

What is the goal of decimal to hexadecimal conversion?

63
New cards

Successive division by 16.

What is the main method used to convert the whole number part?

64
New cards

Successive multiplication by 16.

What is the method used to convert the fractional part (if any)?

65
New cards

Divide the decimal number by 16.

What is the first step in converting a decimal number to hexadecimal?

66
New cards

Record the remainder — it becomes part of the hexadecimal result.

What do you do with the remainder after dividing by 16?

67
New cards

Continue dividing the quotient by 16.

What do you do with the quotient after each division?

68
New cards

When the quotient becomes 0.

When do you stop dividing by 16?

69
New cards

Write the remainders in reverse order (from last to first).

How do you write the final hexadecimal number?

70
New cards

Replace it with its hexadecimal symbol:

  • 10 → A

  • 11 → B

  • 12 → C

  • 13 → D

  • 14 → E

  • 15 → F

What do you do if a remainder is between 10 and 15?

71
New cards

Multiply the fractional part by 16 and record the whole number part each time.

How do you convert a fractional part to hexadecimal?

72
New cards

Combine the whole number result (from division) and the fractional result (from multiplication) with a hexadecimal point.

How do you form the final hexadecimal number if there’s a fraction?

73
New cards
  • 250 ÷ 16 = 15 remainder 10 (A)

  • 15 ÷ 16 = 0 remainder 15 (F)

  • Final answer (reverse order): FA₁₆

Example: Convert 250₁₀ to hexadecimal.

74
New cards

Why do we reverse the order of remainders in the final answer?

Because the first remainder represents the least significant digit, while the last remainder is the most significant.