Binary numbers can also be added, subtracted, multiplied, and divided, just like decimal numbers! โ
For example, adding two binary numbers like 10 (2 in decimal) and
11 (3 in decimal) works as follows:
```
1 (carry)
10
+11
------
101 (5 in decimal)
```
Binary math follows some simple rules. For example, 0 + 0 = 0, 0 + 1 = 1, and 1 + 1 = 0 (with a carry of 1)! ๐
Learning binary arithmetic helps computers perform calculations super fast, making math easier for us too! ๐