How do you answer
Sue has some buttons. If she arranges them in rows of either 2, 3, 4, 5, or 6 she has one button left over. If she arranges them in rows of 7 she has no buttons left over. What is the least possible number of buttons that sue has?
without number theory or brute force please?
Okay we want to find the smallest positive integer N such that N=r⋅lcm(2,3,4,5,6)+1 is a multiple of 7 for some integer r. How do I do that, and how do I explain to an 11 year old? There's apparently supposed to be a trick to this because it's in a standardised exam.
Or I guess based on this:
It looks like we want to minimise z s.t.
$$z = 2x_2+1=3x_3+1=4x_4+1=5x_5+1=6x_6+1=7x_7$$
where $x_i$'s are integers, which I think is linear programming or something. Help please.
The answer is 301.
Ask her, if you take away one button, what can you say about the number of buttons that are left? (Well, it's divisible by all of 2, 3, 4, 5, 6). So if it's divisible by all of those, what number must it be divisible by? And go from there. This kind of talks around both the concept of LCM and the formula $r(lcm)+1$.