
Oren S. answered 07/22/15
Tutor
4.9
(190)
Mathematics and Computer Science Tutor
You can convert any number from base 10 to another base by repeatedly dividing it by the new base and keeping track of the remainders. To start with an easy example, I will convert 10 into binary (base 2).
10/2 = 5 R0
5/2 = 2 R1
2/2 = 1 R0
1/2 = 0 R1
Once you get to zero, you simply read the column of remainders from the bottom to the top to get your final answer, which in this case is 1010.
Moving on to the big problem, we can start by dividing 3209386 by 26. The answer is 123437 with remainder 24. Since we are expressing the digits of the solution by letters, we can use the 25th letter of the alphabet, y. (We use the 25th letter rather than the 24th because we are using a=0, b=1, ..., z=25). Then we can continue as above.
3209386/26 = 123437 R24 y
123437/26 = 4747 R15 p
4747/26 = 182 R15 p
182/26 = 7 R0 a
7/26 = 0 R7 h
Thus, the answer is happy.