The number (1101101 + 1011011) 2can be written in decimal system as
(200) 10
The question asks us to find the sum of two binary numbers, (1101101)$_2$ and (1011011)$_2$, and express the result in the decimal system (base 10).
There are two main ways to solve this problem:
To convert a binary number to a decimal number, we multiply each digit by the power of 2 corresponding to its position, starting from the rightmost digit (position 0) and moving left.
Let's convert the first binary number, (1101101)$_2$, to decimal:
$ (1101101)_2 = 1 \times 2^6 + 1 \times 2^5 + 0 \times 2^4 + 1 \times 2^3 + 1 \times 2^2 + 0 \times 2^1 + 1 \times 2^0 $
$ = 1 \times 64 + 1 \times 32 + 0 \times 16 + 1 \times 8 + 1 \times 4 + 0 \times 2 + 1 \times 1 $
$ = 64 + 32 + 0 + 8 + 4 + 0 + 1 $
$ = (109)_{10} $
Now, let's convert the second binary number, (1011011)$_2$, to decimal:
$ (1011011)_2 = 1 \times 2^6 + 0 \times 2^5 + 1 \times 2^4 + 1 \times 2^3 + 0 \times 2^2 + 1 \times 2^1 + 1 \times 2^0 $
$ = 1 \times 64 + 0 \times 32 + 1 \times 16 + 1 \times 8 + 0 \times 4 + 1 \times 2 + 1 \times 1 $
$ = 64 + 0 + 16 + 8 + 0 + 2 + 1 $
$ = (91)_{10} $
Now, add the two decimal numbers:
$ 109 + 91 = 200 $
So, the sum in decimal is (200)$_{10}$.
Binary addition follows these rules:
Let's add the two binary numbers (1101101)$_2$ and (1011011)$_2$:
| Carry: | 1 | 1 | 0 | 1 | 1 | 0 | ||
| 1 | 1 | 0 | 1 | 1 | 0 | 1 | ||
| + | 1 | 0 | 1 | 1 | 0 | 1 | 1 | |
| Sum: | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 |
Starting from the rightmost column:
The resulting binary sum is (11001000)$_2$.
Now, convert the binary sum (11001000)$_2$ to decimal:
$ (11001000)_2 = 1 \times 2^7 + 1 \times 2^6 + 0 \times 2^5 + 0 \times 2^4 + 1 \times 2^3 + 0 \times 2^2 + 0 \times 2^1 + 0 \times 2^0 $
$ = 1 \times 128 + 1 \times 64 + 0 \times 32 + 0 \times 16 + 1 \times 8 + 0 \times 4 + 0 \times 2 + 0 \times 1 $
$ = 128 + 64 + 0 + 0 + 8 + 0 + 0 + 0 $
$ = (200)_{10} $
Both methods show that the sum of (1101101)$_2$ and (1011011)$_2$ is (200)$_{10}$.
| Concept | Binary (Base 2) | Decimal (Base 10) |
|---|---|---|
| Digits Used | 0, 1 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 |
| Place Value | Powers of 2 ($2^0, 2^1, 2^2, ...$) | Powers of 10 ($10^0, 10^1, 10^2, ...$) |
| Conversion (Binary to Decimal) | Sum of (digit $\times$ $2^{\text{position}}$) for each digit | The number itself |
Number systems are ways of representing numbers using a set of digits and a base (or radix). The base determines the number of unique digits available and the value of each digit based on its position.
Understanding how to convert between different number systems and perform basic arithmetic operations like binary addition is fundamental in computer science and digital logic.
What is the binary equivalent of the decimal number 0.3125?
What is (1000000001) 2– (0.0101) 2equal to?
The decimal number (127.25) 10, when converted to binary number, takes the form
If (11101011) 2is converted to decimal system, then the resulting number is
If the number 235 in decimal system is converted into binary system, then what is the resulting number?