I have a large number of toy soldiers, which I can arrange into a rectangle array consisting of rows and a number of columns. I notice that if I remove 100 toy soldiers, then I can arrange the remaining ones into a rectangle with 5 fewer rows and 5 more columns.
How many toy soldiers would I have to remove from the original configuration to be able to arrange the remaining ones into a rectangular array with 11 fewer rows and 11 more columns?
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.
Let x be the number of rows and y be the number of columns. Then we are given that
( x − 5 ) ( y + 5 ) = x y − 1 0 0 ⟹ x y − 5 ( y − x ) − 2 5 = x y − 1 0 0 ⟹ 5 ( y − x ) = 7 5 ⟹ y − x = 1 5 .
Now let N be the number of toy soldiers that must be removed to achieve the desired goal. This translates to satisfying the equation
( x − 1 1 ) ( y + 1 1 ) = x y − N ⟹ x y − 1 1 ( y − x ) − 1 2 1 = x y − N ⟹ 1 1 ( y − x ) = N − 1 2 1 ⟹ 1 1 × 1 5 = N − 1 2 1 ⟹ N = 2 8 6 .