What is the fewest straight lines with which you can make exactly 100 squares?
For example with four vertical and five horizontal lines, evenly spaced, 20 squares are formed: twelve 1x1, six 2x2 and two 3x3.
_____
|_|_|_|
|_|_|_|
|_|_|_|
|_|_|_|
This can be achieved by 6 horizontal and 9 vertical lines
This yields:
Dimension. # squares
1x1. 5*8= 40
2x2. 4*7= 28
3x3. 3*6 = 18
4x4. 2*5 =10
5x5 1*4 =4
---------------------------------------
TOTAL. 100
Edited on March 4, 2024, 7:31 am