well its a question i got in an assignment..and i am getting no clue to proceed
the question is like this
A man want to communicate with alien to land him safely on earth station by providing
co-ordinates but alien use somewhat different representation of numbers(not decimal)
Alien representation contain the character set(o f a)
now for input (9,5) man gives him the following (foo,fa)
can you please give me hint or code so that i can try to write code myself
Hints:
There are three symbols. In decimal (base-10), there are 10 digits: 0 1 2 3 4 5 6 7 8 9. In binary (base-2) there are two digits, 0 and 1. In base-16 there are 16 digits. Since there are three symbols in the alien system, could we make a guess about its organization?
5base10 = 12base3. 9base10 = 100base3. So (9,5) in decimal is the same as (100, 12) in trinary. Can we make a guess about which alien symbols represent which human digits?