Convert 3 043 961 713 799 183 to a Signed Binary in One's (1's) Complement Representation

How to convert decimal number 3 043 961 713 799 183(10) to a signed binary in one's (1's) complement representation

What are the steps to convert decimal number
3 043 961 713 799 183 to a signed binary in one's (1's) complement representation?

  • A signed integer, written in base ten, or a decimal system number, is a number written using the digits 0 through 9 and the sign, which can be positive (+) or negative (-). If positive, the sign is usually not written. A number written in base two, or binary, is a number written using only the digits 0 and 1.

1. Divide the number repeatedly by 2:

Keep track of each remainder.

Stop when you get a quotient that is equal to zero.


  • division = quotient + remainder;
  • 3 043 961 713 799 183 ÷ 2 = 1 521 980 856 899 591 + 1;
  • 1 521 980 856 899 591 ÷ 2 = 760 990 428 449 795 + 1;
  • 760 990 428 449 795 ÷ 2 = 380 495 214 224 897 + 1;
  • 380 495 214 224 897 ÷ 2 = 190 247 607 112 448 + 1;
  • 190 247 607 112 448 ÷ 2 = 95 123 803 556 224 + 0;
  • 95 123 803 556 224 ÷ 2 = 47 561 901 778 112 + 0;
  • 47 561 901 778 112 ÷ 2 = 23 780 950 889 056 + 0;
  • 23 780 950 889 056 ÷ 2 = 11 890 475 444 528 + 0;
  • 11 890 475 444 528 ÷ 2 = 5 945 237 722 264 + 0;
  • 5 945 237 722 264 ÷ 2 = 2 972 618 861 132 + 0;
  • 2 972 618 861 132 ÷ 2 = 1 486 309 430 566 + 0;
  • 1 486 309 430 566 ÷ 2 = 743 154 715 283 + 0;
  • 743 154 715 283 ÷ 2 = 371 577 357 641 + 1;
  • 371 577 357 641 ÷ 2 = 185 788 678 820 + 1;
  • 185 788 678 820 ÷ 2 = 92 894 339 410 + 0;
  • 92 894 339 410 ÷ 2 = 46 447 169 705 + 0;
  • 46 447 169 705 ÷ 2 = 23 223 584 852 + 1;
  • 23 223 584 852 ÷ 2 = 11 611 792 426 + 0;
  • 11 611 792 426 ÷ 2 = 5 805 896 213 + 0;
  • 5 805 896 213 ÷ 2 = 2 902 948 106 + 1;
  • 2 902 948 106 ÷ 2 = 1 451 474 053 + 0;
  • 1 451 474 053 ÷ 2 = 725 737 026 + 1;
  • 725 737 026 ÷ 2 = 362 868 513 + 0;
  • 362 868 513 ÷ 2 = 181 434 256 + 1;
  • 181 434 256 ÷ 2 = 90 717 128 + 0;
  • 90 717 128 ÷ 2 = 45 358 564 + 0;
  • 45 358 564 ÷ 2 = 22 679 282 + 0;
  • 22 679 282 ÷ 2 = 11 339 641 + 0;
  • 11 339 641 ÷ 2 = 5 669 820 + 1;
  • 5 669 820 ÷ 2 = 2 834 910 + 0;
  • 2 834 910 ÷ 2 = 1 417 455 + 0;
  • 1 417 455 ÷ 2 = 708 727 + 1;
  • 708 727 ÷ 2 = 354 363 + 1;
  • 354 363 ÷ 2 = 177 181 + 1;
  • 177 181 ÷ 2 = 88 590 + 1;
  • 88 590 ÷ 2 = 44 295 + 0;
  • 44 295 ÷ 2 = 22 147 + 1;
  • 22 147 ÷ 2 = 11 073 + 1;
  • 11 073 ÷ 2 = 5 536 + 1;
  • 5 536 ÷ 2 = 2 768 + 0;
  • 2 768 ÷ 2 = 1 384 + 0;
  • 1 384 ÷ 2 = 692 + 0;
  • 692 ÷ 2 = 346 + 0;
  • 346 ÷ 2 = 173 + 0;
  • 173 ÷ 2 = 86 + 1;
  • 86 ÷ 2 = 43 + 0;
  • 43 ÷ 2 = 21 + 1;
  • 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 positive number:

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

3 043 961 713 799 183(10) = 1010 1101 0000 0111 0111 1001 0000 1010 1001 0011 0000 0000 1111(2)

3. Determine the signed binary number bit length:

  • The base 2 number's actual length, in bits: 52.

  • A signed binary's bit length must be equal to a power of 2, as of:
  • 21 = 2; 22 = 4; 23 = 8; 24 = 16; 25 = 32; 26 = 64; ...
  • The first bit (the leftmost) indicates the sign:
  • 0 = positive integer number, 1 = negative integer number

The least number that is:


1) a power of 2

2) and is larger than the actual length, 52,

3) so that the first bit (leftmost) could be zero
(we deal with a positive number at this moment)


=== is: 64.


4. Get the positive binary computer representation on 64 bits (8 Bytes):

If needed, add extra 0s in front (to the left) of the base 2 number, up to the required length, 64.


Decimal Number 3 043 961 713 799 183(10) converted to signed binary in one's complement representation:

3 043 961 713 799 183(10) = 0000 0000 0000 1010 1101 0000 0111 0111 1001 0000 1010 1001 0011 0000 0000 1111

Spaces were used to group digits: for binary, by 4, for decimal, by 3.


How to convert signed integers from the decimal system to signed binary in one's complement representation

Follow the steps below to convert a signed base 10 integer number to signed binary in one's complement representation:

  • 1. If the number to be converted is negative, start with the positive version of the number.
  • 2. Divide repeatedly by 2 the positive representation of the integer number that is to be converted to binary, keeping track of each remainder, until we get a quotient that is equal to ZERO.
  • 3. Construct the base 2 representation of the positive number, by taking all the remainders 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. Binary numbers represented in computer language must have 4, 8, 16, 32, 64, ... bit length (a power of 2) - if needed, fill in '0' bits in front (to the left) of the base 2 number calculated above, up to the right length; this way the first bit (leftmost) will always be '0', correctly representing a positive number.
  • 5. To get the negative integer number representation in signed binary one's complement, replace all '0' bits with '1's and all '1' bits with '0's.

Example: convert the negative number -49 from the decimal system (base ten) to signed binary one's complement:

  • 1. Start with the positive version of the number: |-49| = 49
  • 2. Divide repeatedly 49 by 2, keeping track of each remainder:
    • division = quotient + remainder
    • 49 ÷ 2 = 24 + 1
    • 24 ÷ 2 = 12 + 0
    • 12 ÷ 2 = 6 + 0
    • 6 ÷ 2 = 3 + 0
    • 3 ÷ 2 = 1 + 1
    • 1 ÷ 2 = 0 + 1
  • 3. Construct the base 2 representation of the positive number, by taking all the remainders starting from the bottom of the list constructed above:
    49(10) = 11 0001(2)
  • 4. The actual bit length of base 2 representation is 6, so the positive binary computer representation of a signed binary will take in this case 8 bits (the least power of 2 that is larger than 6) - add '0's in front of the base 2 number, up to the required length:
    49(10) = 0011 0001(2)
  • 5. To get the negative integer number representation in signed binary one's complement, replace all '0' bits with '1's and all '1' bits with '0's:
    -49(10) = 1100 1110
  • Number -49(10), signed integer, converted from the decimal system (base 10) to signed binary in one's complement representation = 1100 1110