What are the required steps to convert base 10 decimal system
number 288 230 410 620 501 481 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;
- 288 230 410 620 501 481 ÷ 2 = 144 115 205 310 250 740 + 1;
- 144 115 205 310 250 740 ÷ 2 = 72 057 602 655 125 370 + 0;
- 72 057 602 655 125 370 ÷ 2 = 36 028 801 327 562 685 + 0;
- 36 028 801 327 562 685 ÷ 2 = 18 014 400 663 781 342 + 1;
- 18 014 400 663 781 342 ÷ 2 = 9 007 200 331 890 671 + 0;
- 9 007 200 331 890 671 ÷ 2 = 4 503 600 165 945 335 + 1;
- 4 503 600 165 945 335 ÷ 2 = 2 251 800 082 972 667 + 1;
- 2 251 800 082 972 667 ÷ 2 = 1 125 900 041 486 333 + 1;
- 1 125 900 041 486 333 ÷ 2 = 562 950 020 743 166 + 1;
- 562 950 020 743 166 ÷ 2 = 281 475 010 371 583 + 0;
- 281 475 010 371 583 ÷ 2 = 140 737 505 185 791 + 1;
- 140 737 505 185 791 ÷ 2 = 70 368 752 592 895 + 1;
- 70 368 752 592 895 ÷ 2 = 35 184 376 296 447 + 1;
- 35 184 376 296 447 ÷ 2 = 17 592 188 148 223 + 1;
- 17 592 188 148 223 ÷ 2 = 8 796 094 074 111 + 1;
- 8 796 094 074 111 ÷ 2 = 4 398 047 037 055 + 1;
- 4 398 047 037 055 ÷ 2 = 2 199 023 518 527 + 1;
- 2 199 023 518 527 ÷ 2 = 1 099 511 759 263 + 1;
- 1 099 511 759 263 ÷ 2 = 549 755 879 631 + 1;
- 549 755 879 631 ÷ 2 = 274 877 939 815 + 1;
- 274 877 939 815 ÷ 2 = 137 438 969 907 + 1;
- 137 438 969 907 ÷ 2 = 68 719 484 953 + 1;
- 68 719 484 953 ÷ 2 = 34 359 742 476 + 1;
- 34 359 742 476 ÷ 2 = 17 179 871 238 + 0;
- 17 179 871 238 ÷ 2 = 8 589 935 619 + 0;
- 8 589 935 619 ÷ 2 = 4 294 967 809 + 1;
- 4 294 967 809 ÷ 2 = 2 147 483 904 + 1;
- 2 147 483 904 ÷ 2 = 1 073 741 952 + 0;
- 1 073 741 952 ÷ 2 = 536 870 976 + 0;
- 536 870 976 ÷ 2 = 268 435 488 + 0;
- 268 435 488 ÷ 2 = 134 217 744 + 0;
- 134 217 744 ÷ 2 = 67 108 872 + 0;
- 67 108 872 ÷ 2 = 33 554 436 + 0;
- 33 554 436 ÷ 2 = 16 777 218 + 0;
- 16 777 218 ÷ 2 = 8 388 609 + 0;
- 8 388 609 ÷ 2 = 4 194 304 + 1;
- 4 194 304 ÷ 2 = 2 097 152 + 0;
- 2 097 152 ÷ 2 = 1 048 576 + 0;
- 1 048 576 ÷ 2 = 524 288 + 0;
- 524 288 ÷ 2 = 262 144 + 0;
- 262 144 ÷ 2 = 131 072 + 0;
- 131 072 ÷ 2 = 65 536 + 0;
- 65 536 ÷ 2 = 32 768 + 0;
- 32 768 ÷ 2 = 16 384 + 0;
- 16 384 ÷ 2 = 8 192 + 0;
- 8 192 ÷ 2 = 4 096 + 0;
- 4 096 ÷ 2 = 2 048 + 0;
- 2 048 ÷ 2 = 1 024 + 0;
- 1 024 ÷ 2 = 512 + 0;
- 512 ÷ 2 = 256 + 0;
- 256 ÷ 2 = 128 + 0;
- 128 ÷ 2 = 64 + 0;
- 64 ÷ 2 = 32 + 0;
- 32 ÷ 2 = 16 + 0;
- 16 ÷ 2 = 8 + 0;
- 8 ÷ 2 = 4 + 0;
- 4 ÷ 2 = 2 + 0;
- 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.
288 230 410 620 501 481(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
288 230 410 620 501 481 (base 10) = 100 0000 0000 0000 0000 0000 1000 0000 0110 0111 1111 1111 1101 1110 1001 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.