SOLUTION: Let $N$ be a positive integer. The number $N$ has three digits when expressed in base $7$. When the number $N$ is expressed in base $12$, it has the same three digits, in reverse
Algebra ->
Decimal-numbers
-> SOLUTION: Let $N$ be a positive integer. The number $N$ has three digits when expressed in base $7$. When the number $N$ is expressed in base $12$, it has the same three digits, in reverse
Log On
Question 1207584: Let $N$ be a positive integer. The number $N$ has three digits when expressed in base $7$. When the number $N$ is expressed in base $12$, it has the same three digits, in reverse order. What is $N$? (Express your answer in decimal.) Found 2 solutions by greenestamps, math_tutor2020:Answer by greenestamps(13198) (Show Source):
To verify I wrote a quick python script to check numbers 100 through 666 in base 7.
The script couldn't find any solutions, but it did find these near-misses
300 base 7 = 103 base 12
301 base 7 = 104 base 12
which is a bit interesting.
I found a similar problem online dealing with bases 11 and 15.
The python script found that:
241 base 11 = 142 base 15
482 base 11 = 284 base 15
Furthermore,
204 base 7 = 402 base 5
102 base 7 = 201 base 5
and
361 base 7 = 163 base 11
502 base 7 = 205 base 11
There are likely many other pairs of values like this.
It's possible your teacher made a typo somewhere.