What is the binary representation of 73?
1001001
Converting a number from the decimal system (base 10) to the binary system (base 2) is a fundamental concept in computer science and mathematics. The binary system uses only two digits, 0 and 1, to represent all numbers. To convert a decimal number to its binary equivalent, we typically use the method of repeated division by 2.
The process involves repeatedly dividing the decimal number by 2 and recording the remainder at each step. We continue this process until the quotient becomes 0. The binary representation is then obtained by reading the remainders from bottom to top.
| Decimal Number | Operation (Divide by 2) | Quotient | Remainder |
|---|---|---|---|
| 73 | $73 \div 2$ | 36 | 1 |
| 36 | $36 \div 2$ | 18 | 0 |
| 18 | $18 \div 2$ | 9 | 0 |
| 9 | $9 \div 2$ | 4 | 1 |
| 4 | $4 \div 2$ | 2 | 0 |
| 2 | $2 \div 2$ | 1 | 0 |
| 1 | $1 \div 2$ | 0 | 1 |
Reading the remainders from bottom to top, we get the binary representation of 73.
The remainders are: 1, 0, 0, 1, 0, 0, 1.
So, the binary representation of decimal 73 is 1001001.
Let's compare our calculated binary representation of 73 with the given options:
Our calculated value, 1001001, matches Option 4.
| Concept | Description | Base | Digits Used |
|---|---|---|---|
| Decimal System | The standard number system used daily. | 10 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 |
| Binary System | A number system used by computers. | 2 | 0, 1 |
| Conversion | Process of changing a number's representation from one base to another. | N/A | N/A |
The value of each digit in a binary number is determined by its position, just like in the decimal system. However, in binary, the positions represent powers of 2, starting from $2^0$ for the rightmost digit, then $2^1$, $2^2$, and so on, moving to the left.
Let's verify our binary number 1001001 by converting it back to decimal:
The binary number 1001001 has 7 digits. The positional values from right to left are $2^0, 2^1, 2^2, 2^3, 2^4, 2^5, 2^6$.
Value = (Digit at position $n$) $\times$ ($2^n$)
$1001001_2 = (1 \times 2^6) + (0 \times 2^5) + (0 \times 2^4) + (1 \times 2^3) + (0 \times 2^2) + (0 \times 2^1) + (1 \times 2^0)$
$= (1 \times 64) + (0 \times 32) + (0 \times 16) + (1 \times 8) + (0 \times 4) + (0 \times 2) + (1 \times 1)$
$= 64 + 0 + 0 + 8 + 0 + 0 + 1$
$= 73$
This confirms that the binary representation 1001001 is indeed equivalent to the decimal number 73.
What is the value of 1 2 + 2 2 + 3 2 + ......21 2 ?
Which sequence is correct to represent the hierarchical chain of number system?
(Where N - Natural Numbers
W - Whole Numbers
Q - Rational Numbers
Z - Integers)
What must be added to 45680 to make it exactly divisible by 9?
How many zeroes are there at the end of the following product?
1 x 5 x 10 x 15 x 20 x 25 x 30 x 35 x 40 x 45 x 50 x 55 x 60
Let XYZ be a three-digit number, where (x + y + Z) is not a multiple of 3. Then (XYZ + YZX + ZXY) is not divisible by