Possible Duplicate:
Placing checkers on an m x n board This problem seems to relate to the combinatoric design which is unfamiliar for me. Still, it arises my interests.
What is the maximum amount of checkers you can place on an $m \times n$ checkerboard such that no four checkers make a rectangle parallel to the rows and columns? Is there existed a close form for the relationship between the number of checkers and the size of the checkerboard.
There are really too many cases and one specific solution for 4 checkers is below.
The number of possible rectangles is given by the number of ways to choose two columns times the number of ways to choose two rows. i.e.: $$\frac{nm(n-1)(m-1)}{4}$$ The number of ways to put $4$ checkers on the board is: $${nm}\choose{4}$$ Thus, the number of ways to put $4$ checkers on a board without rectangles is just: $${{nm}\choose{4}} - \frac{nm(n-1)(m-1)}{4}$$ This does not answer your question regarding $k$ checkers on the board
so what is the generalization of this question? and is there existed a close form? and how to apply some counting skills in this problem and maybe applied some knowledge in the combinatorics design like my duplicated questions.