document.write( "Question 1138448: Convert 20220 base 3 to a Hindu-Arabic numeral (base 10) \n" ); document.write( "
Algebra.Com's Answer #756256 by greenestamps(13200)![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "20220 (base b) = 2b^4+0b^3+2b^2+2b^1+0b^0 = 2b^4+0b^3+2b^2+2b+0 \n" ); document.write( "20220 (base 3) = 2(3^4)+0(3^3)+2(3^2)+2(3^1)+0(3^0) = 2(81)+0+2(9)+2(3)+0 = 162+18+6 = 186 \n" ); document.write( "Here is a different method for performing the conversion, without having to know all the powers of 3. This method becomes far more efficient than the above method as the number of digits becomes larger. \n" ); document.write( "Starting at the left, multiply each digit by the base and add the next digit; repeat until there are no more digits. For this example: \n" ); document.write( "2*3=6; 6+0=6 \n" ); document.write( "6*3=18; 18*2 = 20 \n" ); document.write( "20*3 = 60; 60+2 = 62 \n" ); document.write( "62*3 = 186; 186+0 = 186 \n" ); document.write( "Algebraically, here is what this method is doing to perform the conversion from base b to base 10: \n" ); document.write( "2*b = 2b; +0 = 2b+0 \n" ); document.write( "b(2b+0) = 2b^2+0b; +2 = 2b^2+0b+2 \n" ); document.write( "b(2b^2+0b+2) = 2b^3+0b^2+2b; +2 = 2b^3+0b^2+2b+2 \n" ); document.write( "b(2b^3+0b^2+2b+2) = 2b^4+0b^3+2b^2+2b; +0 = 2b^4+0b^3+2b^2+2b+0 \n" ); document.write( "And that last algebraic expression is exactly the meaning of 20220 in base b, as shown at the beginning of my response. \n" ); document.write( " |