| Consider condition (b) first. A marked square can be considered to "cover"
itself and all its neighbors, that is, all squares that can be reached in a king
move. Give the board a coordinate system with (1,1) and (8,8) as opposite
corners; consider those squares whose x- and y-coordinates are both == 1 (mod
3). A marked square can cover at most 1 of those, and there are 9 in all, so we
need at least 9 marked squares. (The squares are {1,4,7} x {1,4,7}.)
If we mark exactly those 9 squares, we cover the entire board, and no 2 of the 9
are neighbors. So this solves part (a).
|
| We can find two of p,q,r whose product is >=0 (if one of them is 0 this is
immediate, otherwise there must be two with the same sign). WLOG let these two
be p and q. By the triangle inequality
a <= b+c
2 2 2
a <= b + 2bc + c
2 2 2
a pq <= pq(b + 2bc + c )
2 2 2 2 2
From 0 <= (bq-cp) we get 2bcpq <= b q + c p ; using this,
2 2 2 2 2
a pq <= b (pq+q ) + c (pq+p )
2 2 2
a pq <= b (-qr) + c (-pr)
and the desired inequality follows immediately.
|