Find the number of rectangles in a 1 0 × 1 2 chessboard.
Note: All squares are rectangles, but not all rectangles are squares.
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.
Number of rectangles in
n × p board is
4 n p ( n + 1 ) ( p + 1 )
Here
n = 1 0 , p = 1 2
Final answer = 4 2 9 0
Chess boards are always of the dimension 8×8. So your question itself is wrong. But nice solution.
Maths and physics questions have the weirdest chess boards...
with all the courtesy, this problem is not about whether it is a chessboard or not.. it is about counting the number of rectangles..
not really
But I haven't ever seen a chess board with a dimension other than 8 × 8 . I may be wrong though. But still, it was a good problem. ;)
@Prasun Biswas – actually... I have played on a chessboard other than 8 ∗ 8 . It is a chess for four persons.
Problem Loading...
Note Loading...
Set Loading...
In an a x b board, there are a + 1 horizontal lines and b + 1 vertical lines. Since a rectangle has 2 horizontal and 2 vertical lines then the number of rectangles would be: C ( 2 1 1 ) ∗ C ( 2 1 3 ) = 4 2 9 0