- #1
gEOdude
- 25
- 0
Homework Statement
243 is a decimal number. You must convert it to base n, where n will be computed using the
digit (d) 5.
For example if your digit (d) was "7" , then n is
calculated as :n = d % 6 + 2 (where d = 7) = 7%6 + 2 = 3
Homework Equations
None.
The Attempt at a Solution
n = d % 6 + 2 (where d=5) = 5%6 + 2 = 3
243 to the base of 3 =
1000003