Find the number of rectangles in a 1 8 ∗ 1 9 grid.
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.
We can view a 1 8 × 1 9 grid as a grid formed by 19 horizontal lines and 20 vertical lines. A rectangle in the grid can be formed by using 2 horizontal lines and 2 vertical lines. Hence, there are ( 2 1 9 ) of choosing a "width" of a rectangle and ( 2 2 0 ) ways of choosing a "length" of a rectangle. Thus the total number of rectangles is ( 2 1 9 ) × ( 2 2 0 ) = 3 2 4 9 0 .
Problem Loading...
Note Loading...
Set Loading...
For 18 1 row, there will be 1+2+3+...+18 = 171 rectangles. If such rows are repeated 19 times, the multiplicity of the same in other direction is: 1+2+3+.....+19 = 190. Total number is: 171 190 = 32490.