What are the required steps to convert base 10 decimal system
number 142 392 162 403 210 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;
- 142 392 162 403 210 ÷ 2 = 71 196 081 201 605 + 0;
- 71 196 081 201 605 ÷ 2 = 35 598 040 600 802 + 1;
- 35 598 040 600 802 ÷ 2 = 17 799 020 300 401 + 0;
- 17 799 020 300 401 ÷ 2 = 8 899 510 150 200 + 1;
- 8 899 510 150 200 ÷ 2 = 4 449 755 075 100 + 0;
- 4 449 755 075 100 ÷ 2 = 2 224 877 537 550 + 0;
- 2 224 877 537 550 ÷ 2 = 1 112 438 768 775 + 0;
- 1 112 438 768 775 ÷ 2 = 556 219 384 387 + 1;
- 556 219 384 387 ÷ 2 = 278 109 692 193 + 1;
- 278 109 692 193 ÷ 2 = 139 054 846 096 + 1;
- 139 054 846 096 ÷ 2 = 69 527 423 048 + 0;
- 69 527 423 048 ÷ 2 = 34 763 711 524 + 0;
- 34 763 711 524 ÷ 2 = 17 381 855 762 + 0;
- 17 381 855 762 ÷ 2 = 8 690 927 881 + 0;
- 8 690 927 881 ÷ 2 = 4 345 463 940 + 1;
- 4 345 463 940 ÷ 2 = 2 172 731 970 + 0;
- 2 172 731 970 ÷ 2 = 1 086 365 985 + 0;
- 1 086 365 985 ÷ 2 = 543 182 992 + 1;
- 543 182 992 ÷ 2 = 271 591 496 + 0;
- 271 591 496 ÷ 2 = 135 795 748 + 0;
- 135 795 748 ÷ 2 = 67 897 874 + 0;
- 67 897 874 ÷ 2 = 33 948 937 + 0;
- 33 948 937 ÷ 2 = 16 974 468 + 1;
- 16 974 468 ÷ 2 = 8 487 234 + 0;
- 8 487 234 ÷ 2 = 4 243 617 + 0;
- 4 243 617 ÷ 2 = 2 121 808 + 1;
- 2 121 808 ÷ 2 = 1 060 904 + 0;
- 1 060 904 ÷ 2 = 530 452 + 0;
- 530 452 ÷ 2 = 265 226 + 0;
- 265 226 ÷ 2 = 132 613 + 0;
- 132 613 ÷ 2 = 66 306 + 1;
- 66 306 ÷ 2 = 33 153 + 0;
- 33 153 ÷ 2 = 16 576 + 1;
- 16 576 ÷ 2 = 8 288 + 0;
- 8 288 ÷ 2 = 4 144 + 0;
- 4 144 ÷ 2 = 2 072 + 0;
- 2 072 ÷ 2 = 1 036 + 0;
- 1 036 ÷ 2 = 518 + 0;
- 518 ÷ 2 = 259 + 0;
- 259 ÷ 2 = 129 + 1;
- 129 ÷ 2 = 64 + 1;
- 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.
142 392 162 403 210(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
142 392 162 403 210 (base 10) = 1000 0001 1000 0001 0100 0010 0100 0010 0100 0011 1000 1010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.