This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
That's a cute atypical solution to an otherwise standard problem :)
Log in to reply
Is it that atypical? I used the same method.
I like how your solution uses divisibility instead of solving for the roots of a third-degree polynomial.
Call our mystery base x . 1 0 0 0 < 1 1 1 1 , and 1 0 0 0 in base x is 1 x 3 + 0 x 2 + 0 x + 0 = x 3 .
In base 10, then, x 3 < 4 0 0 . This means x < 3 4 0 0 . The cube root of 400 is approximately 7.4, so x must be 7 or smaller.
Note also that 1 3 3 3 > 1 1 1 1 , and 1 3 3 1 in base x is 1 x 3 + 3 x 2 + 3 x + 1 = ( x + 1 ) 3 . In base 10, ( x + 1 ) 3 > 4 0 0 , so x + 1 must be greater than approximately 7.4, implying x is greater than approximately 6.4.
The only choice for x , then, is 7. Checking 7 itself and converting to base 10, ( 1 ) 7 3 + ( 1 ) 7 2 + ( 1 ) 7 + ( 1 ) 1 = 4 0 0 .
Like this solution? Check out more types like this of this at the wiki Diophantine Equations - Solve by Bounding Values .
I did somewhat like Tijemen:
Calling our mystery base b, we're requested to solve 1 b 3 + 1 b 2 + 1 b 1 + 1 b 0 = 4 0 0 , i.e. b 3 + b 2 + b 1 = b ( b 2 + b 1 + 1 ) = 3 9 9 , and therefore, b divides 399, which is a composite number: 3 9 9 = 3 ∗ 7 ∗ 1 9 .
Since b is a natural number greater than 1, 3 b 3 > b 3 + b 2 + b 1 = 3 9 9 > 3 b 2 , therefore, 5 < b < 1 1 . So, we are left with only one possibility: b = 7 .
I solved x 3 + x 2 + x − 3 9 9 = 0 in a CAS (computer algebra system) I am writing in Ruby with Newton's Method.
Problem Loading...
Note Loading...
Set Loading...
Call our mystery base b . We need to solve 1 b 3 + 1 b 2 + 1 b 1 + 1 b 0 = 4 0 0 , i.e. b 3 + b 2 + b = 3 9 9 , therefore b divides 399. Since 3 9 9 = 3 × 7 × 1 9 , we are left with only a few possible values of b :
b = 1 ⇒ b 3 + b 2 + b + 1 = 4 ⇒ no solution
b = 3 ⇒ b 3 + b 2 + b + 1 = 4 0 ⇒ no solution
b = 7 ⇒ b 3 + b 2 + b + 1 = 4 0 0 ⇒ b = 7 .
Higher values of b are not possible since they will certainly yield b 3 + b 2 + b + 1 > 4 0 0 .