Number systems

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

1/15

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.

16 Terms

1
New cards

The left-most bit

The most significant bit in the binary system.

2
New cards

Unsigned number

A non-negative integer; where all the bits contribute to magnitude

3
New cards

Signed number

A number that can be positive or negative.

The left most bits is a sign; 1 is negative and 0 is positive. And rest of the bits are magnitude.

4
New cards

Positional (radix-r) representation

A system where the value of a number is expressed as a weighted sum of digits, each digit multiplied by a power of the radix r.

5
New cards

V = Σki*r^i

General formula for positional (radix-r) representation

The radix r which is associated with the i digit’s position is what determines the weight of each digit.

6
New cards

V

Symbol that represents the value of number being represented inside the general formula for positional (radix-r) representation

7
New cards

Σ

Symbol that represents the summation (we add up all the terms across the digit positions) in the general formula for positional (radix-r) representation

8
New cards

ki

Symbol that represents the digit at the position i inside the general formula for positional (radix-r) representation

9
New cards

r

Symbol that represents the radix of the number, which is also called the base number.

10
New cards

i

Symbol that represents the position index which can be positive for the integer places and negative for the fractional places. It is raised by the radix symbol

11
New cards

10: (0-9)

Radix of the decimal

12
New cards

2: (0-1)

Radix of the binary

13
New cards

8: (0-7)

Radix of the octal

14
New cards

16: (0-9; A-F)

Radix of the hexadecimal

15
New cards

Group bit in 3s from the LSB

Binary → Octal conversion rule

16
New cards

Group bits in 4s from the LSB

Binary → Hexadecimal conversion rule