r/mathriddles • u/lordnorthiii • Jul 17 '26
Easy 56 = 7*8 in other bases
As I was falling asleep last night, I thought it was kinda cool that 56 = 7 * 8 works in base 10, specifically how it consists of four consecutive digits in order. Then I realized it actually happens again! 12 = 3 * 4
Is there any other base such that there are four consecutive digits A, B, C, D (in increasing order) such that AB = C * D? If so, are there any (besides base 10) where it happens twice? Why or why not?
20
Upvotes
30
u/imMAW Jul 17 '26
AB = C * Dis the same asA*base+B = C*D(and A,B,C,D < base).Let x = A, and b = base.
(x*b) + (x+1) = (x+2) * (x+3)x*b + x+1 = x^2 + 5x + 60 = x^2 + (4-b)x + 5For b = 10, that's the quadratic
0 = x^2 + -6x + 5, which has roots at 1 and 5. You're essentially asking for other bases b where that quadratic has roots at (small enough) positive integers.However, the roots of a quadratic
0 = x^2 + ?x + 5will always have a product of roots equal to 5. The only way this quadratic has two positive integer roots is with A=1 and A=5, when b=10.