How many rectangles made up of even number of squares are there in a rectangle?
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.
Finding for the even number of rectangles is also the same as finding the number of rectangles minus the odd number of rectangles
there are 8 vertical lines and 7 horizontal lines or vice versa, choosing 2 from 8 vertical lines and 2 from 7 horizontal lines will give us a rectangle
finding for the number of rectangles in a 7 by 6 rectangle= ( 8 C 2 ) ( 7 C 2 )
⇒ 2 8 ⋅ 2 1 = 5 8 8
finding for odd number of rectangles in a 7 by 6 rectangle= ( 7 + 5 + 3 + 1 ) ( 6 + 4 + 2 )
⇒ 1 6 ⋅ 1 2 = 1 9 2
finding for even number rectangles = 5 8 8 − 1 9 2
⇒ 3 9 6