Process Overview
The binary number system uses only two digits, 0 and 1, to represent all numbers. This flowchart shows how to convert a decimal number (like 13) into binary by repeatedly dividing by 2 and recording remainders.
The binary number system uses only two digits, 0 and 1, to represent all numbers. This flowchart shows how to convert a decimal number (like 13) into binary by repeatedly dividing by 2 and recording remainders.
Decimal Number (13)
|
v
+----------------+
| Divide by 2 |
| Quotient: 6 |
| Remainder: 1 |
+----------------+
|
v
+----------------+
| Divide by 2 |
| Quotient: 3 |
| Remainder: 0 |
+----------------+
|
v
+----------------+
| Divide by 2 |
| Quotient: 1 |
| Remainder: 1 |
+----------------+
|
v
+----------------+
| Divide by 2 |
| Quotient: 0 |
| Remainder: 1 |
+----------------+
|
v
Binary digits collected: 1 1 0 1