Skip to content

Commit 7fcac3a

Browse files
committedMar 19, 2024
[ slides ] add slides
1 parent cba679b commit 7fcac3a

21 files changed

+8748
-4
lines changed
 

‎.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,11 @@
33
/_build/
44
/_site/
55
/target
6+
/slides/*.nav
7+
/slides/*.aux
8+
/slides/*.log
9+
/slides/*.out
10+
/slides/*.pdf
11+
/slides/*.snm
12+
/slides/*.toc
13+
/slides/*.upa

‎flake.nix

+40-4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,23 @@
1212
flake-utils.lib.eachDefaultSystem (system:
1313
let
1414
pkgs = nixpkgs.legacyPackages.${system};
15+
16+
tex = pkgs.texlive.combine {
17+
inherit (pkgs.texlive)
18+
# https://tug.org/texlive/devsrc/Master/doc.html
19+
scheme-minimal latex-bin xetex latexmk beamer
20+
infwarerr kvoptions latex-tools-dev
21+
22+
libertine
23+
24+
mathpartir stmaryrd frankenstein multirow
25+
colortbl cmll euler fontspec tools extsizes
26+
minibox varwidth fragments psnfss csquotes
27+
ulem xltxtra realscripts booktabs todonotes
28+
pdfcomment datetime2 tracklang zref marginnote
29+
soulpos appendixnumberbeamer; # soulutf8;
30+
};
31+
1532
on = opam-nix.lib.${system};
1633
localPackagesQuery = builtins.mapAttrs (_: pkgs.lib.last)
1734
(on.listRepo (on.makeOpamRepo ./.));
@@ -50,18 +67,37 @@
5067
packages =
5168
pkgs.lib.getAttrs (builtins.attrNames localPackagesQuery) scope';
5269
in {
53-
legacyPackages = scope';
70+
# legacyPackages = scope';
71+
72+
#inherit packages;
73+
74+
packages = packages // { slides = pkgs.stdenvNoCC.mkDerivation rec {
75+
name = "slides";
76+
src = self;
77+
buildInputs = [ pkgs.coreutils pkgs.bash tex pkgs.libertine pkgs.gnumake ];
78+
phases = ["unpackPhase" "buildPhase" "installPhase"];
79+
buildPhase = ''
80+
export PATH="${pkgs.lib.makeBinPath buildInputs}";
81+
mkdir -p .cache/texmf-var;
82+
export TEXMFHOME=.cache;
83+
export TEXMFVAR=.cache/texmf-var;
84+
make -C slides -j 8 all
85+
'';
86+
installPhase = ''
87+
mkdir -p $out;
88+
cp slides/week*.pdf $out/;
89+
'';
90+
}; };
5491

55-
inherit packages;
5692

57-
## If you want to have a "default" package which will be built with just `nix build`, do this instead of `inherit packages;`:
58-
# packages = packages // { default = packages.slakemoth; };
93+
# // { default = packages.slakemoth; };
5994

6095
devShells.default = pkgs.mkShell {
6196
inputsFrom = builtins.attrValues packages;
6297
buildInputs = devPackages ++ [
6398
pkgs.rsync
6499
# You can add packages from nixpkgs here
100+
tex
65101
];
66102
};
67103
});
Loading
7.97 KB
Loading

‎slides/Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.PHONY: clean all
2+
3+
all: week1.pdf week2.pdf week3.pdf week4.pdf week5.pdf week6.pdf week7.pdf week8.pdf week9.pdf week10.pdf
4+
5+
week%.pdf: week%.tex macros.tex strathclyde.sty
6+
latexmk -xelatex $<
7+
8+
clean:
9+
rm -f *.pdf *.aux *.log *.xdv *.fls *.nav *.fdb_latexmk *.out *.toc *.snm *.upa

‎slides/intro.tex

+237
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,237 @@
1+
% -*- TeX-engine: xetex -*-
2+
3+
\documentclass[xetex,aspectratio=169,14pt,hyperref={pdfpagelabels=true,pdflang={en-GB}}]{beamer}
4+
5+
\input{macros}
6+
7+
\title[CS208 - Introduction]{CS208 (Semester 1) : Introduction}
8+
9+
\begin{document}
10+
11+
\maketitle
12+
13+
\section{Introduction}
14+
15+
\begin{frame}{CS208 : Logic and Algorithms}
16+
17+
In this semester we will study \emph{Symbolic Logic}.
18+
19+
\bigskip
20+
21+
\begin{enumerate}
22+
\item What is a good language for formal statements?
23+
\item What are valid rules of inference?
24+
\item How can we relate situations and statements about them?
25+
\end{enumerate}
26+
\end{frame}
27+
28+
\begin{frame}
29+
{Very rough History of Logic}
30+
31+
(with a Western bias)
32+
33+
\bigskip
34+
35+
\begin{tabular}{ll}
36+
\textcolor{black!60}{$\sim$350BCE}& Aristotle's \emph{Organon} (``\emph{logos}'' = ``the word'') \\
37+
\textcolor{black!60}{300BCE-1847CE}& Lots of interesting but scattered stuff... \\
38+
\textcolor{black!60}{1847} & George Boole's \emph{Mathematical Analysis of Logic} \\
39+
% & \quad later \emph{An Investigation of the Laws of Thought...} \\
40+
\textcolor{black!60}{1879} & Gottlob Frege's \emph{Begriffsschrift} \\
41+
% & \quad invention of \emph{Quantifiers} \\
42+
\textcolor{black!60}{1880s to 1930s} & Logic\textbf{s} as an object of study in their own right\\
43+
% & \quad Kurt G{\"o}del, Alfred Tarski, Alan Turing, ...\\
44+
\textcolor{black!60}{1940s to date} & Explosion, especially driven by CS.
45+
\end{tabular}
46+
\end{frame}
47+
48+
\begin{frame}
49+
{Why study Logic?}
50+
51+
Logic is \emph{extremely useful} in Computer Science.
52+
53+
\bigskip
54+
55+
For example...
56+
\begin{enumerate}
57+
\item Digital circuits
58+
\item Specifying systems' behaviour
59+
\item Proving that systems satisfy their specifications
60+
\item Automated Reasoning, rule-based AI
61+
\item Designing Programming Languages
62+
\item Database Query Languages
63+
\end{enumerate}
64+
\end{frame}
65+
66+
\begin{frame}
67+
{In this course}
68+
69+
We will cover two major sorts of Logic:
70+
71+
\begin{enumerate}
72+
\item Propositional Logic
73+
\item Predicate Logic
74+
\end{enumerate}
75+
\end{frame}
76+
77+
\begin{frame}
78+
{Propositional Logic}
79+
80+
Propositional Logic talks about atomic statements:
81+
\begin{mathpar}
82+
\textit{``it is raining''}
83+
84+
\textit{``I am in Glasgow''}
85+
\end{mathpar}
86+
and compound statements made from those:
87+
\begin{mathpar}
88+
\textit{``it is raining''} \land \textit{``I am in Glasgow''}
89+
90+
\textit{``it is raining''} \to \textit{``I am in Glasgow''}
91+
\end{mathpar}
92+
93+
\end{frame}
94+
95+
\begin{frame}
96+
{Predicate Logic}
97+
98+
Predicate Logic adds \emph{quantifiers} and \emph{predicates}:
99+
\begin{mathpar}
100+
\forall \mathit{day}.~\textrm{InGlasgow}(\mathit{day}) \to (\textrm{Raining}(\mathit{day}) \lor \textrm{Drizzle}(\mathit{day}))
101+
102+
\forall x. \forall y.~x + y = y + x
103+
\end{mathpar}
104+
\end{frame}
105+
106+
\begin{frame}
107+
{Semantics}
108+
109+
The \emph{Semantics} of a logic tell you what formulas \emph{mean}.
110+
111+
\bigskip
112+
113+
Roughly, we will take the view that a formula's meaning is the
114+
collection of situations that make it true.
115+
\begin{mathpar}
116+
\sem{G \lor R} = \left\{
117+
\begin{array}{@{}l}
118+
\{G \mapsto \true, R \mapsto \false\}, \\
119+
\{G \mapsto \false, R \mapsto \true\}, \\
120+
\{G \mapsto \true, R \mapsto \true\}
121+
\end{array}
122+
\right\}
123+
124+
\sem{G \land R} = \left\{ [G \mapsto \true,R \mapsto \true] \right\}
125+
\end{mathpar}
126+
\end{frame}
127+
128+
\begin{frame}
129+
{Logical Modelling}
130+
131+
A fundamental use for logic is to create models of situations.
132+
133+
\bigskip
134+
135+
\begin{enumerate}
136+
\item Encode potential facts as atomic statements:
137+
\begin{itemize}
138+
\item $\mathsf{cell}((3,3), 4)$ -- cell $(3,3)$ of a sudoku board contains $4$.
139+
\item $\mathsf{assigned}(A,M)$ -- task $A$ is assigned to machine $M$.
140+
\item $\mathsf{installed}(progA, 1)$ -- version 1 of program A is installed
141+
\end{itemize}
142+
\item Encode constraints as logical statements:
143+
\begin{itemize}
144+
\item $\mathsf{installed}(progA,1) \to (\mathsf{installed}(libB,3) \land \mathsf{installed}(libC,2))$ \\
145+
-- program A v1 requires libB v3 and libC v2.
146+
\end{itemize}
147+
\item Finding a true/false value for each atom that makes all the
148+
constraints true allows us to solve the problem.
149+
\end{enumerate}
150+
\end{frame}
151+
152+
\begin{frame}
153+
{Deductive Systems}
154+
155+
\emph{Deductive Systems} are collections of rules that allow you to
156+
derive valid statements from valid statements.
157+
158+
\bigskip
159+
160+
A rule:
161+
\begin{displaymath}
162+
\inferrule*
163+
{X\textit{ is feathery} \\ X\textit{ lays eggs}}
164+
{X\textit{ is a bird}}
165+
\end{displaymath}
166+
167+
Above the line are \emph{premises}, below is the \emph{conclusion}.
168+
169+
\bigskip
170+
171+
We will study rules for Propositional and Predicate Logic.
172+
\end{frame}
173+
174+
\begin{frame}
175+
{Course plan}
176+
177+
\begin{tabular}{ll}
178+
Week 1 & Recap Propositional Logic \\
179+
Week 2 & Logical modelling and SAT solvers \\
180+
Week 3 & More examples of Logical Modelling \\
181+
Week 4 & More examples of Logical Modelling \\
182+
Week 5 & Deductive proof for Propositional Logic \\
183+
Week 6 & Predicate Logic \\
184+
Week 7 & Deductive proof for Predicate Logic \\
185+
Week 8 & Semantics of Predicate Logic \\
186+
Week 9 & Equality and Arithmetic in Predicate Logic \\
187+
Week 10 & Metatheory \\
188+
\end{tabular}
189+
\end{frame}
190+
191+
\begin{frame}
192+
{Course Delivery}
193+
194+
For Semester 1:
195+
\begin{itemize}
196+
\item \textbf{Lectures}: two/week \\
197+
Mondays 12:00-13:00, GH514 \\
198+
Fridays 12:00-13:00, RC512
199+
\item \textbf{Video minilectures}: roughly four/week, roughly ten minutes each.
200+
\item \textbf{Notes and Tutorial Exercises}: linked from MyPlace.
201+
\item \textbf{Tutorials}: Mondays and Fridays, assignment to follow.
202+
\item \textbf{Mattermost chat}: use the Mattermost channel for this
203+
course to discuss the course and ask questions.
204+
\item \textbf{Individual questions}: contact the course lecturer.
205+
\end{itemize}
206+
\end{frame}
207+
208+
\begin{frame}
209+
{Assessment}
210+
211+
The whole course (Semesters 1\&2) is 30\% coursework, 70\% exam.
212+
213+
\bigskip
214+
215+
This semester there are two courseworks:
216+
\begin{center}
217+
\begin{tabular}{llll}
218+
Name & Release & Submission & Weighting\\
219+
\hline
220+
1 : Logical Modelling &Wed 4th Oct &Wed 18th Oct &7.5 \% \\
221+
2 : Deductive Proof &Wed 2nd Nov &Wed 30th Nov &7.5 \%\\
222+
\end{tabular}
223+
\end{center}
224+
225+
\bigskip
226+
227+
Single exam for Logic and Algorithms in April/May.
228+
\end{frame}
229+
230+
\begin{frame}
231+
\begin{center}
232+
{\Huge Hope you enjoy the course!} \\
233+
Check MyPlace for course arrangements and updates.
234+
\end{center}
235+
\end{frame}
236+
237+
\end{document}

‎slides/macros.tex

+98
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
\usepackage[sci,noslidestrathidentity]{strathclyde}
2+
\strathsetidentity{Department of}{Computer \& Information Sciences}
3+
4+
\usepackage{lmodern}
5+
\usepackage{subscript}
6+
\usepackage{url}
7+
\usepackage{pifont}
8+
\usepackage{csquotes}
9+
\usepackage{mathpartir}
10+
\usepackage{stmaryrd}
11+
\usepackage{multirow}
12+
\usepackage{euler}
13+
\usepackage[normalem]{ulem}
14+
15+
% 2013-09-08 SU adding xetex specifics
16+
% http://www.woggie.net/2008/07/16/beamer-pdftex-and-xetex/
17+
\usepackage{xltxtra}
18+
19+
% 2013-09-08 SU http://robjhyndman.com/hyndsight/xelatex/
20+
\defaultfontfeatures{Ligatures=TeX}
21+
22+
% 2015-12-09 SU table beautified
23+
\renewcommand{\arraystretch}{1.2}
24+
\usepackage{booktabs}
25+
26+
%MGK compatibility
27+
\newcommand{\hh}[1]
28+
{\medskip\textbf{\large #1}}
29+
\newcommand{\pdu}[3]
30+
{#1\rightarrow #2 : &\ & \makebox[70mm][l]{$#3$}}
31+
32+
33+
34+
\setlength{\marginparwidth}{2cm}
35+
\usepackage{todonotes}%[disable]
36+
\let\OldTodo\todo
37+
\renewcommand{\todo}{\OldTodo[inline]}%
38+
\newcommand{\todolater}[1]{}% Things to do for next year
39+
40+
41+
\DeclareTextCommandDefault{\nobreakspace}{\leavevmode\nobreak\ }
42+
\usepackage{rotating}
43+
44+
\usepackage{pdfcomment}% To add alt text for images using \pdftooltip{}
45+
46+
\usepackage{appendixnumberbeamer}
47+
48+
\newcommand{\messageframe}[1]{\begin{frame}\begin{center}\Huge #1\end{center}\end{frame}}
49+
\newcommand{\sechead}[1]{{\bf #1} \\}
50+
\newcommand{\examplehead}[1]{{\bf Example:} {\it\textcolor{red!90}{#1}} \\}
51+
\newcommand{\eqnote}[1]{\hspace{3cm}\textit{#1}}
52+
\newcommand{\sidenote}[1]{\qquad {\footnotesize \textcolor{black!60}{(#1)}}}
53+
\newcommand{\sem}[1]{\llbracket #1 \rrbracket}
54+
\newcommand{\true}{\mathsf{T}}
55+
\newcommand{\false}{\mathsf{F}}
56+
57+
\def\strikeafter<#1>#2{\temporal<#1>{#2}{\sout{#2}}{\sout{#2}}}
58+
59+
60+
%\newcommand{\rhighlight}{\textcolor{titlered}}
61+
\newcommand{\rhighlight}{\textbf}
62+
\newcommand{\highlight}{\textbf}
63+
64+
% \setmainfont{Linux Biolinum O}
65+
\setmainfont{LinBiolinum}[
66+
Path=,
67+
UprightFont = *_R.otf ,
68+
BoldFont = *_RB.otf ,
69+
ItalicFont = *_RI.otf
70+
]
71+
72+
\setbeamertemplate{navigation symbols}{}
73+
%\usecolortheme[rgb={0.8,0,0}]{structure}
74+
\usefonttheme{serif}
75+
\usefonttheme{structurebold}
76+
\setbeamercolor{description item}{fg=black}
77+
78+
79+
\author[Atkey]{Dr.~Robert Atkey}
80+
\institute[Strathclyde]{Computer \& Information Sciences}
81+
\date[]{}
82+
83+
\newcommand{\weeksection}[1]{%
84+
\section{\thetitle{}, Part~\thesection : #1}
85+
\begin{frame}
86+
\begin{center}
87+
\textcolor{black!60}{\thetitle{}, Part \thesection}\\
88+
{\Huge #1}
89+
\end{center}
90+
\end{frame}}
91+
92+
\newcommand{\weektitle}[2]{\def\thetitle{#2}
93+
\title[CS208 - Week #1]{CS208 (Semester 1) Week #1 : #2}}
94+
95+
\newcommand{\assigned}{:}
96+
97+
\newcommand{\forcedto}{\assigned_f}
98+
\newcommand{\decideto}{\assigned_d}

‎slides/strathclyde.sty

+536
Large diffs are not rendered by default.

‎slides/strathclyde/cover.pdf

159 KB
Binary file not shown.

‎slides/strathclyde/strath_tab_sci.pdf

40.7 KB
Binary file not shown.
27.3 KB
Binary file not shown.

‎slides/week1.tex

+1,104
Large diffs are not rendered by default.

‎slides/week10.tex

+695
Large diffs are not rendered by default.

‎slides/week2.tex

+1,232
Large diffs are not rendered by default.

‎slides/week3.tex

+544
Large diffs are not rendered by default.

‎slides/week4.tex

+813
Large diffs are not rendered by default.

‎slides/week5.tex

+569
Large diffs are not rendered by default.

‎slides/week6.tex

+1,030
Large diffs are not rendered by default.

‎slides/week7.tex

+721
Large diffs are not rendered by default.

‎slides/week8.tex

+629
Large diffs are not rendered by default.

‎slides/week9.tex

+483
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.