What are the required steps to convert base 10 decimal system
number 129 010 438 067 914 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;
- 129 010 438 067 914 ÷ 2 = 64 505 219 033 957 + 0;
- 64 505 219 033 957 ÷ 2 = 32 252 609 516 978 + 1;
- 32 252 609 516 978 ÷ 2 = 16 126 304 758 489 + 0;
- 16 126 304 758 489 ÷ 2 = 8 063 152 379 244 + 1;
- 8 063 152 379 244 ÷ 2 = 4 031 576 189 622 + 0;
- 4 031 576 189 622 ÷ 2 = 2 015 788 094 811 + 0;
- 2 015 788 094 811 ÷ 2 = 1 007 894 047 405 + 1;
- 1 007 894 047 405 ÷ 2 = 503 947 023 702 + 1;
- 503 947 023 702 ÷ 2 = 251 973 511 851 + 0;
- 251 973 511 851 ÷ 2 = 125 986 755 925 + 1;
- 125 986 755 925 ÷ 2 = 62 993 377 962 + 1;
- 62 993 377 962 ÷ 2 = 31 496 688 981 + 0;
- 31 496 688 981 ÷ 2 = 15 748 344 490 + 1;
- 15 748 344 490 ÷ 2 = 7 874 172 245 + 0;
- 7 874 172 245 ÷ 2 = 3 937 086 122 + 1;
- 3 937 086 122 ÷ 2 = 1 968 543 061 + 0;
- 1 968 543 061 ÷ 2 = 984 271 530 + 1;
- 984 271 530 ÷ 2 = 492 135 765 + 0;
- 492 135 765 ÷ 2 = 246 067 882 + 1;
- 246 067 882 ÷ 2 = 123 033 941 + 0;
- 123 033 941 ÷ 2 = 61 516 970 + 1;
- 61 516 970 ÷ 2 = 30 758 485 + 0;
- 30 758 485 ÷ 2 = 15 379 242 + 1;
- 15 379 242 ÷ 2 = 7 689 621 + 0;
- 7 689 621 ÷ 2 = 3 844 810 + 1;
- 3 844 810 ÷ 2 = 1 922 405 + 0;
- 1 922 405 ÷ 2 = 961 202 + 1;
- 961 202 ÷ 2 = 480 601 + 0;
- 480 601 ÷ 2 = 240 300 + 1;
- 240 300 ÷ 2 = 120 150 + 0;
- 120 150 ÷ 2 = 60 075 + 0;
- 60 075 ÷ 2 = 30 037 + 1;
- 30 037 ÷ 2 = 15 018 + 1;
- 15 018 ÷ 2 = 7 509 + 0;
- 7 509 ÷ 2 = 3 754 + 1;
- 3 754 ÷ 2 = 1 877 + 0;
- 1 877 ÷ 2 = 938 + 1;
- 938 ÷ 2 = 469 + 0;
- 469 ÷ 2 = 234 + 1;
- 234 ÷ 2 = 117 + 0;
- 117 ÷ 2 = 58 + 1;
- 58 ÷ 2 = 29 + 0;
- 29 ÷ 2 = 14 + 1;
- 14 ÷ 2 = 7 + 0;
- 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.
129 010 438 067 914(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
129 010 438 067 914 (base 10) = 111 0101 0101 0101 1001 0101 0101 0101 0101 0110 1100 1010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.