Binary Calculator
Enter two binary numbers and an operation to calculate the result.
Binary Arithmetic Guide
Binary number system
Binary is base-2, using only digits 0 and 1. Each position represents a power of 2: …8, 4, 2, 1.
Addition rules
| A | B | Sum | Carry |
|---|---|---|---|
| 0 | 0 | 0 | 0 |
| 0 | 1 | 1 | 0 |
| 1 | 0 | 1 | 0 |
| 1 | 1 | 0 | 1 |
