What are the required steps to convert base 10 decimal system
number 71 382 796 719 024 256 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;
- 71 382 796 719 024 256 ÷ 2 = 35 691 398 359 512 128 + 0;
- 35 691 398 359 512 128 ÷ 2 = 17 845 699 179 756 064 + 0;
- 17 845 699 179 756 064 ÷ 2 = 8 922 849 589 878 032 + 0;
- 8 922 849 589 878 032 ÷ 2 = 4 461 424 794 939 016 + 0;
- 4 461 424 794 939 016 ÷ 2 = 2 230 712 397 469 508 + 0;
- 2 230 712 397 469 508 ÷ 2 = 1 115 356 198 734 754 + 0;
- 1 115 356 198 734 754 ÷ 2 = 557 678 099 367 377 + 0;
- 557 678 099 367 377 ÷ 2 = 278 839 049 683 688 + 1;
- 278 839 049 683 688 ÷ 2 = 139 419 524 841 844 + 0;
- 139 419 524 841 844 ÷ 2 = 69 709 762 420 922 + 0;
- 69 709 762 420 922 ÷ 2 = 34 854 881 210 461 + 0;
- 34 854 881 210 461 ÷ 2 = 17 427 440 605 230 + 1;
- 17 427 440 605 230 ÷ 2 = 8 713 720 302 615 + 0;
- 8 713 720 302 615 ÷ 2 = 4 356 860 151 307 + 1;
- 4 356 860 151 307 ÷ 2 = 2 178 430 075 653 + 1;
- 2 178 430 075 653 ÷ 2 = 1 089 215 037 826 + 1;
- 1 089 215 037 826 ÷ 2 = 544 607 518 913 + 0;
- 544 607 518 913 ÷ 2 = 272 303 759 456 + 1;
- 272 303 759 456 ÷ 2 = 136 151 879 728 + 0;
- 136 151 879 728 ÷ 2 = 68 075 939 864 + 0;
- 68 075 939 864 ÷ 2 = 34 037 969 932 + 0;
- 34 037 969 932 ÷ 2 = 17 018 984 966 + 0;
- 17 018 984 966 ÷ 2 = 8 509 492 483 + 0;
- 8 509 492 483 ÷ 2 = 4 254 746 241 + 1;
- 4 254 746 241 ÷ 2 = 2 127 373 120 + 1;
- 2 127 373 120 ÷ 2 = 1 063 686 560 + 0;
- 1 063 686 560 ÷ 2 = 531 843 280 + 0;
- 531 843 280 ÷ 2 = 265 921 640 + 0;
- 265 921 640 ÷ 2 = 132 960 820 + 0;
- 132 960 820 ÷ 2 = 66 480 410 + 0;
- 66 480 410 ÷ 2 = 33 240 205 + 0;
- 33 240 205 ÷ 2 = 16 620 102 + 1;
- 16 620 102 ÷ 2 = 8 310 051 + 0;
- 8 310 051 ÷ 2 = 4 155 025 + 1;
- 4 155 025 ÷ 2 = 2 077 512 + 1;
- 2 077 512 ÷ 2 = 1 038 756 + 0;
- 1 038 756 ÷ 2 = 519 378 + 0;
- 519 378 ÷ 2 = 259 689 + 0;
- 259 689 ÷ 2 = 129 844 + 1;
- 129 844 ÷ 2 = 64 922 + 0;
- 64 922 ÷ 2 = 32 461 + 0;
- 32 461 ÷ 2 = 16 230 + 1;
- 16 230 ÷ 2 = 8 115 + 0;
- 8 115 ÷ 2 = 4 057 + 1;
- 4 057 ÷ 2 = 2 028 + 1;
- 2 028 ÷ 2 = 1 014 + 0;
- 1 014 ÷ 2 = 507 + 0;
- 507 ÷ 2 = 253 + 1;
- 253 ÷ 2 = 126 + 1;
- 126 ÷ 2 = 63 + 0;
- 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.
71 382 796 719 024 256(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
71 382 796 719 024 256 (base 10) = 1111 1101 1001 1010 0100 0110 1000 0001 1000 0010 1110 1000 1000 0000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.