Can Binary Fit?

In summary, the decimal system uses a base 10 system which allows for the representation of any number. The binary system can also represent any number between 0 and 255 using 8 bits. This is possible because any number can be expressed using the formula a*R^N+b*R^{N-1} + ... + c*R^2 + a*R^1 + d*R^0 + e*R^-1. This applies to any base, not just base 10, as shown through the examples of base 4 and base 2. Therefore, there is a general proof that every number can be represented in any base. "Base one" is represented by a single symbol and is commonly used in games for keeping score.
  • #1
O.J.
199
0
Aite, now we know using the decimal system u can represent any number u want becuz u use a base 10 system. my question about the binary system is: u can very well represent numbers from 0 to 255 using 8 bits. Now, how can you show that u can represent EVERY number between these 2 extremes?
 
Engineering news on Phys.org
  • #2
You could write them all out on paper.

- Warren
 
  • #3
No proof here but...it seems that in general if you have base R and you're using N digits.
You can express any number in that base with
[tex]a*R^N+b*R^{N-1} + ... + c*R^2 + a*R^1 + d*R^0 + e*R^-1 ... [/tex] a/b/c/d/e being any number in the interval [0,R-1]

to find what numbers you can express you take your base R to the digit's power: [itex]R^N[/itex] and then -1 for 0 so you can express from [itex][0,R^N-1][/itex]

ex: Base 10, 2 digits gives [itex]10^2-1=100-1=99[/itex] so you can represent any number from 0 to 99 which we know for sure but you can still write out every number between 0 and 99 to be sure.

the same is with base 2/8/16/etc...
 
Last edited:
  • #4
what I am saying is: how do the people who came up with this system be sure that you can represent ANY number using ANY base? is there a general proof or intuitive explanation to this?
 
  • #5
If you accept that you can represent any number in decimal, what makes you think any other base would be any different? Is the number 10 special?

- Warren
 
  • #6
Yes Chroot it is special because it is how many fingers I have.
 
  • #7
O.J. said:
what I am saying is: how do the people who came up with this system be sure that you can represent ANY number using ANY base? is there a general proof or intuitive explanation to this?

As chroot points out, you're thinking that base 10 is somehow unique. It's not. You can use 10 symbols to count, or you can use 16 or you can use 2, or you can use any number.

Line up a thouand pebbles on the ground.
Start with the first one, assign a symbol to it (let's make that symbol a "0").
Assign another symbol to the next pebble (we'll make that symbol a "1").
Continue assigning a new symbol to each new pebble until you have a comfortable number of unique symbols (Some people like 10 unique symbols, some people like 16, some people and machines can only manage 2 unique symbols).
Now, rather than creating new symbols for every single subsequent pebble, you can group them. You can keep track of the groups using the symbols you've already created.
So, that first group, the one you've just finished, prefix it to mark it as "group 0", so your first few pebbleas will be labelled 00, 01, 02, 03 etc. The one you're about to start, prefix it with your second symbol "1" (so, 10,11,12,etc.)

Now continue counting pebbles. Everytime you run out of symbols, start a nrew group and prefix it with the next symbol (30,31,32,33, etc.)

(Sidenote: Once you've made as many groups as you have symbols, you can group the groups. pebble 3 of group 5 of supergroup 2 is called 253.)

Note that the above method works regardless of how many unique symbols you start with.


Follow along, here:

Code:
[FONT="Courier New"]
Say we have ten unique symbols (Base 10)

row of pebbles:     Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl ...
label them uniquely: 0   1   2   3   4   5   6   7   8   9
label as group 0:   00  01  02  03  04  05  06  07  08  09
start a new group:                                           0   1   2   3   4  5
label as group 1:   					    10  11  12  13  14  15  ...

what do you get?
row of pebbles:     Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl ...
labels:              0   1   2   3   4   5   6   7   8   9  10  11  12  13  14  15  ...


Now let's try  this with fewer symbols, say 4 (Base 4)


row of pebbles:     Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl ...
label them uniquely: 0   1   2   3
label as group 0:   00  01  02  03
start a new group:                   0   1   2   3
label as group 1:   		    10  11  12  13
start a new group:                                   0   1   2   3 
label as group 2:   		                    20  21  22  23

what do you get?
row of pebbles:     Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl ...
labels:              0   1   2   3  10  11  12  13  20  21  22  23  30  31

Now let's try it with only two symbols (Base 2):

row of pebbles:     Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl ...
label them uniquely: 0   1
label as group 0:   00  01
start a new group:           0   1 
label as group 1:           10  11
start a new group:                   0   1 
You can't label it as group 2, what is your "third" symbol? It's 10.
So label as group 10:               100 101
start a new group:                           0   1
Label as fourth group (11):		    110 111

what do you get?
row of pebbles:     Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl Pbl ...
labels:             000 001 010 011 100 101 110 111 etc.
[/FONT]

Now you can see why every number can be represented in any base.
 
Last edited:
  • #8
I'll give extra bonus points to anyone who can show, not only how base 1 is represented, but a common place many of us use it when passing the time with some friends.
 
  • #9
O.J. said:
what I am saying is: how do the people who came up with this system be sure that you can represent ANY number using ANY base? is there a general proof or intuitive explanation to this?

you (there are 3 letters in the word) want a constructive proof that every non-negative integer less than BN can be represented with N digits, each that can take on any integer value from 0 <= digit < B? do you want that constructive proof?
 
  • #10
"Base one" has only one symbol, usually a vertical line. A group of N vertical lines represents the number N. People often use this number system when keeping score in games.

- Warren
 
  • #11
:biggrin:

10 char
 

Related to Can Binary Fit?

1. What is the binary system?

The binary system is a number system that uses only two digits, 0 and 1, to represent all numbers. It is the basis of modern computing and is used in computers, calculators, and other digital devices.

2. How does the binary system work?

In the binary system, each digit represents a power of 2. The rightmost digit represents 2^0, the second rightmost digit represents 2^1, and so on. This means that each digit can only have two possible values, 0 or 1. By combining these digits, we can represent any number in the binary system.

3. Why is the binary system used in computers?

The binary system is used in computers because it is easy for electronic devices to store and manipulate data in the form of 0s and 1s. This is because electronic circuits can be designed to have two states, which can represent the two digits in the binary system.

4. What are the advantages of the binary system?

One of the main advantages of the binary system is that it is a simple and efficient way to represent numbers and perform calculations. It is also the basis of modern computing and allows for the storage and manipulation of large amounts of data.

5. Can all numbers be represented in the binary system?

Yes, all numbers can be represented in the binary system by using a sufficient number of digits. However, some numbers may have a large number of digits in binary, making it more practical to represent them in other number systems such as decimal or hexadecimal.

Similar threads

Replies
4
Views
973
  • General Math
Replies
2
Views
208
  • Programming and Computer Science
Replies
3
Views
968
  • Special and General Relativity
Replies
24
Views
1K
  • Precalculus Mathematics Homework Help
Replies
2
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
5
Views
1K
  • Astronomy and Astrophysics
Replies
10
Views
4K
  • Electrical Engineering
Replies
12
Views
10K
  • Computing and Technology
Replies
4
Views
803
Replies
13
Views
2K
Back
Top