Base 2 odd numbers and their mirror image values

In summary, the speakers discuss the process of mirroring numbers in base 2, starting with odd numbers. The method involves trimming the bit string and results in a linear line for natural numbers and a stepping function for mirrored values. The speaker also mentions graphing the sorted list of mirror values and promises to post a graph later for further analysis. The other speaker brings up the possibility of mirroring even numbers if the length of the bit strings is specified.
  • #1
philiprdutton
120
0
Check this out:

In base 2 take all (or the first several hundred thousand) the odd numbers and figure out the mirror image of the bit string for each number.

Ex:
mirror of 11111 is 11111
mirror of 1011101 is 1011101
mirror of 100000001111 is 111100000001

You can't really mirror an even number because the far right "0" gets flipped to the other side where there are infinite zeros. So my method just "trims" the string. (those familiar with string processing in programming languages will pick this up right away).

Anyway, you end up with a bunch of pairs of numbers. They are always odd of course. If you graph these numbers against their associated mirror values then you will see a linear line for the regular sequence of natural numbers and a kind of function which sort of has a stepping action.

Now, can you predict what will happen graph the sorted list of mirror values?

I did this with a spreadsheet and about 30000 odd numbers. It was a weird experiment because the mirrorred values, after being sorted, created a graph that is a little odd. I will post a graph later after you get a chance to think about what is happening.
 
Last edited:
Mathematics news on Phys.org
  • #2
philiprdutton said:
You can't really mirror an even number because the far right "0" gets flipped to the other side where there are infinite zeros.
Sure you can mirror an even number, if you specify the length of the bit strings you're working with (as is the case with bytes and multiples of bytes in programming languages.
If we're talking about 8-bit bytes, an example is 0011 1000. Its mirror image is 0001 1100.
 

What are base 2 odd numbers?

Base 2 odd numbers are numbers that can only be represented using the binary number system. This means that they can only be written using 0s and 1s, and the last digit is always 1.

How are base 2 odd numbers calculated?

Base 2 odd numbers follow a simple pattern where every other number is odd. For example, the first few base 2 odd numbers are 1, 11, 101, 111, 1001, etc. These numbers can be calculated by starting with 1 and adding 10 to the previous number.

What is the mirror image value of a base 2 odd number?

The mirror image value of a base 2 odd number is the number that is formed by reversing the digits of the original number. For example, the mirror image value of 101 is 101, and the mirror image value of 111 is 111.

Do base 2 odd numbers have any practical applications?

Yes, base 2 odd numbers are commonly used in computer science and digital electronics. They are the basis of binary code, which is used to represent and process information in computers.

Are there any special properties of base 2 odd numbers and their mirror image values?

Base 2 odd numbers and their mirror image values have a few interesting properties, such as the fact that when they are added together, the result is always a number with all 1s in its binary representation. Additionally, the sum of a base 2 odd number and its mirror image value is always equal to one less than a number with all 1s in its binary representation.

Similar threads

Replies
76
Views
4K
  • Introductory Physics Homework Help
Replies
1
Views
2K
  • General Math
Replies
3
Views
2K
  • Astronomy and Astrophysics
2
Replies
43
Views
10K
Replies
29
Views
32K
  • General Math
Replies
1
Views
2K
Replies
1
Views
3K
  • General Math
Replies
5
Views
8K
Back
Top