What are the required steps to convert base 10 decimal system
number 296 196 766 695 876 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;
- 296 196 766 695 876 ÷ 2 = 148 098 383 347 938 + 0;
- 148 098 383 347 938 ÷ 2 = 74 049 191 673 969 + 0;
- 74 049 191 673 969 ÷ 2 = 37 024 595 836 984 + 1;
- 37 024 595 836 984 ÷ 2 = 18 512 297 918 492 + 0;
- 18 512 297 918 492 ÷ 2 = 9 256 148 959 246 + 0;
- 9 256 148 959 246 ÷ 2 = 4 628 074 479 623 + 0;
- 4 628 074 479 623 ÷ 2 = 2 314 037 239 811 + 1;
- 2 314 037 239 811 ÷ 2 = 1 157 018 619 905 + 1;
- 1 157 018 619 905 ÷ 2 = 578 509 309 952 + 1;
- 578 509 309 952 ÷ 2 = 289 254 654 976 + 0;
- 289 254 654 976 ÷ 2 = 144 627 327 488 + 0;
- 144 627 327 488 ÷ 2 = 72 313 663 744 + 0;
- 72 313 663 744 ÷ 2 = 36 156 831 872 + 0;
- 36 156 831 872 ÷ 2 = 18 078 415 936 + 0;
- 18 078 415 936 ÷ 2 = 9 039 207 968 + 0;
- 9 039 207 968 ÷ 2 = 4 519 603 984 + 0;
- 4 519 603 984 ÷ 2 = 2 259 801 992 + 0;
- 2 259 801 992 ÷ 2 = 1 129 900 996 + 0;
- 1 129 900 996 ÷ 2 = 564 950 498 + 0;
- 564 950 498 ÷ 2 = 282 475 249 + 0;
- 282 475 249 ÷ 2 = 141 237 624 + 1;
- 141 237 624 ÷ 2 = 70 618 812 + 0;
- 70 618 812 ÷ 2 = 35 309 406 + 0;
- 35 309 406 ÷ 2 = 17 654 703 + 0;
- 17 654 703 ÷ 2 = 8 827 351 + 1;
- 8 827 351 ÷ 2 = 4 413 675 + 1;
- 4 413 675 ÷ 2 = 2 206 837 + 1;
- 2 206 837 ÷ 2 = 1 103 418 + 1;
- 1 103 418 ÷ 2 = 551 709 + 0;
- 551 709 ÷ 2 = 275 854 + 1;
- 275 854 ÷ 2 = 137 927 + 0;
- 137 927 ÷ 2 = 68 963 + 1;
- 68 963 ÷ 2 = 34 481 + 1;
- 34 481 ÷ 2 = 17 240 + 1;
- 17 240 ÷ 2 = 8 620 + 0;
- 8 620 ÷ 2 = 4 310 + 0;
- 4 310 ÷ 2 = 2 155 + 0;
- 2 155 ÷ 2 = 1 077 + 1;
- 1 077 ÷ 2 = 538 + 1;
- 538 ÷ 2 = 269 + 0;
- 269 ÷ 2 = 134 + 1;
- 134 ÷ 2 = 67 + 0;
- 67 ÷ 2 = 33 + 1;
- 33 ÷ 2 = 16 + 1;
- 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.
296 196 766 695 876(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
296 196 766 695 876 (base 10) = 1 0000 1101 0110 0011 1010 1111 0001 0000 0000 0001 1100 0100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.