This is one of those math problems in books and in S.A.T. tests that have to basis in reality.
But that's another story.
I brought this up on Math Forum dot com or something like that and got banned because math professors like to live in their artificial worlds.
I count 204 squares.
How did I arrive at that number?
Total: 204 squares.
As a programming function (in PHP), it's pretty simple:
$x = 8; //Grid size assumes square, not rectanglefunction squares($x){$total = 0; //Initialize totalwhile($x > 0){$total += ($x * $x); //Current total + calculated value of $x $x$x--; //Subtract 1 from current value of $x}return $total;}echo squares($x);If you wanted to be even more literal minded, you could make argument for 189 squares on a physical board if you counted the bottom of the board and that it was blank. For a digital board, you could get really crazy and count the number of pixels and then apply the same reasoning used on that grid and add 188 to it.