-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaper.tex
203 lines (178 loc) · 5.71 KB
/
paper.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
\documentclass[12pt]{article}
\usepackage[a4paper]{geometry}
\geometry{verbose,tmargin=2cm,bmargin=2cm,lmargin=2cm,rmargin=2cm}
\usepackage[T2A]{fontenc}
\usepackage[english,russian]{babel}
\babelfont{rm}{CMU Concrete}
\babelfont{sf}{CMU Sans Serif}
\babelfont{tt}{CMU Typewriter Text}
\usepackage{graphicx}
\usepackage{float}
\usepackage{minted}
\usepackage{amsmath, amsthm, amssymb, amsfonts}
\newcounter{thm}
\newtheorem{proposition}[thm]{Предложение}
\title{\vspace{-5ex}Формализация теории групп на базе книги Алексеева В.Б. ``Теорема Абеля в задачах и решениях''\vspace{-4ex}}
\begin{document}
\maketitle
Прежде всего дадим формальные определения понятям ``полугруппа'', ``моноид'' и ``группа''.
\begin{minted}[breaklines, breakanywhere, tabsize=2]{coq}
(* G - носитель группы *)
(* mult - групповая операция *)
Class Semigroup G : Type :=
{
mult : G -> G -> G;
assoc : forall x y z:G,
mult x (mult y z) = mult (mult x y) z
}.
Class Monoid G `{Hsemi: Semigroup G} : Type :=
{
e : G;
left_id : forall x: G, mult e x = x;
}.
Class Group G `{Hmono: Monoid G} : Type :=
{
inv : G -> G;
left_inv : forall x: G, mult (inv x) x = e;
}.
\end{minted}
Зададим нотацию для операции умножения в групповом контексте:
\begin{minted}[breaklines, breakanywhere, tabsize=2]{coq}
Declare Scope group_scope.
Infix "*" := mult (at level 40, left associativity) : group_scope.
\end{minted}
Мы начнем с задачи № 24 из книги.
\begin{proposition}
Пусть $a, b$ — произвольные элементы некоторой группы $G$. Доказать, что каждое из уравнений $a \cdot x = b$ и $y \cdot a = b$ имеет, и притом ровно одно, решение в данной группе.
\end{proposition}
Сначала рассмотрии первое уравнение, и докажем единственность при умножении на $a$ слева.
\begin{minted}[breaklines, breakanywhere, tabsize=2]{coq}
Open Scope group_scope.
Section Group_theorems.
Variable G: Type.
Context `{Hgr: Group G}.
Proposition left_cancel : forall a x y:G,
a * x = a * y -> x = y.
Proof.
intros a x y H. assert (inv a * (a * x) = inv a * (a * y))
as Hinvx.
- rewrite H. reflexivity.
- repeat rewrite assoc in Hinvx. rewrite left_inv in Hinvx. repeat rewrite left_id in Hinvx. assumption.
Qed.
Proposition left_cancel_alt_proof : forall a x y:G,
a * x = a * y -> x = y.
Proof.
intros a x y H.
(* Здесь самое интересное: по сути это умножение гипотезы слева на inv a, заменяющее assert в предыдущей теореме *)
(* f_equal : forall (A B : Type) (f : A -> B) (x y : A), *)
(* x = y -> f x = f y *)
apply f_equal with (f := fun g:G => inv a * g) in H.
(* Дальше всё одинаково *)
repeat rewrite assoc in H. repeat rewrite left_inv in H. repeat rewrite left_id in H. assumption.
Qed.
\end{minted}
Для доказательства второго предложения: единственности решения при умножении справа $y \cdot a = b$, нам понадобится доказать 2 вспомогательных предложения.
\begin{proposition}
$\forall x \in G, x \cdot e = x$
\end{proposition}
\begin{minted}[breaklines, breakanywhere, tabsize=2]{coq}
Proposition right_id : forall x:G, x * e = x.
Proof.
intro. apply left_cancel with (a := inv x). rewrite assoc. repeat rewrite left_inv. rewrite left_id. reflexivity.
Qed.
\end{minted}
\begin{minipage}{.46\textwidth}
\mintinline{coq}{Proof.}
\begin{verbatim}
G : Type
Hsemi : Semigroup G
Hmono : Monoid G
Hgr : Group G
------------------------
forall x : G, x * e = x
\end{verbatim}
\end{minipage}
\hfill
\begin{minipage}{.46\textwidth}
\mintinline{coq}{intro.}
\begin{verbatim}
G : Type
Hsemi : Semigroup G
Hmono : Monoid G
Hgr : Group G
x : G
---------------------
x * e = x
\end{verbatim}
\end{minipage}
\bigskip
\noindent\makebox[\textwidth]{\hrulefill}
\bigskip
\begin{minipage}{.46\textwidth}
\mintinline{coq}{apply left_cancel with (a := inv x).}
\begin{verbatim}
G : Type
Hsemi : Semigroup G
Hmono : Monoid G
Hgr : Group G
x : G
----------------------------
inv x * (x * e) = inv x * x
\end{verbatim}
\end{minipage}
\hfill
\begin{minipage}{.46\textwidth}
\mintinline{coq}{rewrite assoc.}
\begin{verbatim}
G : Type
Hsemi : Semigroup G
Hmono : Monoid G
Hgr : Group G
x : G
-------------------------
inv x * x * e = inv x * x
\end{verbatim}
\end{minipage}
\bigskip
\noindent\makebox[\textwidth]{\hrulefill}
\bigskip
\begin{minipage}{.46\textwidth}
\mintinline{coq}{repeat rewrite left_inv.}
\begin{verbatim}
G : Type
Hsemi : Semigroup G
Hmono : Monoid G
Hgr : Group G
x : G
-------------------
e * e = e
\end{verbatim}
\end{minipage}
\hfill
\begin{minipage}{.46\textwidth}
\mintinline{coq}{rewrite left_id. reflexivity.}
\begin{verbatim}
G : Type
Hsemi : Semigroup G
Hmono : Monoid G
Hgr : Group G
x : G
--------------------
e = e
\end{verbatim}$\square$
\end{minipage}
\begin{proposition}
$\forall x \in G, x \cdot x^{-1} = e$
\end{proposition}
\begin{minted}[breaklines, breakanywhere, tabsize=2]{coq}
Proposition right_inv:
forall x:G, x * inv x = e.
Proof.
intro. apply left_cancel with (x := inv x). rewrite assoc.
rewrite left_inv. rewrite left_id. rewrite right_id. reflexivity.
Qed.
\end{minted}
\begin{proposition}
$\forall x \in G, x \cdot x^{-1} = e$
\end{proposition}
\end{document}