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.
did the same way found out that it will be the sum of squares
the formula is the sum of squares from1 to 5 i.e. 1 2 + 2 2 + 3 2 + 4 2 + 5 2 = 5 5
An easier solution exist where size of n is smaller : (n^2)+((n-1)^2)+((n-2)^2)+...+1. In this case , it would be , 5^2 + 4^2 + 3^2 + 2^2 + 1^2 . So ,it would be 25 + 16 + 9 + 4 + 1 .
Problem Loading...
Note Loading...
Set Loading...
we have the formula : 6 n × ( n + 1 ) × ( 2 n + 1 ) for number of squares in a chessboard of any size.
So, substituting the value n=5 for an 5 X 5 chessboard.
⇒ N o . o f s q u a r e s = 6 n × ( n + 1 ) × ( 2 n + 1 ) = 6 5 ( 5 + 1 ) ( 1 0 + 1 ) = 6 3 3 0 = 5 5 .