What are the required steps to convert base 10 decimal system
number 200 820 281 713 802 916 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;
- 200 820 281 713 802 916 ÷ 2 = 100 410 140 856 901 458 + 0;
- 100 410 140 856 901 458 ÷ 2 = 50 205 070 428 450 729 + 0;
- 50 205 070 428 450 729 ÷ 2 = 25 102 535 214 225 364 + 1;
- 25 102 535 214 225 364 ÷ 2 = 12 551 267 607 112 682 + 0;
- 12 551 267 607 112 682 ÷ 2 = 6 275 633 803 556 341 + 0;
- 6 275 633 803 556 341 ÷ 2 = 3 137 816 901 778 170 + 1;
- 3 137 816 901 778 170 ÷ 2 = 1 568 908 450 889 085 + 0;
- 1 568 908 450 889 085 ÷ 2 = 784 454 225 444 542 + 1;
- 784 454 225 444 542 ÷ 2 = 392 227 112 722 271 + 0;
- 392 227 112 722 271 ÷ 2 = 196 113 556 361 135 + 1;
- 196 113 556 361 135 ÷ 2 = 98 056 778 180 567 + 1;
- 98 056 778 180 567 ÷ 2 = 49 028 389 090 283 + 1;
- 49 028 389 090 283 ÷ 2 = 24 514 194 545 141 + 1;
- 24 514 194 545 141 ÷ 2 = 12 257 097 272 570 + 1;
- 12 257 097 272 570 ÷ 2 = 6 128 548 636 285 + 0;
- 6 128 548 636 285 ÷ 2 = 3 064 274 318 142 + 1;
- 3 064 274 318 142 ÷ 2 = 1 532 137 159 071 + 0;
- 1 532 137 159 071 ÷ 2 = 766 068 579 535 + 1;
- 766 068 579 535 ÷ 2 = 383 034 289 767 + 1;
- 383 034 289 767 ÷ 2 = 191 517 144 883 + 1;
- 191 517 144 883 ÷ 2 = 95 758 572 441 + 1;
- 95 758 572 441 ÷ 2 = 47 879 286 220 + 1;
- 47 879 286 220 ÷ 2 = 23 939 643 110 + 0;
- 23 939 643 110 ÷ 2 = 11 969 821 555 + 0;
- 11 969 821 555 ÷ 2 = 5 984 910 777 + 1;
- 5 984 910 777 ÷ 2 = 2 992 455 388 + 1;
- 2 992 455 388 ÷ 2 = 1 496 227 694 + 0;
- 1 496 227 694 ÷ 2 = 748 113 847 + 0;
- 748 113 847 ÷ 2 = 374 056 923 + 1;
- 374 056 923 ÷ 2 = 187 028 461 + 1;
- 187 028 461 ÷ 2 = 93 514 230 + 1;
- 93 514 230 ÷ 2 = 46 757 115 + 0;
- 46 757 115 ÷ 2 = 23 378 557 + 1;
- 23 378 557 ÷ 2 = 11 689 278 + 1;
- 11 689 278 ÷ 2 = 5 844 639 + 0;
- 5 844 639 ÷ 2 = 2 922 319 + 1;
- 2 922 319 ÷ 2 = 1 461 159 + 1;
- 1 461 159 ÷ 2 = 730 579 + 1;
- 730 579 ÷ 2 = 365 289 + 1;
- 365 289 ÷ 2 = 182 644 + 1;
- 182 644 ÷ 2 = 91 322 + 0;
- 91 322 ÷ 2 = 45 661 + 0;
- 45 661 ÷ 2 = 22 830 + 1;
- 22 830 ÷ 2 = 11 415 + 0;
- 11 415 ÷ 2 = 5 707 + 1;
- 5 707 ÷ 2 = 2 853 + 1;
- 2 853 ÷ 2 = 1 426 + 1;
- 1 426 ÷ 2 = 713 + 0;
- 713 ÷ 2 = 356 + 1;
- 356 ÷ 2 = 178 + 0;
- 178 ÷ 2 = 89 + 0;
- 89 ÷ 2 = 44 + 1;
- 44 ÷ 2 = 22 + 0;
- 22 ÷ 2 = 11 + 0;
- 11 ÷ 2 = 5 + 1;
- 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.
200 820 281 713 802 916(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
200 820 281 713 802 916 (base 10) = 10 1100 1001 0111 0100 1111 1011 0111 0011 0011 1110 1011 1110 1010 0100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.