Binary numbers (fundamental) question

In summary, the number 1563 can be expressed in base 10 as (1 x 10^3) + (5 x 10^2) + (6 x 10^1) + (3 x 10^0), but can also be expressed as (1 x 10^3) + (5 x 10^2) + (6 x 10^1) + (3 x 10^0) in base 2 by using the powers of 2 listed above.
  • #1
tomcenjerrym
37
0
I have 2 questions:

FIRST
I read from John H. Mathews’ Numerical Methods using MATLAB, 3E that the number
1563 can be expanded in form of 10-base expansion as:

(1 × 10[tex]^{3}[/tex]) − (5 × 10[tex]^{2}[/tex]) + (6 × 10[tex]^{1}[/tex]) + (3 × 10[tex]^{0}[/tex]) …......... (1)

Which results 1000 − 500 + 60 + 3 equal to 563.

But the number 1563 should be expanded in form of 10-base expansion as:

1563 = 1000 + 500 + 60 + 3

Which means:

(1 × 10[tex]^{3}[/tex]) + (5 × 10[tex]^{2}[/tex]) + (6 × 10[tex]^{1}[/tex]) + (3 × 10[tex]^{0}[/tex]) …......... (2)

Hence, (1) ≠ (2) or 1563 ≠ 563.

So, can anyone explain me about these?

SECOND
If the number 1563 is expressible in expanded form of 10-base expansion as:

1563 = 1000 + 500 + 60 + 3
=(1 × 10[tex]^{3}[/tex]) − (5 × 10[tex]^{2}[/tex]) + (6 × 10[tex]^{1}[/tex]) + (3 × 10[tex]^{0}[/tex])

how can I express the number 1563 in expanded form of 2-base expansion?

Please advance
 
Mathematics news on Phys.org
  • #2
I would have assumed the "-(5x10^2)" to be a typo and your (2) equation to be correct.

If you understand why the base 10 expansion is correct, then you should be able to expand it into base 2 if I simply gave you the following list:

2^0 = 1
2^1 = 2
2^2 = 4
2^3 = 8
2^4 = 16
2^5 = 32
2^6 = 64
2^7 = 128
2^8 = 256
2^9 = 512
2^10 = 1024
 
  • #3



FIRST:

The reason why the two forms of expansion (1) and (2) are different is because they are using different powers of 10. In the first form (1), the powers of 10 are decreasing from left to right, while in the second form (2), the powers of 10 are increasing from left to right.

In the first form (1), the number 1563 is being expanded as 1563 = 1*10^3 - 5*10^2 + 6*10^1 + 3*10^0. This means that the first digit (1) is multiplied by 10^3, the second digit (5) is multiplied by 10^2, and so on. This is the traditional way of expanding numbers in base 10.

In the second form (2), the number 1563 is being expanded as 1563 = 1*10^3 + 5*10^2 + 6*10^1 + 3*10^0. This means that the first digit (1) is multiplied by 10^3, the second digit (5) is multiplied by 10^2, and so on. This is not the traditional way of expanding numbers in base 10, but it still results in the correct answer of 1563.

To better understand this, let's look at a simpler example of the number 123. In the traditional way of expanding numbers in base 10, we would write 123 = 1*10^2 + 2*10^1 + 3*10^0. However, we could also write it as 123 = 1*10^2 - 8*10^1 + 11*10^0. Both forms are different, but they still result in the same number 123.

In summary, both forms (1) and (2) are correct ways of expanding the number 1563 in base 10, but they are just using different powers of 10.

SECOND:

To express the number 1563 in expanded form of 2-base expansion, we need to use powers of 2 instead of powers of 10. In base 2, the digits can only be 0 or 1, so we would write 1563 as:

1563 = 1*2^10 + 1*2^9 + 1*2^
 

1. What are binary numbers?

Binary numbers are a base-2 numbering system used in digital electronics and computer programming. It consists of only two digits, 0 and 1, and is used to represent and store data in a computer.

2. How do binary numbers work?

Binary numbers follow a positional notation system, where each digit's value is determined by its position within the number. The rightmost digit has a value of 1, the next digit has a value of 2, the next has a value of 4, and so on. Each digit's value is then multiplied by its corresponding power of 2 and added together to get the decimal equivalent of the binary number.

3. Why are binary numbers important?

Binary numbers are essential in computer programming because they can represent and store data in a simple and efficient way. They are also used in digital communication systems, such as the internet, to transmit and process data quickly and accurately.

4. Can you convert binary numbers to decimal numbers?

Yes, binary numbers can be converted to decimal numbers by multiplying each digit by its corresponding power of 2 and adding them together. For example, the binary number 1010 is equivalent to the decimal number 10 (1x2^3 + 0x2^2 + 1x2^1 + 0x2^0).

5. What is the largest number you can represent in binary?

The largest number that can be represented in binary depends on the number of digits used to represent it. For example, with 8 digits, the largest number would be 11111111, which is equivalent to 255 in decimal. With more digits, larger numbers can be represented.

Similar threads

Replies
2
Views
846
  • General Math
Replies
24
Views
2K
Replies
5
Views
2K
Replies
1
Views
750
Replies
1
Views
2K
Replies
11
Views
487
Replies
17
Views
975
  • General Math
Replies
1
Views
686
Replies
5
Views
1K
Replies
5
Views
713
Back
Top