12 345 678 900 987 654 321.098 765 432 112 582 Converted to 64 Bit Double Precision IEEE 754 Binary Floating Point Representation Standard

Convert decimal 12 345 678 900 987 654 321.098 765 432 112 582(10) to 64 bit double precision IEEE 754 binary floating point representation standard (1 bit for sign, 11 bits for exponent, 52 bits for mantissa)

What are the steps to convert decimal number
12 345 678 900 987 654 321.098 765 432 112 582(10) to 64 bit double precision IEEE 754 binary floating point representation (1 bit for sign, 11 bits for exponent, 52 bits for mantissa)

1. First, convert to binary (in base 2) the integer part: 12 345 678 900 987 654 321.
Divide the number repeatedly by 2.

Keep track of each remainder.

We stop when we get a quotient that is equal to zero.


  • division = quotient + remainder;
  • 12 345 678 900 987 654 321 ÷ 2 = 6 172 839 450 493 827 160 + 1;
  • 6 172 839 450 493 827 160 ÷ 2 = 3 086 419 725 246 913 580 + 0;
  • 3 086 419 725 246 913 580 ÷ 2 = 1 543 209 862 623 456 790 + 0;
  • 1 543 209 862 623 456 790 ÷ 2 = 771 604 931 311 728 395 + 0;
  • 771 604 931 311 728 395 ÷ 2 = 385 802 465 655 864 197 + 1;
  • 385 802 465 655 864 197 ÷ 2 = 192 901 232 827 932 098 + 1;
  • 192 901 232 827 932 098 ÷ 2 = 96 450 616 413 966 049 + 0;
  • 96 450 616 413 966 049 ÷ 2 = 48 225 308 206 983 024 + 1;
  • 48 225 308 206 983 024 ÷ 2 = 24 112 654 103 491 512 + 0;
  • 24 112 654 103 491 512 ÷ 2 = 12 056 327 051 745 756 + 0;
  • 12 056 327 051 745 756 ÷ 2 = 6 028 163 525 872 878 + 0;
  • 6 028 163 525 872 878 ÷ 2 = 3 014 081 762 936 439 + 0;
  • 3 014 081 762 936 439 ÷ 2 = 1 507 040 881 468 219 + 1;
  • 1 507 040 881 468 219 ÷ 2 = 753 520 440 734 109 + 1;
  • 753 520 440 734 109 ÷ 2 = 376 760 220 367 054 + 1;
  • 376 760 220 367 054 ÷ 2 = 188 380 110 183 527 + 0;
  • 188 380 110 183 527 ÷ 2 = 94 190 055 091 763 + 1;
  • 94 190 055 091 763 ÷ 2 = 47 095 027 545 881 + 1;
  • 47 095 027 545 881 ÷ 2 = 23 547 513 772 940 + 1;
  • 23 547 513 772 940 ÷ 2 = 11 773 756 886 470 + 0;
  • 11 773 756 886 470 ÷ 2 = 5 886 878 443 235 + 0;
  • 5 886 878 443 235 ÷ 2 = 2 943 439 221 617 + 1;
  • 2 943 439 221 617 ÷ 2 = 1 471 719 610 808 + 1;
  • 1 471 719 610 808 ÷ 2 = 735 859 805 404 + 0;
  • 735 859 805 404 ÷ 2 = 367 929 902 702 + 0;
  • 367 929 902 702 ÷ 2 = 183 964 951 351 + 0;
  • 183 964 951 351 ÷ 2 = 91 982 475 675 + 1;
  • 91 982 475 675 ÷ 2 = 45 991 237 837 + 1;
  • 45 991 237 837 ÷ 2 = 22 995 618 918 + 1;
  • 22 995 618 918 ÷ 2 = 11 497 809 459 + 0;
  • 11 497 809 459 ÷ 2 = 5 748 904 729 + 1;
  • 5 748 904 729 ÷ 2 = 2 874 452 364 + 1;
  • 2 874 452 364 ÷ 2 = 1 437 226 182 + 0;
  • 1 437 226 182 ÷ 2 = 718 613 091 + 0;
  • 718 613 091 ÷ 2 = 359 306 545 + 1;
  • 359 306 545 ÷ 2 = 179 653 272 + 1;
  • 179 653 272 ÷ 2 = 89 826 636 + 0;
  • 89 826 636 ÷ 2 = 44 913 318 + 0;
  • 44 913 318 ÷ 2 = 22 456 659 + 0;
  • 22 456 659 ÷ 2 = 11 228 329 + 1;
  • 11 228 329 ÷ 2 = 5 614 164 + 1;
  • 5 614 164 ÷ 2 = 2 807 082 + 0;
  • 2 807 082 ÷ 2 = 1 403 541 + 0;
  • 1 403 541 ÷ 2 = 701 770 + 1;
  • 701 770 ÷ 2 = 350 885 + 0;
  • 350 885 ÷ 2 = 175 442 + 1;
  • 175 442 ÷ 2 = 87 721 + 0;
  • 87 721 ÷ 2 = 43 860 + 1;
  • 43 860 ÷ 2 = 21 930 + 0;
  • 21 930 ÷ 2 = 10 965 + 0;
  • 10 965 ÷ 2 = 5 482 + 1;
  • 5 482 ÷ 2 = 2 741 + 0;
  • 2 741 ÷ 2 = 1 370 + 1;
  • 1 370 ÷ 2 = 685 + 0;
  • 685 ÷ 2 = 342 + 1;
  • 342 ÷ 2 = 171 + 0;
  • 171 ÷ 2 = 85 + 1;
  • 85 ÷ 2 = 42 + 1;
  • 42 ÷ 2 = 21 + 0;
  • 21 ÷ 2 = 10 + 1;
  • 10 ÷ 2 = 5 + 0;
  • 5 ÷ 2 = 2 + 1;
  • 2 ÷ 2 = 1 + 0;
  • 1 ÷ 2 = 0 + 1;

2. Construct the base 2 representation of the integer part of the number.

Take all the remainders starting from the bottom of the list constructed above.

12 345 678 900 987 654 321(10) =


1010 1011 0101 0100 1010 1001 1000 1100 1101 1100 0110 0111 0111 0000 1011 0001(2)


3. Convert to binary (base 2) the fractional part: 0.098 765 432 112 582.

Multiply it repeatedly by 2.


Keep track of each integer part of the results.


Stop when we get a fractional part that is equal to zero.


  • #) multiplying = integer + fractional part;
  • 1) 0.098 765 432 112 582 × 2 = 0 + 0.197 530 864 225 164;
  • 2) 0.197 530 864 225 164 × 2 = 0 + 0.395 061 728 450 328;
  • 3) 0.395 061 728 450 328 × 2 = 0 + 0.790 123 456 900 656;
  • 4) 0.790 123 456 900 656 × 2 = 1 + 0.580 246 913 801 312;
  • 5) 0.580 246 913 801 312 × 2 = 1 + 0.160 493 827 602 624;
  • 6) 0.160 493 827 602 624 × 2 = 0 + 0.320 987 655 205 248;
  • 7) 0.320 987 655 205 248 × 2 = 0 + 0.641 975 310 410 496;
  • 8) 0.641 975 310 410 496 × 2 = 1 + 0.283 950 620 820 992;
  • 9) 0.283 950 620 820 992 × 2 = 0 + 0.567 901 241 641 984;
  • 10) 0.567 901 241 641 984 × 2 = 1 + 0.135 802 483 283 968;
  • 11) 0.135 802 483 283 968 × 2 = 0 + 0.271 604 966 567 936;
  • 12) 0.271 604 966 567 936 × 2 = 0 + 0.543 209 933 135 872;
  • 13) 0.543 209 933 135 872 × 2 = 1 + 0.086 419 866 271 744;
  • 14) 0.086 419 866 271 744 × 2 = 0 + 0.172 839 732 543 488;
  • 15) 0.172 839 732 543 488 × 2 = 0 + 0.345 679 465 086 976;
  • 16) 0.345 679 465 086 976 × 2 = 0 + 0.691 358 930 173 952;
  • 17) 0.691 358 930 173 952 × 2 = 1 + 0.382 717 860 347 904;
  • 18) 0.382 717 860 347 904 × 2 = 0 + 0.765 435 720 695 808;
  • 19) 0.765 435 720 695 808 × 2 = 1 + 0.530 871 441 391 616;
  • 20) 0.530 871 441 391 616 × 2 = 1 + 0.061 742 882 783 232;
  • 21) 0.061 742 882 783 232 × 2 = 0 + 0.123 485 765 566 464;
  • 22) 0.123 485 765 566 464 × 2 = 0 + 0.246 971 531 132 928;
  • 23) 0.246 971 531 132 928 × 2 = 0 + 0.493 943 062 265 856;
  • 24) 0.493 943 062 265 856 × 2 = 0 + 0.987 886 124 531 712;
  • 25) 0.987 886 124 531 712 × 2 = 1 + 0.975 772 249 063 424;
  • 26) 0.975 772 249 063 424 × 2 = 1 + 0.951 544 498 126 848;
  • 27) 0.951 544 498 126 848 × 2 = 1 + 0.903 088 996 253 696;
  • 28) 0.903 088 996 253 696 × 2 = 1 + 0.806 177 992 507 392;
  • 29) 0.806 177 992 507 392 × 2 = 1 + 0.612 355 985 014 784;
  • 30) 0.612 355 985 014 784 × 2 = 1 + 0.224 711 970 029 568;
  • 31) 0.224 711 970 029 568 × 2 = 0 + 0.449 423 940 059 136;
  • 32) 0.449 423 940 059 136 × 2 = 0 + 0.898 847 880 118 272;
  • 33) 0.898 847 880 118 272 × 2 = 1 + 0.797 695 760 236 544;
  • 34) 0.797 695 760 236 544 × 2 = 1 + 0.595 391 520 473 088;
  • 35) 0.595 391 520 473 088 × 2 = 1 + 0.190 783 040 946 176;
  • 36) 0.190 783 040 946 176 × 2 = 0 + 0.381 566 081 892 352;
  • 37) 0.381 566 081 892 352 × 2 = 0 + 0.763 132 163 784 704;
  • 38) 0.763 132 163 784 704 × 2 = 1 + 0.526 264 327 569 408;
  • 39) 0.526 264 327 569 408 × 2 = 1 + 0.052 528 655 138 816;
  • 40) 0.052 528 655 138 816 × 2 = 0 + 0.105 057 310 277 632;
  • 41) 0.105 057 310 277 632 × 2 = 0 + 0.210 114 620 555 264;
  • 42) 0.210 114 620 555 264 × 2 = 0 + 0.420 229 241 110 528;
  • 43) 0.420 229 241 110 528 × 2 = 0 + 0.840 458 482 221 056;
  • 44) 0.840 458 482 221 056 × 2 = 1 + 0.680 916 964 442 112;
  • 45) 0.680 916 964 442 112 × 2 = 1 + 0.361 833 928 884 224;
  • 46) 0.361 833 928 884 224 × 2 = 0 + 0.723 667 857 768 448;
  • 47) 0.723 667 857 768 448 × 2 = 1 + 0.447 335 715 536 896;
  • 48) 0.447 335 715 536 896 × 2 = 0 + 0.894 671 431 073 792;
  • 49) 0.894 671 431 073 792 × 2 = 1 + 0.789 342 862 147 584;
  • 50) 0.789 342 862 147 584 × 2 = 1 + 0.578 685 724 295 168;
  • 51) 0.578 685 724 295 168 × 2 = 1 + 0.157 371 448 590 336;
  • 52) 0.157 371 448 590 336 × 2 = 0 + 0.314 742 897 180 672;
  • 53) 0.314 742 897 180 672 × 2 = 0 + 0.629 485 794 361 344;

We didn't get any fractional part that was equal to zero. But we had enough iterations (over Mantissa limit) and at least one integer that was different from zero => FULL STOP (Losing precision - the converted number we get in the end will be just a very good approximation of the initial one).


4. Construct the base 2 representation of the fractional part of the number.

Take all the integer parts of the multiplying operations, starting from the top of the constructed list above:


0.098 765 432 112 582(10) =


0.0001 1001 0100 1000 1011 0000 1111 1100 1110 0110 0001 1010 1110 0(2)

5. Positive number before normalization:

12 345 678 900 987 654 321.098 765 432 112 582(10) =


1010 1011 0101 0100 1010 1001 1000 1100 1101 1100 0110 0111 0111 0000 1011 0001.0001 1001 0100 1000 1011 0000 1111 1100 1110 0110 0001 1010 1110 0(2)

6. Normalize the binary representation of the number.

Shift the decimal mark 63 positions to the left, so that only one non zero digit remains to the left of it:


12 345 678 900 987 654 321.098 765 432 112 582(10) =


1010 1011 0101 0100 1010 1001 1000 1100 1101 1100 0110 0111 0111 0000 1011 0001.0001 1001 0100 1000 1011 0000 1111 1100 1110 0110 0001 1010 1110 0(2) =


1010 1011 0101 0100 1010 1001 1000 1100 1101 1100 0110 0111 0111 0000 1011 0001.0001 1001 0100 1000 1011 0000 1111 1100 1110 0110 0001 1010 1110 0(2) × 20 =


1.0101 0110 1010 1001 0101 0011 0001 1001 1011 1000 1100 1110 1110 0001 0110 0010 0011 0010 1001 0001 0110 0001 1111 1001 1100 1100 0011 0101 1100(2) × 263


7. Up to this moment, there are the following elements that would feed into the 64 bit double precision IEEE 754 binary floating point representation:

Sign 0 (a positive number)


Exponent (unadjusted): 63


Mantissa (not normalized):
1.0101 0110 1010 1001 0101 0011 0001 1001 1011 1000 1100 1110 1110 0001 0110 0010 0011 0010 1001 0001 0110 0001 1111 1001 1100 1100 0011 0101 1100


8. Adjust the exponent.

Use the 11 bit excess/bias notation:


Exponent (adjusted) =


Exponent (unadjusted) + 2(11-1) - 1 =


63 + 2(11-1) - 1 =


(63 + 1 023)(10) =


1 086(10)


9. Convert the adjusted exponent from the decimal (base 10) to 11 bit binary.

Use the same technique of repeatedly dividing by 2:


  • division = quotient + remainder;
  • 1 086 ÷ 2 = 543 + 0;
  • 543 ÷ 2 = 271 + 1;
  • 271 ÷ 2 = 135 + 1;
  • 135 ÷ 2 = 67 + 1;
  • 67 ÷ 2 = 33 + 1;
  • 33 ÷ 2 = 16 + 1;
  • 16 ÷ 2 = 8 + 0;
  • 8 ÷ 2 = 4 + 0;
  • 4 ÷ 2 = 2 + 0;
  • 2 ÷ 2 = 1 + 0;
  • 1 ÷ 2 = 0 + 1;

10. Construct the base 2 representation of the adjusted exponent.

Take all the remainders starting from the bottom of the list constructed above.


Exponent (adjusted) =


1086(10) =


100 0011 1110(2)


11. Normalize the mantissa.

a) Remove the leading (the leftmost) bit, since it's allways 1, and the decimal point, if the case.


b) Adjust its length to 52 bits, by removing the excess bits, from the right (if any of the excess bits is set on 1, we are losing precision...).


Mantissa (normalized) =


1. 0101 0110 1010 1001 0101 0011 0001 1001 1011 1000 1100 1110 1110 0001 0110 0010 0011 0010 1001 0001 0110 0001 1111 1001 1100 1100 0011 0101 1100 =


0101 0110 1010 1001 0101 0011 0001 1001 1011 1000 1100 1110 1110


12. The three elements that make up the number's 64 bit double precision IEEE 754 binary floating point representation:

Sign (1 bit) =
0 (a positive number)


Exponent (11 bits) =
100 0011 1110


Mantissa (52 bits) =
0101 0110 1010 1001 0101 0011 0001 1001 1011 1000 1100 1110 1110


Decimal number 12 345 678 900 987 654 321.098 765 432 112 582 converted to 64 bit double precision IEEE 754 binary floating point representation:

0 - 100 0011 1110 - 0101 0110 1010 1001 0101 0011 0001 1001 1011 1000 1100 1110 1110


How to convert numbers from the decimal system (base ten) to 64 bit double precision IEEE 754 binary floating point standard

Follow the steps below to convert a base 10 decimal number to 64 bit double precision IEEE 754 binary floating point:

  • 1. If the number to be converted is negative, start with its the positive version.
  • 2. First convert the integer part. Divide repeatedly by 2 the positive representation of the integer number that is to be converted to binary, until we get a quotient that is equal to zero, keeping track of each remainder.
  • 3. Construct the base 2 representation of the positive integer part of the number, by taking all the remainders from the previous operations, starting from the bottom of the list constructed above. Thus, the last remainder of the divisions becomes the first symbol (the leftmost) of the base two number, while the first remainder becomes the last symbol (the rightmost).
  • 4. Then convert the fractional part. Multiply the number repeatedly by 2, until we get a fractional part that is equal to zero, keeping track of each integer part of the results.
  • 5. Construct the base 2 representation of the fractional part of the number, by taking all the integer parts of the multiplying operations, starting from the top of the list constructed above (they should appear in the binary representation, from left to right, in the order they have been calculated).
  • 6. Normalize the binary representation of the number, shifting the decimal mark (the decimal point) "n" positions either to the left, or to the right, so that only one non zero digit remains to the left of the decimal mark.
  • 7. Adjust the exponent in 11 bit excess/bias notation and then convert it from decimal (base 10) to 11 bit binary, by using the same technique of repeatedly dividing by 2, as shown above:
    Exponent (adjusted) = Exponent (unadjusted) + 2(11-1) - 1
  • 8. Normalize mantissa, remove the leading (leftmost) bit, since it's allways '1' (and the decimal mark, if the case) and adjust its length to 52 bits, either by removing the excess bits from the right (losing precision...) or by adding extra bits set on '0' to the right.
  • 9. Sign (it takes 1 bit) is either 1 for a negative or 0 for a positive number.

Example: convert the negative number -31.640 215 from the decimal system (base ten) to 64 bit double precision IEEE 754 binary floating point:

  • 1. Start with the positive version of the number:

    |-31.640 215| = 31.640 215

  • 2. First convert the integer part, 31. Divide it repeatedly by 2, keeping track of each remainder, until we get a quotient that is equal to zero:
    • division = quotient + remainder;
    • 31 ÷ 2 = 15 + 1;
    • 15 ÷ 2 = 7 + 1;
    • 7 ÷ 2 = 3 + 1;
    • 3 ÷ 2 = 1 + 1;
    • 1 ÷ 2 = 0 + 1;
    • We have encountered a quotient that is ZERO => FULL STOP
  • 3. Construct the base 2 representation of the integer part of the number by taking all the remainders of the previous dividing operations, starting from the bottom of the list constructed above:

    31(10) = 1 1111(2)

  • 4. Then, convert the fractional part, 0.640 215. Multiply repeatedly by 2, keeping track of each integer part of the results, until we get a fractional part that is equal to zero:
    • #) multiplying = integer + fractional part;
    • 1) 0.640 215 × 2 = 1 + 0.280 43;
    • 2) 0.280 43 × 2 = 0 + 0.560 86;
    • 3) 0.560 86 × 2 = 1 + 0.121 72;
    • 4) 0.121 72 × 2 = 0 + 0.243 44;
    • 5) 0.243 44 × 2 = 0 + 0.486 88;
    • 6) 0.486 88 × 2 = 0 + 0.973 76;
    • 7) 0.973 76 × 2 = 1 + 0.947 52;
    • 8) 0.947 52 × 2 = 1 + 0.895 04;
    • 9) 0.895 04 × 2 = 1 + 0.790 08;
    • 10) 0.790 08 × 2 = 1 + 0.580 16;
    • 11) 0.580 16 × 2 = 1 + 0.160 32;
    • 12) 0.160 32 × 2 = 0 + 0.320 64;
    • 13) 0.320 64 × 2 = 0 + 0.641 28;
    • 14) 0.641 28 × 2 = 1 + 0.282 56;
    • 15) 0.282 56 × 2 = 0 + 0.565 12;
    • 16) 0.565 12 × 2 = 1 + 0.130 24;
    • 17) 0.130 24 × 2 = 0 + 0.260 48;
    • 18) 0.260 48 × 2 = 0 + 0.520 96;
    • 19) 0.520 96 × 2 = 1 + 0.041 92;
    • 20) 0.041 92 × 2 = 0 + 0.083 84;
    • 21) 0.083 84 × 2 = 0 + 0.167 68;
    • 22) 0.167 68 × 2 = 0 + 0.335 36;
    • 23) 0.335 36 × 2 = 0 + 0.670 72;
    • 24) 0.670 72 × 2 = 1 + 0.341 44;
    • 25) 0.341 44 × 2 = 0 + 0.682 88;
    • 26) 0.682 88 × 2 = 1 + 0.365 76;
    • 27) 0.365 76 × 2 = 0 + 0.731 52;
    • 28) 0.731 52 × 2 = 1 + 0.463 04;
    • 29) 0.463 04 × 2 = 0 + 0.926 08;
    • 30) 0.926 08 × 2 = 1 + 0.852 16;
    • 31) 0.852 16 × 2 = 1 + 0.704 32;
    • 32) 0.704 32 × 2 = 1 + 0.408 64;
    • 33) 0.408 64 × 2 = 0 + 0.817 28;
    • 34) 0.817 28 × 2 = 1 + 0.634 56;
    • 35) 0.634 56 × 2 = 1 + 0.269 12;
    • 36) 0.269 12 × 2 = 0 + 0.538 24;
    • 37) 0.538 24 × 2 = 1 + 0.076 48;
    • 38) 0.076 48 × 2 = 0 + 0.152 96;
    • 39) 0.152 96 × 2 = 0 + 0.305 92;
    • 40) 0.305 92 × 2 = 0 + 0.611 84;
    • 41) 0.611 84 × 2 = 1 + 0.223 68;
    • 42) 0.223 68 × 2 = 0 + 0.447 36;
    • 43) 0.447 36 × 2 = 0 + 0.894 72;
    • 44) 0.894 72 × 2 = 1 + 0.789 44;
    • 45) 0.789 44 × 2 = 1 + 0.578 88;
    • 46) 0.578 88 × 2 = 1 + 0.157 76;
    • 47) 0.157 76 × 2 = 0 + 0.315 52;
    • 48) 0.315 52 × 2 = 0 + 0.631 04;
    • 49) 0.631 04 × 2 = 1 + 0.262 08;
    • 50) 0.262 08 × 2 = 0 + 0.524 16;
    • 51) 0.524 16 × 2 = 1 + 0.048 32;
    • 52) 0.048 32 × 2 = 0 + 0.096 64;
    • 53) 0.096 64 × 2 = 0 + 0.193 28;
    • We didn't get any fractional part that was equal to zero. But we had enough iterations (over Mantissa limit = 52) and at least one integer part that was different from zero => FULL STOP (losing precision...).
  • 5. Construct the base 2 representation of the fractional part of the number, by taking all the integer parts of the previous multiplying operations, starting from the top of the constructed list above:

    0.640 215(10) = 0.1010 0011 1110 0101 0010 0001 0101 0111 0110 1000 1001 1100 1010 0(2)

  • 6. Summarizing - the positive number before normalization:

    31.640 215(10) = 1 1111.1010 0011 1110 0101 0010 0001 0101 0111 0110 1000 1001 1100 1010 0(2)

  • 7. Normalize the binary representation of the number, shifting the decimal mark 4 positions to the left so that only one non-zero digit stays to the left of the decimal mark:

    31.640 215(10) =
    1 1111.1010 0011 1110 0101 0010 0001 0101 0111 0110 1000 1001 1100 1010 0(2) =
    1 1111.1010 0011 1110 0101 0010 0001 0101 0111 0110 1000 1001 1100 1010 0(2) × 20 =
    1.1111 1010 0011 1110 0101 0010 0001 0101 0111 0110 1000 1001 1100 1010 0(2) × 24

  • 8. Up to this moment, there are the following elements that would feed into the 64 bit double precision IEEE 754 binary floating point representation:

    Sign: 1 (a negative number)

    Exponent (unadjusted): 4

    Mantissa (not-normalized): 1.1111 1010 0011 1110 0101 0010 0001 0101 0111 0110 1000 1001 1100 1010 0

  • 9. Adjust the exponent in 11 bit excess/bias notation and then convert it from decimal (base 10) to 11 bit binary (base 2), by using the same technique of repeatedly dividing it by 2, as shown above:

    Exponent (adjusted) = Exponent (unadjusted) + 2(11-1) - 1 = (4 + 1023)(10) = 1027(10) =
    100 0000 0011(2)

  • 10. Normalize mantissa, remove the leading (leftmost) bit, since it's allways '1' (and the decimal sign) and adjust its length to 52 bits, by removing the excess bits, from the right (losing precision...):

    Mantissa (not-normalized): 1.1111 1010 0011 1110 0101 0010 0001 0101 0111 0110 1000 1001 1100 1010 0

    Mantissa (normalized): 1111 1010 0011 1110 0101 0010 0001 0101 0111 0110 1000 1001 1100

  • Conclusion:

    Sign (1 bit) = 1 (a negative number)

    Exponent (8 bits) = 100 0000 0011

    Mantissa (52 bits) = 1111 1010 0011 1110 0101 0010 0001 0101 0111 0110 1000 1001 1100

  • Number -31.640 215, converted from decimal system (base 10) to 64 bit double precision IEEE 754 binary floating point =
    1 - 100 0000 0011 - 1111 1010 0011 1110 0101 0010 0001 0101 0111 0110 1000 1001 1100