IEE 754 Representaion Flashcards
What does IEEE stand for?
Institute of Electrical and Electronics Engineers
What is the significand stored in in IEEE form?
Standard binary encoding
What is special about the significand in IEEE form?
We do not store the first 1 in the binary pattern we need to store.
What is the exponent stored in?
Excess representation, with standard bias
What is the standard bias for excess representation?
2^(L-1) -1
What is the length of the pattern with single precision?
32 total, 1 for sign bit, 8 for exponent, 23 for significand
What is the length of the pattern with double precision?
64 total, 1 for sign, 11 for exponent, 52 for significand
What is the length of the pattern with quadruple precision?
128 total, 1 for sign, 15 for exponent, 112 for significand
What is the significand represented as?
- (implicit 1). The exponent tells the computer to move the decimal place to move to the left or right x amount of places. (-x goes left, +x goes right)