Difference between revisions of "Base numbers/Conversion"

(Method 2)
(Converting from base b to base 10)
 
(10 intermediate revisions by 6 users not shown)
Line 1: Line 1:
 +
====Video====
 +
https://www.youtube.com/watch?v=ht-xfKPPStQ&t=
 +
 
== Converting from base b to base 10 ==
 
== Converting from base b to base 10 ==
 
The next natural question is: how do we convert a number from another base into base 10?  For example, what does <math>4201_5</math> mean?  Just like base 10, the first digit to the left of the decimal place tells us how many <math>5^0</math>'s we have, the second tells us how many <math>5^1</math>'s we have, and so forth.  Therefore:
 
The next natural question is: how do we convert a number from another base into base 10?  For example, what does <math>4201_5</math> mean?  Just like base 10, the first digit to the left of the decimal place tells us how many <math>5^0</math>'s we have, the second tells us how many <math>5^1</math>'s we have, and so forth.  Therefore:
  
<center><math>\displaystyle 4201_5 = (4\cdot 5^3 + 2\cdot 5^2 + 0\cdot 5^1 + 1\cdot 5^0)_{10}</math></center>
+
<center><math>4201_5 = (4\cdot 5^3 + 2\cdot 5^2 + 0\cdot 5^1 + 1\cdot 5^0)_{10}</math></center>
 
<center><math>=4\cdot 125 + 2\cdot 25 + 1</math></center>
 
<center><math>=4\cdot 125 + 2\cdot 25 + 1</math></center>
 
<center><math>= 551_{10}</math></center>
 
<center><math>= 551_{10}</math></center>
  
From here, we can generalize.  Let <math>x=(a_na_{n-1}\cdots a_1a_0)_b</math> be an <math>\displaystyle n</math>-digit number in base <math>b</math>.  In our example (<math> 2746_{10}</math>) <math>a_3 = 2, a_2 = 7, a_1 = 4</math> and <math>\displaystyle a_0 = 6 </math>.  We convert this to base 10 as follows:
+
From here, we can generalize.  Let <math>x=(a_na_{n-1}\cdots a_1a_0)_b</math> be an <math>n+1</math>-digit number in base <math>b</math>.  In our example (<math> 2746_{10}</math>) <math>a_3 = 2, a_2 = 7, a_1 = 4</math> and <math>a_0 = 6 </math>.  We convert this to base 10 as follows:
  
 
<center><math> x = (a_na_{n-1}\cdots a_1a_0)_b</math></center>
 
<center><math> x = (a_na_{n-1}\cdots a_1a_0)_b</math></center>
 
<center><math>  = (b^n\cdot a_n + b^{n-1}\cdot a_{n-1}+\cdots + b\cdot a_1 + a_0)_{10}</math></center>
 
<center><math>  = (b^n\cdot a_n + b^{n-1}\cdot a_{n-1}+\cdots + b\cdot a_1 + a_0)_{10}</math></center>
 
  
 
== Converting from base 10 to base b ==
 
== Converting from base 10 to base b ==
  
It turns out that converting from base 10 to other bases is far harder for us than converting from other bases to base 10.  This shouldn't be a suprise, though.  We work in base 10 ''all the time'' so we are naturally less comfortable with other bases.  Nonetheless, it is important to understand how to convert from base 10 into other bases.
+
It turns out that converting from base 10 to other bases is far harder for us than converting from other bases to base 10.  This shouldn't be a surprise, though.  We work in base 10 ''all the time'' so we are naturally less comfortable with other bases.  Nonetheless, it is important to understand how to convert from base 10 into other bases.
  
 
We'll look at two methods for converting from base 10 to other bases.
 
We'll look at two methods for converting from base 10 to other bases.
Line 22: Line 24:
 
Let's try converting 1000 base 10 into base 7.  Basically, we are trying to find the solution to the equation
 
Let's try converting 1000 base 10 into base 7.  Basically, we are trying to find the solution to the equation
  
<center><math> 1000 = a_0 + 7a_1 + 49a_2 + 343a_3+3401a_4+\cdots</math></center>
+
<center><math> 1000 = a_0 + 7a_1 + 49a_2 + 343a_3+2401a_4+\cdots</math></center>
  
where all the <math>\displaystyle a_i</math> are digits from 0 to 6.  Obviously, all the <math>\displaystyle a_i</math> from <math>a_4</math> and up are 0 since otherwise they will add in a number greater than 1000, and all the terms in the sum are nonnegative.  Then, we wish to find the largest <math>a_3</math> such that <math>343a_3</math> does not exceed 1000.  Thus, <math> a_3= 2</math> since <math>2a_3=686</math> and <math>3a_3=1029</math>.  This leaves us with
+
where all the <math>a_i</math> are digits from 0 to 6.  Obviously, all the <math>a_i</math> from <math>a_4</math> and up are 0 since otherwise they will add in a number greater than 1000, and all the terms in the sum are nonnegative.  Then, we wish to find the largest <math>a_3</math> such that <math>343a_3</math> does not exceed 1000.  Thus, <math> a_3= 2</math> since <math>2a_3=686</math> and <math>3a_3=1029</math>.  This leaves us with
  
 
<center><math> 1000 = a_0 + 7a_1 + 49 a_2 + 343(2)\Leftrightarrow 314 = a_0 + 7a_1 + 49 a_2.</math></center>
 
<center><math> 1000 = a_0 + 7a_1 + 49 a_2 + 343(2)\Leftrightarrow 314 = a_0 + 7a_1 + 49 a_2.</math></center>
Line 32: Line 34:
 
<center><math>20 = a_0 + 7a_1.</math></center>
 
<center><math>20 = a_0 + 7a_1.</math></center>
  
We use the same procedure twice more to get that <math>a_1=2</math> and <math>\displaystyle a_0=6</math>.
+
We use the same procedure twice more to get that <math>a_1=2</math> and <math>a_0=6</math>.
  
 
Finally, we have that <math>1000_{10}=2626_7</math>.
 
Finally, we have that <math>1000_{10}=2626_7</math>.
Line 47: Line 49:
 
We'll exhibit the second method with the same problem used to exhibit the first method.
 
We'll exhibit the second method with the same problem used to exhibit the first method.
  
The second method is just like how we converted from other bases into base 10.  To do this, we pretend that our standard number system is base 7.  In base 7, however, there is no digit 7.  So 7 is actually represented as 10! Also, the multiplication rules we know do not hold.  For example, <math>\displaystyle 3\cdot 3\neq 9</math> (in base 7).  For one, there is no 9 in base 7.  Second, we need to go back to the definition of multiplication to fully understand what's happening.  Multiplication is a shorthand for repeated addition.  So, <math>\displaystyle 3\cdot 3 = 3 + 3 + 3 = 12_7</math>.
+
The second method is just like how we converted from other bases into base 10.  To do this, we pretend that our standard number system is base 7.  In base 7, however, there is no digit 7.  So 7 is actually represented as "10." Also, the multiplication rules we know do not hold.  For example, <math>3\cdot 3\neq 9</math> (in base 7).  For one, there is no 9 in base 7.  Second, we need to go back to the definition of multiplication to fully understand what's happening.  Multiplication is a shorthand for repeated addition.  So, <math>3\cdot 3 = 3 + 3 + 3 = 12_7</math>.
  
In base 7, we have that 10 (the decimal number 10) is 13.  Thus, if we view everything from base 7, we are actually converting <math>1000_{13}</math> to base 10.  So, this is just <math>\displaystyle 13^{3}</math>.  Remember that we aren't doing this in our regular decimal system, so <math>13^3\neq 2197</math>.  Instead, we have to compute <math>13\times 13\times 13</math> as <math>(13\times 13)\times 13=202\times 13=2626</math>.
+
In base 7, we have that 10 (the decimal number 10) is 13.  Thus, if we view everything from base 7, we are actually converting <math>1000_{13}</math> to base 10.  So, this is just <math>13^{3}</math>.  Remember that we aren't doing this in our regular decimal system, so <math>13^3\neq 2197</math>.  Instead, we have to compute <math>13\times 13\times 13</math> as <math>(13\times 13)\times 13=202\times 13=2626</math>.
  
 
This method can be ''very'' confusing unless you have a very firm grasp on the notion of number systems.
 
This method can be ''very'' confusing unless you have a very firm grasp on the notion of number systems.
  
=== Binary and Hexadecimal ===
+
== Binary and Hexadecimal ==
 
Two of the most common number bases are binary (base 2) and hexadecimal (base 16).  Both of these are used in computer science.
 
Two of the most common number bases are binary (base 2) and hexadecimal (base 16).  Both of these are used in computer science.
 
A binary number consists entirely of 0s and 1s.  Each binary digit is called a bit.
 
A binary number consists entirely of 0s and 1s.  Each binary digit is called a bit.
 
A base 16 number requires additional symbols after 9 since any positive integer less than 16 is a single digit.  The standard notation is to use the letters a=10,b=11,c=12,d=13,e=14,f=15.
 
A base 16 number requires additional symbols after 9 since any positive integer less than 16 is a single digit.  The standard notation is to use the letters a=10,b=11,c=12,d=13,e=14,f=15.
In order to indicate that a number is written in hexadecimal, the prefix 0x is used.  For instance, 0x95 is the same as <math>\displaystyle 95_{16}</math> and is equivalent to <math>\displaystyle 9 \times 16^1 + 5 = 149</math>
+
In order to indicate that a number is written in hexadecimal, the prefix 0x is used.  For instance, 0x95 is the same as <math>95_{16}</math> and is equivalent to <math>9 \times 16^1 + 5 = 149</math>
  
 
=== Examples ===
 
=== Examples ===
Convert the binary number 1111 1110 to decimal. (A space is often inserted every 4 digits to improve readability of binary numbers.  A group of 4 digits (bits) is called a nible and a group of 8 bits is called a byte)
+
1. Convert the binary number 1111 1110 to decimal. (A space is often inserted every 4 digits to improve readability of binary numbers.  A group of 4 digits (bits) is called a nible and a group of 8 bits is called a byte)
  
 
We could simply add all of the digit values: <math>0 \times 1 + 1 \times 2 + 1 \times 4 + 1 \times 8 + 1 \times 16 + 1 \times 32 + 1 \times 64 + 1 \times 128 </math>.
 
We could simply add all of the digit values: <math>0 \times 1 + 1 \times 2 + 1 \times 4 + 1 \times 8 + 1 \times 16 + 1 \times 32 + 1 \times 64 + 1 \times 128 </math>.
Line 66: Line 68:
 
Therefore, 1111 1111 = 2<sup>8</sup> -1 = 255.
 
Therefore, 1111 1111 = 2<sup>8</sup> -1 = 255.
 
The number we are trying to convert is one less, so it must be <b>254</b>.
 
The number we are trying to convert is one less, so it must be <b>254</b>.
 +
 +
 +
2. Convert the hexadecimal number 0xA7 into decimal.
 +
 +
Since A means ten and the A is in the "16s place," we have 0xA7<math> = 10 \times 16 + 7 = 167</math>
 +
 +
 +
3. Convert 700 into hexadecimal.
 +
<math>16^2 = 256</math>, so 700 will require three digits.
 +
Using Method 1 above, we want to solve:
 +
<center><math> 700 = a_0 + 16a_1 + 256a_2</math></center>
 +
 +
<math>\frac{700}{256} = 2 </math> remainder 188, so <math> a_2 = 2</math>
 +
<center><math> 188 = a_0 + 16a_1</math></center>
 +
<math>\frac{188}{16} = 11</math> remainder 12, so <math> a_1 = 11</math> and <math>a0=12</math>
 +
We have
 +
<center><math> 700 = 12 + 16 \times 11 + 256 \times 2</math></center>
 +
Using standard hexadecimal notation, we can write
 +
<center>'''700 = 0x2BC'''</center>
 +
 +
 +
4. Convert 0xF7B9 into binary.  (hint: You can do this directly without first converting into decimal)
  
 
== Resources ==
 
== Resources ==
Line 75: Line 99:
 
==== Classes ====
 
==== Classes ====
 
* [http://www.artofproblemsolving.com/Classes/AoPS_C_ClassesS.php#begnum AoPS Introduction to Number Theory Course]
 
* [http://www.artofproblemsolving.com/Classes/AoPS_C_ClassesS.php#begnum AoPS Introduction to Number Theory Course]
 
  
 
== See also ==
 
== See also ==
 
* [[base numbers]]
 
* [[base numbers]]
 
* [[number theory]]
 
* [[number theory]]

Latest revision as of 15:56, 18 April 2020

Video

https://www.youtube.com/watch?v=ht-xfKPPStQ&t=

Converting from base b to base 10

The next natural question is: how do we convert a number from another base into base 10? For example, what does $4201_5$ mean? Just like base 10, the first digit to the left of the decimal place tells us how many $5^0$'s we have, the second tells us how many $5^1$'s we have, and so forth. Therefore:

$4201_5 = (4\cdot 5^3 + 2\cdot 5^2 + 0\cdot 5^1 + 1\cdot 5^0)_{10}$
$=4\cdot 125 + 2\cdot 25 + 1$
$= 551_{10}$

From here, we can generalize. Let $x=(a_na_{n-1}\cdots a_1a_0)_b$ be an $n+1$-digit number in base $b$. In our example ($2746_{10}$) $a_3 = 2, a_2 = 7, a_1 = 4$ and $a_0 = 6$. We convert this to base 10 as follows:

$x = (a_na_{n-1}\cdots a_1a_0)_b$
$= (b^n\cdot a_n + b^{n-1}\cdot a_{n-1}+\cdots + b\cdot a_1 + a_0)_{10}$

Converting from base 10 to base b

It turns out that converting from base 10 to other bases is far harder for us than converting from other bases to base 10. This shouldn't be a surprise, though. We work in base 10 all the time so we are naturally less comfortable with other bases. Nonetheless, it is important to understand how to convert from base 10 into other bases.

We'll look at two methods for converting from base 10 to other bases.

Method 1

Let's try converting 1000 base 10 into base 7. Basically, we are trying to find the solution to the equation

$1000 = a_0 + 7a_1 + 49a_2 + 343a_3+2401a_4+\cdots$

where all the $a_i$ are digits from 0 to 6. Obviously, all the $a_i$ from $a_4$ and up are 0 since otherwise they will add in a number greater than 1000, and all the terms in the sum are nonnegative. Then, we wish to find the largest $a_3$ such that $343a_3$ does not exceed 1000. Thus, $a_3= 2$ since $2a_3=686$ and $3a_3=1029$. This leaves us with

$1000 = a_0 + 7a_1 + 49 a_2 + 343(2)\Leftrightarrow 314 = a_0 + 7a_1 + 49 a_2.$

Using similar reasoning, we find that $a_2 = 6$, leaving us with

$20 = a_0 + 7a_1.$

We use the same procedure twice more to get that $a_1=2$ and $a_0=6$.

Finally, we have that $1000_{10}=2626_7$.

An alternative version of method 1 is to find the "digits" $a_0,a_1,\dots$ starting with $a_0$. Note that $a_0$ is just the remainder of division of $1000$ by $7$. So, to find it, all we need to do is to carry out one division with remainder. We have $1000:7=142(R6)$. How do we find $a_1$, now? It turns out that all we need to do is to find the remainder of the division of the quotient $142$ by $7$: $142:7=20(R2)$, so $a_1=2$. Now, $20:7=2(R6)$, so $a_3=6$. Finally, $2:7=0(R2)$, so $a_4=2$. We may continue to divide beyond this point, of course, but it is clear that we will just get $0:7=0(R0)$ during each step.

Note that both versions of this method use computations in base $10$.

It's often a good idea to double check by converting your answer back into base 10, since this conversion is easier to do. We know that $2626_7=343\cdot 2 + 6\cdot 49 + 2\cdot 7 + 6=1000$, so we can rest assured we got the right answer.

Method 2

We'll exhibit the second method with the same problem used to exhibit the first method.

The second method is just like how we converted from other bases into base 10. To do this, we pretend that our standard number system is base 7. In base 7, however, there is no digit 7. So 7 is actually represented as "10." Also, the multiplication rules we know do not hold. For example, $3\cdot 3\neq 9$ (in base 7). For one, there is no 9 in base 7. Second, we need to go back to the definition of multiplication to fully understand what's happening. Multiplication is a shorthand for repeated addition. So, $3\cdot 3 = 3 + 3 + 3 = 12_7$.

In base 7, we have that 10 (the decimal number 10) is 13. Thus, if we view everything from base 7, we are actually converting $1000_{13}$ to base 10. So, this is just $13^{3}$. Remember that we aren't doing this in our regular decimal system, so $13^3\neq 2197$. Instead, we have to compute $13\times 13\times 13$ as $(13\times 13)\times 13=202\times 13=2626$.

This method can be very confusing unless you have a very firm grasp on the notion of number systems.

Binary and Hexadecimal

Two of the most common number bases are binary (base 2) and hexadecimal (base 16). Both of these are used in computer science. A binary number consists entirely of 0s and 1s. Each binary digit is called a bit. A base 16 number requires additional symbols after 9 since any positive integer less than 16 is a single digit. The standard notation is to use the letters a=10,b=11,c=12,d=13,e=14,f=15. In order to indicate that a number is written in hexadecimal, the prefix 0x is used. For instance, 0x95 is the same as $95_{16}$ and is equivalent to $9 \times 16^1 + 5 = 149$

Examples

1. Convert the binary number 1111 1110 to decimal. (A space is often inserted every 4 digits to improve readability of binary numbers. A group of 4 digits (bits) is called a nible and a group of 8 bits is called a byte)

We could simply add all of the digit values: $0 \times 1 + 1 \times 2 + 1 \times 4 + 1 \times 8 + 1 \times 16 + 1 \times 32 + 1 \times 64 + 1 \times 128$. But, there is a much shorter way. Note that in base 10, 99 = 102 - 1 and 999 = 103 - 1. Similarly, in base 2, 11 = 22 - 1, 111 = 23 - 1, and so on. Therefore, 1111 1111 = 28 -1 = 255. The number we are trying to convert is one less, so it must be 254.


2. Convert the hexadecimal number 0xA7 into decimal.

Since A means ten and the A is in the "16s place," we have 0xA7$= 10 \times 16 + 7 = 167$


3. Convert 700 into hexadecimal. $16^2 = 256$, so 700 will require three digits. Using Method 1 above, we want to solve:

$700 = a_0 + 16a_1 + 256a_2$

$\frac{700}{256} = 2$ remainder 188, so $a_2 = 2$

$188 = a_0 + 16a_1$

$\frac{188}{16} = 11$ remainder 12, so $a_1 = 11$ and $a0=12$ We have

$700 = 12 + 16 \times 11 + 256 \times 2$

Using standard hexadecimal notation, we can write

700 = 0x2BC


4. Convert 0xF7B9 into binary. (hint: You can do this directly without first converting into decimal)

Resources

Books

Classes

See also