Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added semester4/Proof/main.pdf
Binary file not shown.
25 changes: 25 additions & 0 deletions semester4/Proof/main.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
\documentclass{article}
\usepackage{fontspec}
\usepackage{amsmath}
\setmainfont[Mapping=tex-text,Ligatures=TeX]{CMU Serif}
\usepackage[left=10mm, top=10mm, right=10mm, bottom=10mm, nohead, nofoot]{geometry}

\date{}
\newtheorem{problem}{Задача}

\title{Proof}

\begin{document}
\maketitle
\begin{problem}
Доказать, что S K K = I
\end{problem}

\Large
\noindent
S K K = (λ.xyz.xz(yz))(λxy.x)(λxy.x) $\underset{\beta}{\longrightarrow}$ \\

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Тут точка после лямбды лишняя, да и пробелы бы не помешали

$\underset{\beta}{\longrightarrow}$ (λyz.(λxy.x)z(yz))(λxy.x) $\underset{\beta}{\longrightarrow}$ \\
$\underset{\beta}{\longrightarrow}$ (λyz.(λy.z)(yz))(λxy.x) $\underset{\beta}{\longrightarrow}$ \\
$\underset{\beta}{\longrightarrow}$ (λyz.z)(λxy.x) $\underset{\beta}{\longrightarrow}$ \\
$\underset{\beta}{\longrightarrow}$ (λz.z) = I
\end{document}