Number Systems and Computer Arithmetic

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/20

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering number base conversions, signed binary representations (sign-magnitude, 1's complement, 2's complement), binary arithmetic errors, and IEEE 754 floating-point format standard.

Last updated 9:51 PM on 9/4/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

21 Terms

1
New cards

Radix (Base)

The number of unique digits used to represent numbers in a positional numeral system (e.g., base 88 for octal and base 1616 for hexadecimal).

2
New cards

Octal System

A base-88 (radix-88) number system that uses positional values based on powers of 88 and digits from 00 to 77.

3
New cards

Hexadecimal System

A base-1616 (radix-1616) number system that uses digits 00 through 99 and letters AA through FF to represent decimal values 1010 through 1515.

4
New cards

Decimal to Binary Conversion (Integer Part)

The process of repeatedly dividing an integer by 22, recording the remainders, and writing the sequence of remainders in reverse order until the quotient becomes 00.

5
New cards

Decimal to Binary Conversion (Fractional Part)

The process of repeatedly multiplying a fractional part by 22, recording the resulting integer digits in sequence, and discarding each integer part before repeating on the remaining fraction.

6
New cards

Leading Zeroes

Zeroes added at the beginning (left) of an integer binary number to complete a group of four bits for hexadecimal conversion.

7
New cards

Trailing Zeroes

Zeroes added at the end (right) of a fractional binary number to complete a group of four bits for hexadecimal conversion.

8
New cards

Unsigned Binary Numbers

An nn-bit binary representation for non-negative integers only, capable of representing values in the range from 00 to 2n12^n - 1.

9
New cards

Sign-Magnitude Representation

A signed number format where the most significant bit (MSB) represents the sign (00 for positive, 11 for negative) and the remaining n1n-1 bits represent the magnitude. Range is (2n11)-(2^{n-1} - 1) to 2n112^{n-1} - 1.

10
New cards

One's Complement Representation

A signed number format where positive numbers are represented normally and negative numbers are formed by complementing (flipping) every bit (00 to 11 and 11 to 00). Range is (2n11)-(2^{n-1} - 1) to 2n112^{n-1} - 1.

11
New cards

Two's Complement Representation

A signed number format where negative numbers are formed by complementing every bit of the positive number and adding 11. Range is 2n1-2^{n-1} to 2n112^{n-1} - 1, offering a single representation for zero.

12
New cards

End-Around Carry

An extra step required in 1's complement addition/subtraction where, if addition produces a carry out of the most significant bit, that carry of 11 is added back to the least significant bit of the result.

13
New cards

Overflow

A condition that occurs when adding two positive numbers yields a negative result, detected when the carry-in and carry-out of the MSB are different.

14
New cards

Underflow

A condition that occurs when adding two negative numbers yields a positive result, detected when the carry-in and carry-out of the MSB are different.

15
New cards

IEEE 754 Standard

The technical standard established by the Institute of Electrical and Electronics Engineers for floating-point representation and binary arithmetic.

16
New cards

Single Precision Floating-Point

A 3232-bit IEEE 754 floating-point format consisting of a 11-bit sign, an 88-bit exponent field, and a 2323-bit fraction field.

17
New cards

Double Precision Floating-Point

A 6464-bit IEEE 754 floating-point format consisting of a 11-bit sign, an 1111-bit exponent field, and a 5252-bit fraction field.

18
New cards

Normalized Numbers (IEEE 754)

Floating-point numbers in single precision calculated using the formula (1)s×1.f×2E127(-1)^s \times 1.f \times 2^{E-127}.

19
New cards

Denormalized Numbers (IEEE 754)

Floating-point numbers in single precision where the exponent field E=0E = 0, calculated using the formula (1)s×0.f×2126(-1)^s \times 0.f \times 2^{-126}.

20
New cards

NaN (Not a Number)

A special floating-point value in IEEE 754 represented by an exponent field of all 1s (1111111111111111) and any non-zero fraction field.

21
New cards

Floating-Point Infinity (Inf)

A special representation in IEEE 754 single precision defined by an exponent field of all 1s (1111111111111111) and a fraction field of all zeroes (0000000000000000000000000000000000000000000000).