In a game of darts, the target is a bit special and has three regions which carry 13 points, 24 points and 31 points. Question: What is the largest total number of points that is impossible to reach?
Here is my attempt, and where I get stuck:
In other words, the question is the diophantine equation $13x+24y+31z=N$ and asks the highest number $N$ such that the equation has no positive solutions $(x,y,z)$. I managed to find the general solution of the equation:
$$x = -11(N+31k)+24m \\ y=6(N+31k)-13m\\ z=-k$$
where $k$ and $m$ are any integer.
Demanding that $x$, $y$, and $z$ are all non-negative imposes conditions on $k$ and $m$ for all $N$:
$$k\leq 0 \\ \frac{143}{312}(N+31k) \leq m \leq \frac{144}{312}(N+31k)$$
Clearly, with $N$ large enough, there will always be an integer $m$ that satisfies the condition. But now which $N$ is the largest one for which there does not exist any $m,k$ integer that satisfy the conditions?
Note: the answer is $N=121$, as I confirmed with trying all possibilities... Very curious how to find this result! Thanks!