请输入您要查询的字词:

 

单词 BaseConversion
释义

base conversion


The PlanetMath entry bases gives a good overview over the symbolic representation of numbers, something which we use every day. This entry will give a simple overview and method of converting numbers between bases: that is, taking one representation of a number and converting it to another. When dealing with extremely large numbers, base conversion may become quite slow. Fortunately, methods exist which are significantly more efficient than those listed here; see Knuth, The Art of Computer Programming. The simplest of these work by divide-and-conquer, converting groups of digits at once. In this article, we focus on a more naive approach.

Perhaps the simplest way to explain base conversion is to describe the conversion to and from base 10 (in which everyone is accustomed to performing arithmeticPlanetmathPlanetmath). We will begin with the easier method, which is the conversion from some other base to base 10.

Conversion to Base 10

Suppose we have a number represented in base b. This number is given as a sequenceMathworldPlanetmath of symbols snsn-1s2s1.t1t2tm. This sequence represents

snbn-1+sn-1bn-2++s2b+s1+t1b-1+t2b-2++tmb-m

This is straight-forward enough. All we need to do is convert each symbol s to its decimal equivalentMathworldPlanetmathPlanetmathPlanetmathPlanetmath. Typically this is simple. The symbols 0,1,,9 usually represent the same value in any other base. For b>9, the letters of the alphabet begin to be used, with a=10,b=11, and so on. This serves up to b=36. Since the most common bases used are binary (b=2), octal (b=8), decimal (b=10), and hexadecimal (b=16), this scheme is generally sufficient.

Once we map symbols to values, we can easily apply the formulaMathworldPlanetmathPlanetmath above, adding and multiplying as we go along.

Example of Conversion to Base 10

  1. 1.

    Binary to DecimalLet b=2. Convert 10010.011 to decimal.

    10010.011=124+023+022+12+0+02-1+12-2+12-3
    =16+2+14+18
    =18.375
  2. 2.

    Ternary to DecimalLet b=3. Convert 10210.21 to decimal.

    10210.21=134+033+232+13+0+23-1+13-2
    =181+29+13+23+19
    =102.777777

    Note that there is no exact decimal representation of the ternary value 10210.21. This happens often with conversions between bases. This is why many decimal values (such as 0.1) cannot be represented precisely in binary floating point (generally used in computers for non-integral arithmetic).

  3. 3.

    Hexadecimal to DecimalLet b=16. Convert 4ad9.e3 to decimal.

    4ad9.e3=4163+10162+1316+9+1416-1+316-2
    =44096+10256+1316+9+1416+3256
    =16384+2560+208+9+227256
    =19161.88671875

Iterative Method

Obviously base conversion can become very tedious. It would make sense to write a computer program to perform these operationsMathworldPlanetmath. What follows is a simple algorithmMathworldPlanetmath that iterates through the symbols of a representation, accumulating a value as it goes along. Once all the symbols are iterated, the result is in the accumulator. This method only works for whole numbers. The fractional part of a number could be converted in the same manner, but it would have to be a separate process, working from the end of the number rather than the beginning.

Algorithm Parse((A,n,b))
Input: Sequence A, where 0A[i]<b for 1in, b>1
Output: The value represented by A in base b (where A[1] is the left-most digit)
v0
for i1 to n do
         vb*v+A[i]

Parsev

This is a simple enough method that it could even be done in one’s head.

Example of Iterative Method

Let b=2. Convert 101101 to decimal.

This is a bit easier than remembering that the first digit corresponds to the25=32 place.

Conversion From Base 10

To convert a value to some base b simply consists of inverseMathworldPlanetmathPlanetmathPlanetmathPlanetmathPlanetmathPlanetmathPlanetmath application of the iterative method. As the iterative method for “parsing” a symbolic representation of a value consists of multiplicationPlanetmathPlanetmath and addition, the iterative method for forming a symbolic representation of a value will consist of division and subtraction.

Algorithm Generate((A,n,b))
Input: Array A of sufficient size to store the representation, n>0,b>1
Output: The representation of n in base b will be stored in array A in reverse order
i1
while n>0 do
         A[i]n mod b (remainder of n/b)

nn/b (integral division)

ii+1

Example of Conversion from Base 10

Convert the decimal value 20000 to hexadecimal.

Note how we obtain the symbols from the right. We get the next symbol (moving left) by taking the value of n mod 16. We then replace n with the whole part of n/16, and repeat until n=0.

This isn’t as easy to do in one’s head as the other direction, though for small bases (e.g. b=2) it is feasible. For example, to convert 20000 to binary:

Of course, remembering that many digits (15) might be difficult.

Conversion Between Similar Bases

The digits in the previous example are grouped into sets of four both to ease readability, and to highlight the relationship between binary and hexadecimal. Since 24=16, each group of four binary digits is the representation of a hexadecimal digit in the same position of the sequence.

It is trivial to get the octal and hexadecimal representations of any number once one has the binary representation. For instance, since 23=8, the octal representation can be obtained by grouping the binary digits into groups of 3, and converting each group to an octal digit.

100 111 000 100 000=47040

Even base 25=32 could be obtained:

10011 10001 00000=jh0
随便看

 

数学辞典收录了18232条数学词条,基本涵盖了常用数学知识及数学英语单词词组的翻译及用法,是数学学习的有利工具。

 

Copyright © 2000-2023 Newdu.com.com All Rights Reserved
更新时间:2025/5/4 17:57:59