This is a continuation of Parity. We further explore the idea of parity and its various uses. Apart from simply determining if a number is odd or even, parity can also be used as a counting argument.
1. The opposite corners are removed from a chessboard. Can the resulting shape be covered by 199 rectangles of size ? Each rectangle must be placed so as to cover two adjacent squares of the board.
Solution: We can colour the squares of the chessboard black and white in an alternating pattern. This will give 200 squares of each colour. The two opposite corners will have the same colour, so when they are removed, there will be 198 squares of one colour remaining and 200 squares of the other. Each rectangle covers exactly one black square and one white square, so 199 rectangles cannot cover all 200 squares of the same colour.
2. In an table, half of the entries are and the remaining entries are . You are allowed to multiply any number of rows and columns by . Is it possible to get 63 of the entries to be and the other entry by this process?
Solution: Consider what happens when we multiply a row by . Suppose that of the entries in the row were and the other entries were . After we perform the multiplication, of the entries will be and of the entries will be . This represents a change of to the total number of entries which are . Since is always even when is an integer, the number of entries which are will always have the same parity. Since the parity was even to begin with, it can never become odd by a sequence of these multiplications. Therefore, it is not possible to do get 63 of the entries to be 1 by this process.
3. A move for a knight on a chessboard consists of the knight going 2 squares in one direction and 1 square in a perpendicular direction. Show that if a knight is on a square in a chessboard, it cannot visit every other square exactly once before returning to its starting square.
Solution: Proof by contradiction. Once again, we can colour the squares of the chessboard black and white in an alternating pattern. Without loss of generality, the corner squares are all black. We can count that there are 13 black squares and 12 white squares.
Suppose that such a loop exists for the knight. Note that the sequence of squares in the knight's moves must alternate in color, e.g., . This implies that there must be an equal number of Black and White squares, since the knight returned to the starting square. This gives a contradiction.
4. Show that is irrational by assuming that and arriving at a contradiction involving parity.
Solution: Proof by contradiction. Suppose that is rational. Then , where and are coprime positive integers. Clearing denominators and squaring, we get . Since the LHS is even, so is the RHS, thus is even. Let . Then, we obtain
Now, since the RHS is even, so it the LHS, thus is even. As such, and are both even, contradicting the assumption that they are coprime.
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
In #4 why can you assume a and b are coprime?
Log in to reply
If they are not, you can divide both by their GCD.