2023-09-28 12:12:05 -07:00
|
|
|
\section{Introduction}
|
|
|
|
|
|
|
|
To solve the problems in this handout, you mustn't be a chess master---you just need to know how the pieces move.
|
2023-12-06 20:02:32 -08:00
|
|
|
I'd expect that you're all familiar with the basic rules of chess (ask questions if you aren't!).
|
|
|
|
The odd ones are listed below.
|
2023-09-28 12:12:05 -07:00
|
|
|
|
|
|
|
\generic{Board orientation:}
|
2023-12-06 20:02:32 -08:00
|
|
|
The bottom-left square of a chessboard is \textit{always} black.
|
2023-09-28 12:12:05 -07:00
|
|
|
|
|
|
|
\generic{Starting pawns \& en passant:}
|
|
|
|
A pawn may move two squares on its first turn. \par
|
2023-12-06 20:02:32 -08:00
|
|
|
An opposing pawn may capture this pawn as it completes this move. \par
|
2023-09-28 12:12:05 -07:00
|
|
|
This is called an \textit{en passant} capture (Which means \say{in passing} in French)
|
|
|
|
|
|
|
|
\begin{minipage}{0.3\textwidth}
|
|
|
|
\begin{center}
|
|
|
|
\chessboard[
|
|
|
|
smallboard,
|
|
|
|
maxfield=b4,
|
|
|
|
setpieces = {
|
|
|
|
pa4,pb3,
|
|
|
|
Pa1,Pb1
|
|
|
|
},
|
|
|
|
addpgf={
|
|
|
|
\tikz[overlay]
|
2023-10-27 19:55:24 -07:00
|
|
|
\draw[ocyan,line width=0.1em,->]
|
2023-09-28 12:12:05 -07:00
|
|
|
(a1)--(a3);
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
White moves two squares
|
2023-12-05 17:31:19 -08:00
|
|
|
\end{center}
|
2023-09-28 12:12:05 -07:00
|
|
|
\end{minipage}
|
|
|
|
\hfill
|
|
|
|
\begin{minipage}{0.3\textwidth}
|
|
|
|
\begin{center}
|
|
|
|
\chessboard[
|
|
|
|
smallboard,
|
|
|
|
maxfield=b4,
|
|
|
|
setpieces = {
|
|
|
|
pa4,pb3,
|
|
|
|
Pa3,Pb1
|
|
|
|
},
|
|
|
|
addpgf={
|
|
|
|
\tikz[overlay]
|
2023-10-27 19:55:24 -07:00
|
|
|
\draw[ocyan,line width=0.1em,->]
|
2023-09-28 12:12:05 -07:00
|
|
|
(b3)--(a2);
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
Black captures en passant
|
|
|
|
\end{center}
|
|
|
|
\end{minipage}
|
|
|
|
\hfill
|
|
|
|
\begin{minipage}{0.3\textwidth}
|
|
|
|
\begin{center}
|
|
|
|
\chessboard[
|
|
|
|
smallboard,
|
|
|
|
maxfield=b4,
|
|
|
|
setpieces = {
|
|
|
|
pa4,pa2,
|
|
|
|
Pb1
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
Result
|
|
|
|
\end{center}
|
|
|
|
\end{minipage}
|
|
|
|
|
|
|
|
\vfill
|
|
|
|
|
|
|
|
\generic{Promotion:}
|
2023-12-06 20:02:32 -08:00
|
|
|
When a pawn reaches the last row of the board, it may be promoted to any other piece.\par
|
2023-09-28 12:12:05 -07:00
|
|
|
(Except a king or a pawn, of course.)
|
|
|
|
|
|
|
|
\generic{Castling:}
|
|
|
|
A king and rook can \textit{castle} under the following conditions:
|
|
|
|
\begin{itemize}
|
|
|
|
\item No pieces are in the way
|
|
|
|
\item The king has not yet moved
|
|
|
|
\item The rook has not yet moved
|
|
|
|
\item The king is not in check
|
|
|
|
\item The king does not move through check while castling
|
|
|
|
\end{itemize}
|
|
|
|
|
|
|
|
\begin{minipage}{0.3\textwidth}
|
|
|
|
\begin{center}
|
|
|
|
\chessboard[
|
|
|
|
smallboard,
|
|
|
|
maxfield=h2,
|
|
|
|
setpieces = {
|
|
|
|
Ra1,Ke1,Rh1
|
|
|
|
},
|
|
|
|
addpgf={
|
|
|
|
\tikz[overlay]
|
2023-10-27 19:55:24 -07:00
|
|
|
\draw[ocyan,line width=0.1em,->]
|
2023-09-28 12:12:05 -07:00
|
|
|
(e1)--(g1);
|
|
|
|
\tikz[overlay]
|
2023-10-27 19:55:24 -07:00
|
|
|
\draw[ocyan,line width=0.1em,->]
|
2023-09-28 12:12:05 -07:00
|
|
|
(e1)--(c1);
|
|
|
|
},
|
2023-12-05 17:31:19 -08:00
|
|
|
hmarginwidth=0mm
|
2023-09-28 12:12:05 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
Possible castle directions
|
|
|
|
\end{center}
|
|
|
|
\end{minipage}
|
|
|
|
\hfill
|
|
|
|
\begin{minipage}{0.3\textwidth}
|
|
|
|
\begin{center}
|
|
|
|
\chessboard[
|
|
|
|
smallboard,
|
|
|
|
maxfield=h2,
|
|
|
|
setpieces = {
|
|
|
|
Rd1,Kc1,Rh1
|
|
|
|
},
|
|
|
|
hmarginwidth=0mm
|
|
|
|
]
|
|
|
|
|
|
|
|
Queenside castle result
|
|
|
|
\end{center}
|
|
|
|
\end{minipage}
|
|
|
|
\hfill
|
|
|
|
\begin{minipage}{0.3\textwidth}
|
|
|
|
\begin{center}
|
|
|
|
\chessboard[
|
|
|
|
smallboard,
|
|
|
|
maxfield=h2,
|
|
|
|
setpieces = {
|
|
|
|
Ra1,Kg1,Rf1
|
|
|
|
},
|
|
|
|
hmarginwidth=0mm,
|
|
|
|
]
|
|
|
|
|
|
|
|
Kingside castle result
|
|
|
|
\end{center}
|
|
|
|
\end{minipage}
|
|
|
|
\par
|
|
|
|
|
2023-12-05 17:31:19 -08:00
|
|
|
\vfill
|
|
|
|
|
|
|
|
\generic{General Strategies:}
|
2023-12-06 20:02:32 -08:00
|
|
|
As you solve problems, keep the following in mind. \par
|
|
|
|
You may want to return to this list if you get stuck.
|
2023-12-05 17:31:19 -08:00
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
\item What was the last move? (By black or white)
|
2023-12-06 20:02:32 -08:00
|
|
|
|
|
|
|
\item Were there any promotions? The implication may be indirect: \par
|
|
|
|
if White needs a third bishop, there was a promotion. \par
|
2023-12-05 17:31:19 -08:00
|
|
|
\note{Promotions often resolve seemingly impossible situations.}
|
2023-12-06 20:02:32 -08:00
|
|
|
|
|
|
|
\item Do not assume that Black and White play well.
|
|
|
|
You may only assume they play \textit{correctly}.
|
2023-12-05 17:31:19 -08:00
|
|
|
\end{itemize}
|
|
|
|
|
2023-09-28 12:12:05 -07:00
|
|
|
\vfill
|
|
|
|
\pagebreak
|