Compare commits
5 Commits
dbe44d9797
...
edits
| Author | SHA1 | Date | |
|---|---|---|---|
| b9f378ab76 | |||
| 1a5aafb19b | |||
| 53c3e1859b | |||
| 2de7ee0c22 | |||
| 1b17553891 |
@@ -21,7 +21,7 @@ Unlock this lock with only 5 keypresses.
|
|||||||
\end{solution}
|
\end{solution}
|
||||||
\vfill
|
\vfill
|
||||||
|
|
||||||
Now, consider the same lock, now set with a three-digit binary code.
|
Now consider the same lock, but configured with a three-digit binary code.
|
||||||
\problem{}
|
\problem{}
|
||||||
How many codes are possible?
|
How many codes are possible?
|
||||||
\vfill
|
\vfill
|
||||||
|
|||||||
@@ -20,7 +20,11 @@ We say $v$ is a \textit{subword} of $w$ if $v$ is contained in $w$. \par
|
|||||||
For example, \texttt{11} is a subword of \texttt{011}, but \texttt{00} is not.
|
For example, \texttt{11} is a subword of \texttt{011}, but \texttt{00} is not.
|
||||||
|
|
||||||
\definition{}
|
\definition{}
|
||||||
Recall \ref{lockproblem}. Let's generalize this to the \textit{$n$-subword problem}: \par
|
Recall the lock problem from the previous page.
|
||||||
|
Let's generalize this to the \textit{$n$-subword problem}:
|
||||||
|
|
||||||
|
\vspace{1mm}
|
||||||
|
|
||||||
Given an alphabet $A$ and a positive integer $n$,
|
Given an alphabet $A$ and a positive integer $n$,
|
||||||
we want a word over $A$ that contains all possible length-$n$ subwords.
|
we want a word over $A$ that contains all possible length-$n$ subwords.
|
||||||
The shortest word that solves a given $n$-subword problem is called the \textit{optimal solution}.
|
The shortest word that solves a given $n$-subword problem is called the \textit{optimal solution}.
|
||||||
@@ -67,7 +71,7 @@ Find the following:
|
|||||||
|
|
||||||
\problem{}<sbounds>
|
\problem{}<sbounds>
|
||||||
Let $w$ be a word over an alphabet of size $k$. \par
|
Let $w$ be a word over an alphabet of size $k$. \par
|
||||||
Prove the following:
|
Show that all of the following are true:
|
||||||
\begin{itemize}
|
\begin{itemize}
|
||||||
\item $\mathcal{S}_n(w) \leq k^n$
|
\item $\mathcal{S}_n(w) \leq k^n$
|
||||||
\item $\mathcal{S}_n(w) \geq \mathcal{S}_{n-1}(w) - 1$
|
\item $\mathcal{S}_n(w) \geq \mathcal{S}_{n-1}(w) - 1$
|
||||||
@@ -103,7 +107,7 @@ Prove the following:
|
|||||||
|
|
||||||
\definition{}
|
\definition{}
|
||||||
Let $v$ and $w$ be words over the same alphabet. \par
|
Let $v$ and $w$ be words over the same alphabet. \par
|
||||||
The word $vw$ is the word formed by writing $v$ after $w$. \par
|
The word $vw$ is the word formed by writing $w$ after $v$. \par
|
||||||
For example, if $v = \texttt{1001}$ and $w = \texttt{10}$, $vw$ is $\texttt{100110}$.
|
For example, if $v = \texttt{1001}$ and $w = \texttt{10}$, $vw$ is $\texttt{100110}$.
|
||||||
|
|
||||||
\problem{}
|
\problem{}
|
||||||
@@ -116,7 +120,6 @@ We'll call this the \textit{Fibonacci word} of order $k$.
|
|||||||
\item What are $F_3$, $F_4$, and $F_5$?
|
\item What are $F_3$, $F_4$, and $F_5$?
|
||||||
\item Compute $\mathcal{S}_0$ through $\mathcal{S}_5$ for $F_5$.
|
\item Compute $\mathcal{S}_0$ through $\mathcal{S}_5$ for $F_5$.
|
||||||
\item Show that the length of $F_k$ is the $(k + 2)^\text{th}$ Fibonacci number. \par
|
\item Show that the length of $F_k$ is the $(k + 2)^\text{th}$ Fibonacci number. \par
|
||||||
\hint{Induction.}
|
|
||||||
\end{itemize}
|
\end{itemize}
|
||||||
|
|
||||||
\begin{solution}
|
\begin{solution}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
% use [nosolutions] flag to hide solutions.
|
% use [nosolutions] flag to hide solutions.
|
||||||
% use [solutions] flag to show solutions.
|
% use [solutions] flag to show solutions.
|
||||||
\documentclass[
|
\documentclass[
|
||||||
solutions,
|
%solutions,
|
||||||
singlenumbering
|
singlenumbering
|
||||||
]{../../../lib/tex/handout}
|
]{../../../lib/tex/handout}
|
||||||
\usepackage{../../../lib/tex/macros}
|
\usepackage{../../../lib/tex/macros}
|
||||||
@@ -19,4 +19,5 @@
|
|||||||
\input{parts/01 fibonacci.tex}
|
\input{parts/01 fibonacci.tex}
|
||||||
\input{parts/02 dice.tex}
|
\input{parts/02 dice.tex}
|
||||||
\input{parts/03 coins.tex}
|
\input{parts/03 coins.tex}
|
||||||
|
\input{parts/04 bonus.tex}
|
||||||
\end{document}
|
\end{document}
|
||||||
@@ -77,7 +77,7 @@ A \textit{rational function} $f$ is a function that can be written as a quotient
|
|||||||
That is, $f(x) = \frac{p(x)}{q(x)}$ where $p$ and $q$ are polynomials.
|
That is, $f(x) = \frac{p(x)}{q(x)}$ where $p$ and $q$ are polynomials.
|
||||||
|
|
||||||
\problem{}
|
\problem{}
|
||||||
Solve the equation from \ref<fibo> for $F(x)$, expressing it as a rational function.
|
Solve the equation from \ref{fibo} for $F(x)$, expressing it as a rational function.
|
||||||
|
|
||||||
\begin{solution}
|
\begin{solution}
|
||||||
\begin{align*}
|
\begin{align*}
|
||||||
@@ -99,8 +99,8 @@ Solve the equation from \ref<fibo> for $F(x)$, expressing it as a rational funct
|
|||||||
|
|
||||||
|
|
||||||
\definition{}
|
\definition{}
|
||||||
\textit{Partial fraction decomposition} is an algebreic technique that works as follows: \par
|
\textit{Partial fraction decomposition} is an algebraic technique that works as follows: \par
|
||||||
If $p(x)$ is a polynomial and $a$ and $b$ are constants,
|
If $p(x)$ is a polynomial of degree 1 and $a$ and $b$ are constants,
|
||||||
we can rewrite the rational function $\frac{p(x)}{(x-a)(x-b)}$ as follows:
|
we can rewrite the rational function $\frac{p(x)}{(x-a)(x-b)}$ as follows:
|
||||||
\begin{equation*}
|
\begin{equation*}
|
||||||
\frac{p(x)}{(x-a)(x-b)} = \frac{c}{x-a} + \frac{d}{x-b}
|
\frac{p(x)}{(x-a)(x-b)} = \frac{c}{x-a} + \frac{d}{x-b}
|
||||||
@@ -131,7 +131,7 @@ find a closed-form expression for its coefficients using partial fraction decomp
|
|||||||
|
|
||||||
\problem{}
|
\problem{}
|
||||||
Using problems from the introduction and \ref{pfd}, find an expression
|
Using problems from the introduction and \ref{pfd}, find an expression
|
||||||
for the coefficients of $F(x)$ (and this, for the Fibonacci numbers).
|
for the coefficients of $F(x)$ (and thus, for the Fibonacci numbers).
|
||||||
|
|
||||||
|
|
||||||
\begin{solution}
|
\begin{solution}
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ the probability that the sum of the two dice is $k$.
|
|||||||
|
|
||||||
\problem{}
|
\problem{}
|
||||||
Using generating functions, find two six-sided dice whose sum has the same
|
Using generating functions, find two six-sided dice whose sum has the same
|
||||||
distribution as the sum of two standard six-sided dice? \par
|
distribution as the sum of two standard six-sided dice. \par
|
||||||
|
|
||||||
That is, for any integer $k$, the number if ways that the sum of the two
|
That is, for any integer $k$, the number if ways that the sum of the two
|
||||||
nonstandard dice rolls as $k$ is equal to the number of ways the sum of
|
nonstandard dice rolls as $k$ is equal to the number of ways the sum of
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ using pennies, nickels, dimes, quarters and half-dollars?}
|
|||||||
\vspace{2mm}
|
\vspace{2mm}
|
||||||
|
|
||||||
Most ways of solving this involve awkward brute-force
|
Most ways of solving this involve awkward brute-force
|
||||||
approache that don't reveal anything interesting about the problem:
|
approaches that don't reveal anything interesting about the problem:
|
||||||
how can we change our answer if we want to make change for
|
how can we change our answer if we want to make change for
|
||||||
\$0.51, or \$1.05, or some other quantity?
|
\$0.51, or \$1.05, or some other quantity?
|
||||||
|
|
||||||
|
|||||||
57
src/Advanced/Generating Functions/parts/04 bonus.tex
Executable file
57
src/Advanced/Generating Functions/parts/04 bonus.tex
Executable file
@@ -0,0 +1,57 @@
|
|||||||
|
\section{Extra Problems}
|
||||||
|
|
||||||
|
|
||||||
|
\problem{USAMO 1996 Problem 6}
|
||||||
|
Determine (with proof) whether there is a subset $X$ of
|
||||||
|
the nonnegative integers with the following property: for any nonnegative integer $n$ there is exactly
|
||||||
|
one solution of $a + 2b = n$ with $a, b \in X$.
|
||||||
|
(The original USAMO question asked about all integers, not just nonnegative - this is harder,
|
||||||
|
but still approachable with generating functions.)
|
||||||
|
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
\problem{IMO Shortlist 1998}
|
||||||
|
Let $a_0, a_1, ...$ be an increasing sequence of nonnegative integers
|
||||||
|
such that every nonnegative integer can be
|
||||||
|
expressed uniquely in the form $a_i + 2a_j + 4a_k$,
|
||||||
|
where $i, j, k$ are not necessarily distinct.
|
||||||
|
|
||||||
|
Determine $a_1998$.
|
||||||
|
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
\problem{USAMO 1986 Problem 5}
|
||||||
|
By a partition $\pi$ of an integer $n \geq 1$, we mean here a
|
||||||
|
representation of $n$ as a sum of one or more positive integers where the summands must be put in
|
||||||
|
nondecreasing order. (e.g., if $n = 4$, then the partitions $\pi$ are
|
||||||
|
$1 + 1 + 1 + 1$, $1 + 1 + 2$, $1 + 3, 2 + 2$, and $4$).
|
||||||
|
|
||||||
|
|
||||||
|
For any partition $\pi$, define $A(\pi)$ to be the number of ones which appear in $\pi$, and define $B(\pi)$
|
||||||
|
to be the number of distinct integers which appear in $\pi$ (e.g, if $n = 13$ and $\pi$ is the partition
|
||||||
|
$1 + 1 + 2 + 2 + 2 + 5$, then $A(\pi) = 2$ and $B(\pi) = 3$).
|
||||||
|
|
||||||
|
Show that for any fixed $n$, the sum of $A(\pi)$ over all partitions of $\pi$ of $n$ is equal to the sum of
|
||||||
|
$B(\pi)$ over all partitions of $\pi$ of $n$.
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
\problem{USAMO 2017 Problem 2}
|
||||||
|
Let $m_1, m_2, ..., m_n$ be a collection of $n$ distinct positive
|
||||||
|
integers. For any sequence of integers $A = (a_1, ..., a_n)$ and any permutation $w = w_1, ..., w_n$ of
|
||||||
|
$m_1, ..., m_n$, define an $A$-inversion of $w$ to be a pair of entries $w_i, w_j$ with $i < j$ for which one of the
|
||||||
|
following conditions holds:
|
||||||
|
\begin{itemize}
|
||||||
|
\item $ai \geq wi > wj$
|
||||||
|
\item $wj > ai \geq wi$
|
||||||
|
\item $wi > wj > ai$
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
Show that for any two sequences of integers $A = (a_1, ..., a_n)$ and $B = (b_1, ..., b_n)$ and for any
|
||||||
|
positive integer $k$, the number of permutations of $m_1, ..., m_n$ having exactly $k$ $A$-inversions is equal
|
||||||
|
to the number of permutations of $m_1, ..., m_n$ having exactly $k$ $B$-inversions.
|
||||||
|
(The original USAMO problem allowed the numbers $m_1, ..., m_n$ to not necessarily be distinct.)
|
||||||
|
|
||||||
|
\vfill
|
||||||
@@ -127,10 +127,6 @@ Mate the king in one move. \par
|
|||||||
\pagebreak
|
\pagebreak
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
% Sherlock, a question of survival
|
% Sherlock, a question of survival
|
||||||
\problem{An empty board}
|
\problem{An empty board}
|
||||||
\difficulty{2}{5}
|
\difficulty{2}{5}
|
||||||
@@ -161,42 +157,6 @@ There is one more piece on the board, which isn't shown. What color square does
|
|||||||
\pagebreak
|
\pagebreak
|
||||||
|
|
||||||
|
|
||||||
% Sherlock, another monochromatic
|
|
||||||
\problem{The knight's grave}
|
|
||||||
\difficulty{3}{5}
|
|
||||||
|
|
||||||
In the game below, no pieces have moved from a black square to a white square, or from a white square to a black square.
|
|
||||||
The white king has made less than fourteen moves. \par
|
|
||||||
Use this information to show that a pawn was promoted. \par
|
|
||||||
|
|
||||||
% spell:off
|
|
||||||
\manyboards{
|
|
||||||
ke8,
|
|
||||||
Pb2,Pd2,
|
|
||||||
Ke1
|
|
||||||
}
|
|
||||||
% spell:on
|
|
||||||
|
|
||||||
\begin{solution}
|
|
||||||
Knights always move to a different colored square, so all four missing knights must have been captured on their home square.
|
|
||||||
What pieces captured them?
|
|
||||||
|
|
||||||
\vspace{2mm}
|
|
||||||
|
|
||||||
We can easily account for the white knights and the black knight on G8, but who could've captured the knight from B8?
|
|
||||||
The only white pieces that can move to black squares are pawns, the Bishop (which is trapped on C1), the rook (which is stuck on column A and row 1), or the king (which would need at least 14 moves to do so).
|
|
||||||
|
|
||||||
\vspace{2mm}
|
|
||||||
|
|
||||||
If this knight was captured by a pawn, that pawn would be immediately promoted. If it was captured by a piece that wasn't a pawn, that piece must be a promoted pawn.
|
|
||||||
\end{solution}
|
|
||||||
|
|
||||||
\vfill
|
|
||||||
\pagebreak
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
% Arabian Knights, intro (given with solution)
|
% Arabian Knights, intro (given with solution)
|
||||||
@@ -373,3 +333,121 @@ Which bishop was it, and what did it capture? \par
|
|||||||
|
|
||||||
\vfill
|
\vfill
|
||||||
\pagebreak
|
\pagebreak
|
||||||
|
|
||||||
|
|
||||||
|
% Sherlock, appendix
|
||||||
|
\problem{Moriarty's first}
|
||||||
|
\difficulty{3}{5}
|
||||||
|
|
||||||
|
|
||||||
|
No captures have been made in the last four moves. \par
|
||||||
|
It is White's move. What was the previous move?
|
||||||
|
|
||||||
|
% spell:off
|
||||||
|
\manyboards{
|
||||||
|
Bc8,
|
||||||
|
pg6,
|
||||||
|
Pg5,kh5,
|
||||||
|
Pd4,Qg4,Bh4,
|
||||||
|
pd3,
|
||||||
|
Pd2,Be2,Bg2,
|
||||||
|
Nc1,rd1,Ne1,Kf1,Qg1,Rh1
|
||||||
|
}
|
||||||
|
% spell:on
|
||||||
|
|
||||||
|
\begin{solution}
|
||||||
|
To see what the position was four moves ago,
|
||||||
|
move the Black queen to E4, the knight on E1 to F3,
|
||||||
|
the Black bishop to E1, and the White bishop on C8 to H3.
|
||||||
|
|
||||||
|
The following sequence of moves brought the game to the present position:
|
||||||
|
|
||||||
|
\begin{itemize}
|
||||||
|
\item bishop to c8, check
|
||||||
|
\item bishop to h4, check
|
||||||
|
\item knight to e1, check
|
||||||
|
\item queen to g4.
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
This is the only way the present position could have arisen,
|
||||||
|
so Black's last move was with the queen from E4 to G4.
|
||||||
|
|
||||||
|
|
||||||
|
Try any other last move, and you will find it impossible to play back three more moves.
|
||||||
|
\end{solution}
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
\pagebreak
|
||||||
|
|
||||||
|
|
||||||
|
% Sherlock, appendix
|
||||||
|
\problem{Moriarty's second}
|
||||||
|
\difficulty{3}{5}
|
||||||
|
|
||||||
|
|
||||||
|
Neither the White king nor queen has moved
|
||||||
|
during the last five moves, nor has any piece
|
||||||
|
been captured during that time.
|
||||||
|
What was the last move?
|
||||||
|
|
||||||
|
% spell:off
|
||||||
|
\manyboards{
|
||||||
|
kh8,
|
||||||
|
Kg6,Bh6,
|
||||||
|
pa4,
|
||||||
|
Qa2
|
||||||
|
}
|
||||||
|
% spell:on
|
||||||
|
|
||||||
|
\begin{solution}
|
||||||
|
Put the Black pawn on A7, the Black king on G8, remove the
|
||||||
|
White bishop, and put a White pawn on d5; this was the position
|
||||||
|
five moves ago. The following sequence of moves brought the
|
||||||
|
game to its present position:
|
||||||
|
|
||||||
|
\begin{itemize}
|
||||||
|
\item White: P-d6
|
||||||
|
\item Black: K-h8
|
||||||
|
\item White: P-d7
|
||||||
|
\item Black: P-a6
|
||||||
|
\item White: P-d8 = B
|
||||||
|
\item Black: P-a5
|
||||||
|
\item White: B-g5
|
||||||
|
\item Black: P-a4
|
||||||
|
\item White: B-h6
|
||||||
|
\end{itemize}
|
||||||
|
\end{solution}
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
\pagebreak
|
||||||
|
|
||||||
|
|
||||||
|
% Sherlock, appendix
|
||||||
|
\problem{Moriarty's third}
|
||||||
|
\difficulty{3}{5}
|
||||||
|
|
||||||
|
|
||||||
|
No pawn has moved, nor has any piece been
|
||||||
|
captured in the last five moves. \par
|
||||||
|
The Black king has been accidentally
|
||||||
|
knocked off the board. \par
|
||||||
|
On what square should he stand?
|
||||||
|
|
||||||
|
% spell:off
|
||||||
|
\manyboards{
|
||||||
|
rh8,
|
||||||
|
pa7,pb7,pc7,pd7,pe7,Kf7,pg7,Ph7,
|
||||||
|
Pg6,
|
||||||
|
na2
|
||||||
|
}
|
||||||
|
% spell:on
|
||||||
|
|
||||||
|
\begin{solution}
|
||||||
|
The only way to avoid a retrograde stalemate for White is by
|
||||||
|
placing the Black king on C8. Black's last move was with
|
||||||
|
the rook from D8, White's move before that was with his
|
||||||
|
king from G8, and Black's move before that was to castle.
|
||||||
|
\end{solution}
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
\pagebreak
|
||||||
|
|||||||
@@ -169,16 +169,156 @@ White to move. Which side of the board did each color start on? \par
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
% Sherlock, another monochromatic
|
||||||
|
\problem{Monochromatic}
|
||||||
|
\difficulty{4}{5}
|
||||||
|
|
||||||
|
In the game below, no pieces have moved from a black square to a white square or from a white square to a black square.
|
||||||
|
The white king has made fewer than fourteen moves. \par
|
||||||
|
Use this information to show that a pawn was promoted. \par
|
||||||
|
|
||||||
|
% spell:off
|
||||||
|
\manyboards{
|
||||||
|
ke8,
|
||||||
|
Pb2,Pd2,
|
||||||
|
Ke1
|
||||||
|
}
|
||||||
|
% spell:on
|
||||||
|
|
||||||
|
\begin{solution}
|
||||||
|
Knights always move to a different colored square, so all four missing knights must have been captured on their home square.
|
||||||
|
What pieces captured them?
|
||||||
|
|
||||||
|
\vspace{2mm}
|
||||||
|
|
||||||
|
We can easily account for the white knights and the black knight on G8, but who could've captured the knight from B8?
|
||||||
|
The only white pieces that can move to black squares are pawns, the Bishop (which is trapped on C1), the rook (which is stuck on column A and row 1), or the king (which would need at least 14 moves to do so).
|
||||||
|
|
||||||
|
\vspace{2mm}
|
||||||
|
|
||||||
|
If this knight was captured by a pawn, that pawn would be immediately promoted. If it was captured by a piece that wasn't a pawn, that piece must be a promoted pawn.
|
||||||
|
\end{solution}
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
\pagebreak
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
% Sherlock, another question of location
|
||||||
|
\problem{Superposition}
|
||||||
|
\difficulty{4}{5}
|
||||||
|
|
||||||
|
A white pawn is missing; it is either on F2 or G2. \par
|
||||||
|
Where is it?
|
||||||
|
|
||||||
|
% spell:off
|
||||||
|
\manyboards{
|
||||||
|
ke8,rh8,
|
||||||
|
pa7,pf7,pg7,
|
||||||
|
pa6,pb6,
|
||||||
|
pb5,
|
||||||
|
Pa4,Pb4,Pc4,
|
||||||
|
pa3,
|
||||||
|
Pa2,Pb2,
|
||||||
|
Ke1
|
||||||
|
}
|
||||||
|
% spell:on
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
\pagebreak
|
||||||
|
|
||||||
|
% Sherlock, another question of location
|
||||||
|
\problem{Possibility}
|
||||||
|
\difficulty{4}{5}
|
||||||
|
|
||||||
|
Show that black can castle to either side. \par
|
||||||
|
We know the following:
|
||||||
|
|
||||||
|
\begin{itemize}
|
||||||
|
\item White started the game missing one rook.
|
||||||
|
\item White has not moved either knight
|
||||||
|
\item No promotions have been made
|
||||||
|
\item White's last move was from E2 to E4.
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
% spell:off
|
||||||
|
\manyboards{
|
||||||
|
ra8,ke8,rh8,
|
||||||
|
pa7,bb7,pc7,pd7,pf7,pg7,ph7,
|
||||||
|
nc6,nh6,
|
||||||
|
pe5,qg5,
|
||||||
|
bb4,Pe4,
|
||||||
|
Pb2,Pc2,Pd2,Pf2,Pg2,Ph2,
|
||||||
|
Nb1,Bc1,Qd1,Ke1,Bf1,Ng1,Rh1
|
||||||
|
}
|
||||||
|
% spell:on
|
||||||
|
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
\pagebreak
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
% Sherlock, little exercise 2
|
||||||
|
\problem{Kidnapping}
|
||||||
|
\difficulty{4}{5}
|
||||||
|
|
||||||
|
On which square was the White queen captured?. \par
|
||||||
|
|
||||||
|
% spell:off
|
||||||
|
\manyboards{
|
||||||
|
ra8,qd8,ke8,ng8,rh8,
|
||||||
|
pa7,pb7,pc7,pe7,pf7,ph7,
|
||||||
|
nc6,pe6,ph6,
|
||||||
|
Pb3,
|
||||||
|
Na2,Pb2,Pc2,Pd2,Pe2,Pf2,Pg2,Ph2,
|
||||||
|
Ra1,Ke1,Rh1
|
||||||
|
}
|
||||||
|
% spell:on
|
||||||
|
|
||||||
|
\begin{solution}
|
||||||
|
White is missing a queen, both bishops, and one knight. \par
|
||||||
|
The black pawns on E6 and H6 account for two captures.
|
||||||
|
|
||||||
|
\vspace{2mm}
|
||||||
|
|
||||||
|
Neither white bishop could've been captured by these pawns,
|
||||||
|
since both are trapped by their pawns. Thus, these black pawns must have captured a queen and a knight.
|
||||||
|
|
||||||
|
\vspace{4mm}
|
||||||
|
|
||||||
|
The white pawn on B3 must have captured a black bishop. \par
|
||||||
|
The white queen got onto the board through A2. \par
|
||||||
|
Therefore, the pawn on B3 made its capture before the queen escaped,
|
||||||
|
and the black bishop was captured before the white queen.
|
||||||
|
|
||||||
|
\vspace{4mm}
|
||||||
|
|
||||||
|
Similarly, the bishop from C8 must have been
|
||||||
|
captured on B3 after the capture on E6, since it
|
||||||
|
got on the board through D7.
|
||||||
|
|
||||||
|
|
||||||
|
\vspace{4mm}
|
||||||
|
|
||||||
|
The capture on E6 was made before the capture on B3 (black bishop),
|
||||||
|
which was made before the white queen was captured.
|
||||||
|
Therefore, the white queen was not captured on E6, and must
|
||||||
|
have been lost on H6.
|
||||||
|
\end{solution}
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
\pagebreak
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
% Arabian Knights 4
|
% Arabian Knights 4
|
||||||
\problem{A missing piece}
|
\problem{A missing piece}
|
||||||
\difficulty{4}{5}
|
\difficulty{6}{8}
|
||||||
|
|
||||||
|
|
||||||
There is a piece at G4, marked with a $\odot$. \par
|
There is a piece at G4, marked with a $\odot$. \par
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
% Arabian Knights 5
|
% Arabian Knights 5
|
||||||
\problem{The hidden castle}
|
\problem{The hidden castle}
|
||||||
\difficulty{7}{7}
|
\difficulty{8}{8}
|
||||||
|
|
||||||
There is a white castle hidden on this board. Where is it? \par
|
There is a white castle hidden on this board. Where is it? \par
|
||||||
None of the royalty has moved or been under attack. \par
|
None of the royalty has moved or been under attack. \par
|
||||||
@@ -30,7 +30,7 @@ None of the royalty has moved or been under attack. \par
|
|||||||
|
|
||||||
% Arabian Knights 6
|
% Arabian Knights 6
|
||||||
\problem{Who moved last?}
|
\problem{Who moved last?}
|
||||||
\difficulty{7}{7}
|
\difficulty{8}{8}
|
||||||
|
|
||||||
After many moves of chess, the board looks as follows. \par
|
After many moves of chess, the board looks as follows. \par
|
||||||
Who moved last? \par
|
Who moved last? \par
|
||||||
@@ -58,7 +58,7 @@ Who moved last? \par
|
|||||||
|
|
||||||
% Arabian Knights 3
|
% Arabian Knights 3
|
||||||
\problem{The king in disguise}<kingdisguise>
|
\problem{The king in disguise}<kingdisguise>
|
||||||
\difficulty{7}{7}
|
\difficulty{8}{8}
|
||||||
|
|
||||||
The white king is exploring his kingdom under a disguise. He could look like any piece of any color.\par
|
The white king is exploring his kingdom under a disguise. He could look like any piece of any color.\par
|
||||||
Show that he must be on C7.
|
Show that he must be on C7.
|
||||||
@@ -119,7 +119,7 @@ Show that he must be on C7.
|
|||||||
|
|
||||||
% Arabian Knights 3
|
% Arabian Knights 3
|
||||||
\problem{The king in disguise once more}
|
\problem{The king in disguise once more}
|
||||||
\difficulty{5}{7}
|
\difficulty{5}{8}
|
||||||
|
|
||||||
The white king is again exploring his kingdom, now under a different disguise. Where is he? \par
|
The white king is again exploring his kingdom, now under a different disguise. Where is he? \par
|
||||||
\hint{\say{different disguise} implies that the white king looks like a different piece!}
|
\hint{\say{different disguise} implies that the white king looks like a different piece!}
|
||||||
|
|||||||
@@ -2,9 +2,8 @@
|
|||||||
#import "@preview/cetz:0.4.2"
|
#import "@preview/cetz:0.4.2"
|
||||||
|
|
||||||
#show: handout.with(
|
#show: handout.with(
|
||||||
title: [Warm-Up: What's an AST?],
|
title: [Warm-Up: The Painting],
|
||||||
by: "Mark",
|
by: "Mark",
|
||||||
subtitle: "Based on a true story.",
|
|
||||||
)
|
)
|
||||||
|
|
||||||
#problem()
|
#problem()
|
||||||
@@ -13,7 +12,8 @@ Hang the painting on two nails so that if either is removed, the painting falls.
|
|||||||
|
|
||||||
#v(2mm)
|
#v(2mm)
|
||||||
You may detach the string as you hang the painting, but it must be re-attached once you're done. \
|
You may detach the string as you hang the painting, but it must be re-attached once you're done. \
|
||||||
#hint[The solution to this problem isn't a "think outside the box" trick, it's a clever wrapping of the string.]
|
|
||||||
|
The solution to this problem isn't a trick, it's a clever wrapping of the string.
|
||||||
|
|
||||||
|
|
||||||
#v(2mm)
|
#v(2mm)
|
||||||
|
|||||||
Reference in New Issue
Block a user