What are the required steps to convert base 10 decimal system
number 143 833 713 099 145 325 to base 2 unsigned binary equivalent?
- A number written in base ten, or a decimal system number, is a number written using the digits 0 through 9. A number written in base two, or a binary system number, 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;
- 143 833 713 099 145 325 ÷ 2 = 71 916 856 549 572 662 + 1;
- 71 916 856 549 572 662 ÷ 2 = 35 958 428 274 786 331 + 0;
- 35 958 428 274 786 331 ÷ 2 = 17 979 214 137 393 165 + 1;
- 17 979 214 137 393 165 ÷ 2 = 8 989 607 068 696 582 + 1;
- 8 989 607 068 696 582 ÷ 2 = 4 494 803 534 348 291 + 0;
- 4 494 803 534 348 291 ÷ 2 = 2 247 401 767 174 145 + 1;
- 2 247 401 767 174 145 ÷ 2 = 1 123 700 883 587 072 + 1;
- 1 123 700 883 587 072 ÷ 2 = 561 850 441 793 536 + 0;
- 561 850 441 793 536 ÷ 2 = 280 925 220 896 768 + 0;
- 280 925 220 896 768 ÷ 2 = 140 462 610 448 384 + 0;
- 140 462 610 448 384 ÷ 2 = 70 231 305 224 192 + 0;
- 70 231 305 224 192 ÷ 2 = 35 115 652 612 096 + 0;
- 35 115 652 612 096 ÷ 2 = 17 557 826 306 048 + 0;
- 17 557 826 306 048 ÷ 2 = 8 778 913 153 024 + 0;
- 8 778 913 153 024 ÷ 2 = 4 389 456 576 512 + 0;
- 4 389 456 576 512 ÷ 2 = 2 194 728 288 256 + 0;
- 2 194 728 288 256 ÷ 2 = 1 097 364 144 128 + 0;
- 1 097 364 144 128 ÷ 2 = 548 682 072 064 + 0;
- 548 682 072 064 ÷ 2 = 274 341 036 032 + 0;
- 274 341 036 032 ÷ 2 = 137 170 518 016 + 0;
- 137 170 518 016 ÷ 2 = 68 585 259 008 + 0;
- 68 585 259 008 ÷ 2 = 34 292 629 504 + 0;
- 34 292 629 504 ÷ 2 = 17 146 314 752 + 0;
- 17 146 314 752 ÷ 2 = 8 573 157 376 + 0;
- 8 573 157 376 ÷ 2 = 4 286 578 688 + 0;
- 4 286 578 688 ÷ 2 = 2 143 289 344 + 0;
- 2 143 289 344 ÷ 2 = 1 071 644 672 + 0;
- 1 071 644 672 ÷ 2 = 535 822 336 + 0;
- 535 822 336 ÷ 2 = 267 911 168 + 0;
- 267 911 168 ÷ 2 = 133 955 584 + 0;
- 133 955 584 ÷ 2 = 66 977 792 + 0;
- 66 977 792 ÷ 2 = 33 488 896 + 0;
- 33 488 896 ÷ 2 = 16 744 448 + 0;
- 16 744 448 ÷ 2 = 8 372 224 + 0;
- 8 372 224 ÷ 2 = 4 186 112 + 0;
- 4 186 112 ÷ 2 = 2 093 056 + 0;
- 2 093 056 ÷ 2 = 1 046 528 + 0;
- 1 046 528 ÷ 2 = 523 264 + 0;
- 523 264 ÷ 2 = 261 632 + 0;
- 261 632 ÷ 2 = 130 816 + 0;
- 130 816 ÷ 2 = 65 408 + 0;
- 65 408 ÷ 2 = 32 704 + 0;
- 32 704 ÷ 2 = 16 352 + 0;
- 16 352 ÷ 2 = 8 176 + 0;
- 8 176 ÷ 2 = 4 088 + 0;
- 4 088 ÷ 2 = 2 044 + 0;
- 2 044 ÷ 2 = 1 022 + 0;
- 1 022 ÷ 2 = 511 + 0;
- 511 ÷ 2 = 255 + 1;
- 255 ÷ 2 = 127 + 1;
- 127 ÷ 2 = 63 + 1;
- 63 ÷ 2 = 31 + 1;
- 31 ÷ 2 = 15 + 1;
- 15 ÷ 2 = 7 + 1;
- 7 ÷ 2 = 3 + 1;
- 3 ÷ 2 = 1 + 1;
- 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.
143 833 713 099 145 325(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
143 833 713 099 145 325 (base 10) = 1 1111 1111 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0110 1101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.