I recently came across this question:
If C is a digit such that the product of the three-digit numbers $2C8$ and $3C1$ is the five-digit number $90C58$, what is the value of $C$?
I start by multiplying out the two three digit numbers and simplifying: $$2C8\cdot 3C1=60000+5000C+2000+100C^2+600+90C+8=90000+100C+50+8$$ $$\implies6000+500C+200+10C^2+60+9C=9000+10C+5$$ $$\implies10C^2+499C-2745=0$$ $$C=5$$ This quadratic was a pain of solving, due to the extremely large numbers. Is there any way I can avoid getting a quadratic but still arrive at my answer?
Thanks!
Max0815
We may check each possible value of $C$, brute force, quick answer.
Well, it is simpler maybe to check the relation modulo nine, i.e. find possible values for $C$ so that $$ (2+C+8)(3+C+1) = (9+0+C+5+8)\text{ modulo nine.} $$ We get the simpler equation $(C+1)(C+4)=(C+4)$ modulo nine, so $C(C+4)=0$ modulo nine. If one factor is divisible by $3$, the other is not. So we have only two cases, $C=0,9$ or $C=5$, so that the one or the other factor is divisible by $9$. We check the $5$ first,
and of course, $298\cdot 391=300\cdot 391-2\cdot 391> 117300-1000$ has too many digits. Later edit: The $0$ is ruled out because (working modulo $100$, we get $1\times 8=8$) the last two digits of $208\cdot 301$ are $08$, not $58$.