-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmetamath.tex
15633 lines (13762 loc) · 709 KB
/
metamath.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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% metamath.tex - Version of 2-Jun-2019
% If you change the date above, also change the "Printed date" below.
% SPDX-License-Identifier: CC0-1.0
%
% PUBLIC DOMAIN
%
% This file (specifically, the version of this file with the above date)
% has been released into the Public Domain per the
% Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
% https://creativecommons.org/publicdomain/zero/1.0/
%
% The public domain release applies worldwide. In case this is not
% legally possible, the right is granted to use the work for any purpose,
% without any conditions, unless such conditions are required by law.
%
% Several short, attributed quotations from copyrighted works
% appear in this file under the ``fair use'' provision of Section 107 of
% the United States Copyright Act (Title 17 of the {\em United States
% Code}). The public-domain status of this file is not applicable to
% those quotations.
%
% Norman Megill - email: nm(at)alum(dot)mit(dot)edu
%
% David A. Wheeler also donates his improvements to this file to the
% public domain per the CC0. He works at the Institute for Defense Analyses
% (IDA), but IDA has agreed that this Metamath work is outside its "lane"
% and is not a work by IDA. This was specifically confirmed by
% Margaret E. Myers (Division Director of the Information Technology
% and Systems Division) on 2019-05-24 and by Ben Lindorf (General Counsel)
% on 2019-05-22.
% This file, 'metamath.tex', is self-contained with everything needed to
% generate the the PDF file 'metamath.pdf' (the _Metamath_ book) on
% standard LaTeX 2e installations. The auxiliary files are embedded with
% "filecontents" commands. To generate metamath.pdf file, run these
% commands under Linux or Cygwin in the directory that contains
% 'metamath.tex':
%
% rm -f realref.sty metamath.bib
% touch metamath.ind
% pdflatex metamath
% pdflatex metamath
% bibtex metamath
% makeindex metamath
% pdflatex metamath
% pdflatex metamath
%
% The warnings that occur in the initial runs of pdflatex can be ignored.
% For the final run,
%
% egrep -i 'error|warn' metamath.log
%
% should show exactly these 5 warnings:
%
% LaTeX Warning: File `realref.sty' already exists on the system.
% LaTeX Warning: File `metamath.bib' already exists on the system.
% LaTeX Font Warning: Font shape `OMS/cmtt/m/n' undefined
% LaTeX Font Warning: Font shape `OMS/cmtt/bx/n' undefined
% LaTeX Font Warning: Some font shapes were not available, defaults
% substituted.
%
% Search for "Uncomment" below if you want to suppress hyperlink boxes
% in the PDF output file
%
% TYPOGRAPHICAL NOTES:
% * It is customary to use an en dash (--) to "connect" names of different
% people (and to denote ranges), and use a hyphen (-) for a
% single compound name. Examples of connected multiple people are
% Zermelo--Fraenkel, Schr\"{o}der--Bernstein, Tarski--Grothendieck,
% Hewlett--Packard, and Backus--Naur. Examples of a single person with
% a compound name include Levi-Civita, Mittag-Leffler, and Burali-Forti.
% * Use non-breaking spaces after page abbreviations, e.g.,
% p.~\pageref{note2002}.
%
% --------------------------- Start of realref.sty -----------------------------
\begin{filecontents}{realref.sty}
% Save the following as realref.sty.
% You can then use it with \usepackage{realref}
%
% This has \pageref jumping to the page on which the ref appears,
% \ref jumping to the point of the anchor, and \sectionref
% jumping to the start of section.
%
% Author: Anthony Williams
% Software Engineer
% Nortel Networks Optical Components Ltd
% Date: 9 Nov 2001 (posted to comp.text.tex)
%
% The following declaration was made by Anthony Williams on
% 24 Jul 2006 (private email to Norman Megill):
%
% ``I hereby donate the code for realref.sty posted on the
% comp.text.tex newsgroup on 9th November 2001, accessible from
% http://groups.google.com/group/comp.text.tex/msg/5a0e1cc13ea7fbb2
% to the public domain.''
%
\ProvidesPackage{realref}
\RequirePackage[plainpages=false,pdfpagelabels=true]{hyperref}
\def\realref@anchorname{}
\AtBeginDocument{%
% ensure every label is a possible hyperlink target
\let\realref@oldrefstepcounter\refstepcounter%
\DeclareRobustCommand{\refstepcounter}[1]{\realref@oldrefstepcounter{#1}
\edef\realref@anchorname{\string #1.\@currentlabel}%
}%
\let\realref@oldlabel\label%
\DeclareRobustCommand{\label}[1]{\realref@oldlabel{#1}\hypertarget{#1}{}%
\@bsphack\protected@write\@auxout{}{%
\string\expandafter\gdef\protect\csname
page@num.#1\string\endcsname{\thepage}%
\string\expandafter\gdef\protect\csname
ref@num.#1\string\endcsname{\@currentlabel}%
\string\expandafter\gdef\protect\csname
sectionref@name.#1\string\endcsname{\realref@anchorname}%
}\@esphack}%
\DeclareRobustCommand\pageref[1]{{\edef\a{\csname
page@num.#1\endcsname}\expandafter\hyperlink{page.\a}{\a}}}%
\DeclareRobustCommand\ref[1]{{\edef\a{\csname
ref@num.#1\endcsname}\hyperlink{#1}{\a}}}%
\DeclareRobustCommand\sectionref[1]{{\edef\a{\csname
ref@num.#1\endcsname}\edef\b{\csname
sectionref@name.#1\endcsname}\hyperlink{\b}{\a}}}%
}
\end{filecontents}
% ---------------------------- End of realref.sty ------------------------------
% --------------------------- Start of metamath.bib -----------------------------
\begin{filecontents}{metamath.bib}
@book{Albers, editor = "Donald J. Albers and G. L. Alexanderson",
title = "Mathematical People",
publisher = "Contemporary Books, Inc.",
address = "Chicago",
note = "[QA28.M37]",
year = 1985 }
@book{Anderson, author = "Alan Ross Anderson and Nuel D. Belnap",
title = "Entailment",
publisher = "Princeton University Press",
address = "Princeton",
volume = 1,
note = "[QA9.A634 1975 v.1]",
year = 1975}
@book{Barrow, author = "John D. Barrow",
title = "Theories of Everything: The Quest for Ultimate Explanation",
publisher = "Oxford University Press",
address = "Oxford",
note = "[Q175.B225]",
year = 1991 }
@book{Behnke,
editor = "H. Behnke and F. Backmann and K. Fladt and W. S{\"{u}}ss",
title = "Fundamentals of Mathematics",
volume = "I",
publisher = "The MIT Press",
address = "Cambridge, Massachusetts",
note = "[QA37.2.B413]",
year = 1974 }
@book{Bell, author = "J. L. Bell and M. Machover",
title = "A Course in Mathematical Logic",
publisher = "North-Holland",
address = "Amsterdam",
note = "[QA9.B3953]",
year = 1977 }
@inproceedings{Blass, author = "Andrea Blass",
title = "The Interaction Between Category Theory and Set Theory",
pages = "5--29",
booktitle = "Mathematical Applications of Category Theory (Proceedings
of the Special Session on Mathematical Applications
Category Theory, 89th Annual Meeting of the American Mathematical
Society, held in Denver, Colorado January 5--9, 1983)",
editor = "John Walter Gray",
year = 1983,
note = "[QA169.A47 1983]",
publisher = "American Mathematical Society",
address = "Providence, Rhode Island"}
@proceedings{Bledsoe, editor = "W. W. Bledsoe and D. W. Loveland",
title = "Automated Theorem Proving: After 25 Years (Proceedings
of the Special Session on Automatic Theorem Proving,
89th Annual Meeting of the American Mathematical
Society, held in Denver, Colorado January 5--9, 1983)",
year = 1983,
note = "[QA76.9.A96.S64 1983]",
publisher = "American Mathematical Society",
address = "Providence, Rhode Island" }
@book{Boolos, author = "George S. Boolos and Richard C. Jeffrey",
title = "Computability and Log\-ic",
publisher = "Cambridge University Press",
edition = "third",
address = "Cambridge",
note = "[QA9.59.B66 1989]",
year = 1989 }
@book{Campbell, author = "John Campbell",
title = "Programmer's Progress",
publisher = "White Star Software",
address = "Box 51623, Palo Alto, CA 94303",
year = 1991 }
@article{DBLP:journals/corr/Carneiro14,
author = {Mario Carneiro},
title = {Conversion of {HOL} Light proofs into Metamath},
journal = {CoRR},
volume = {abs/1412.8091},
year = {2014},
url = {http://arxiv.org/abs/1412.8091},
archivePrefix = {arXiv},
eprint = {1412.8091},
timestamp = {Mon, 13 Aug 2018 16:47:05 +0200},
biburl = {https://dblp.org/rec/bib/journals/corr/Carneiro14},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{CarneiroND,
author = {Mario Carneiro},
title = {Natural Deductions in the Metamath Proof Language},
url = {http://us.metamath.org/ocat/natded.pdf},
year = 2014
}
@inproceedings{Chou, author = "Shang-Ching Chou",
title = "Proving Elementary Geometry Theorems Using {W}u's Algorithm",
pages = "243--286",
booktitle = "Automated Theorem Proving: After 25 Years (Proceedings
of the Special Session on Automatic Theorem Proving,
89th Annual Meeting of the American Mathematical
Society, held in Denver, Colorado January 5--9, 1983)",
editor = "W. W. Bledsoe and D. W. Loveland",
year = 1983,
note = "[QA76.9.A96.S64 1983]",
publisher = "American Mathematical Society",
address = "Providence, Rhode Island" }
@book{Clemente, author = "Daniel Clemente Laboreo",
title = "Introduction to natural deduction",
year = 2014,
url = "http://www.danielclemente.com/logica/dn.en.pdf" }
@incollection{Courant, author = "Richard Courant and Herbert Robbins",
title = "Topology",
pages = "573--590",
booktitle = "The World of Mathematics, Volume One",
editor = "James R. Newman",
publisher = "Simon and Schuster",
address = "New York",
note = "[QA3.W67 1988]",
year = 1956 }
@book{Curry, author = "Haskell B. Curry",
title = "Foundations of Mathematical Logic",
publisher = "Dover Publications, Inc.",
address = "New York",
note = "[QA9.C976 1977]",
year = 1977 }
@book{Davis, author = "Philip J. Davis and Reuben Hersh",
title = "The Mathematical Experience",
publisher = "Birkh{\"{a}}user Boston",
address = "Boston",
note = "[QA8.4.D37 1982]",
year = 1981 }
@incollection{deMillo,
author = "Richard de Millo and Richard Lipton and Alan Perlis",
title = "Social Processes and Proofs of Theorems and Programs",
pages = "267--285",
booktitle = "New Directions in the Philosophy of Mathematics",
editor = "Thomas Tymoczko",
publisher = "Birkh{\"{a}}user Boston, Inc.",
address = "Boston",
note = "[QA8.6.N48 1986]",
year = 1986 }
@book{Edwards, author = "Robert E. Edwards",
title = "A Formal Background to Mathematics",
publisher = "Springer-Verlag",
address = "New York",
note = "[QA37.2.E38 v.1a]",
year = 1979 }
@book{Enderton, author = "Herbert B. Enderton",
title = "Elements of Set Theory",
publisher = "Academic Press, Inc.",
address = "San Diego",
note = "[QA248.E5]",
year = 1977 }
@book{Goodstein, author = "R. L. Goodstein",
title = "Development of Mathematical Logic",
publisher = "Springer-Verlag New York Inc.",
address = "New York",
note = "[QA9.G6554]",
year = 1971 }
@book{Guillen, author = "Michael Guillen",
title = "Bridges to Infinity",
publisher = "Jeremy P. Tarcher, Inc.",
address = "Los Angeles",
note = "[QA93.G8]",
year = 1983 }
@book{Hamilton, author = "Alan G. Hamilton",
title = "Logic for Mathematicians",
edition = "revised",
publisher = "Cambridge University Press",
address = "Cambridge",
note = "[QA9.H298]",
year = 1988 }
@unpublished{Harrison, author = "John Robert Harrison",
title = "Metatheory and Reflection in Theorem Proving:
A Survey and Critique",
note = "Technical Report
CRC-053.
SRI Cambridge,
Millers Yard, Cambridge, UK,
1995.
Available on the Web as
{\verb+http:+}\-{\verb+//www.cl.cam.ac.uk/users/jrh/papers/reflect.html+}"}
@TECHREPORT{Harrison-thesis,
author = "John Robert Harrison",
title = "Theorem Proving with the Real Numbers",
institution = "University of Cambridge Computer
Lab\-o\-ra\-to\-ry",
address = "New Museums Site, Pembroke Street, Cambridge,
CB2 3QG, UK",
year = 1996,
number = 408,
type = "Technical Report",
note = "Author's PhD thesis,
available on the Web at
{\verb+http:+}\-{\verb+//www.cl.cam.ac.uk+}\-{\verb+/users+}\-{\verb+/jrh+}%
\-{\verb+/papers+}\-{\verb+/thesis.html+}"}
@book{Herrlich, author = "Horst Herrlich and George E. Strecker",
title = "Category Theory: An Introduction",
publisher = "Allyn and Bacon Inc.",
address = "Boston",
note = "[QA169.H567]",
year = 1973 }
@article{Hindley, author = "J. Roger Hindley and David Meredith",
title = "Principal Type-Schemes and Condensed Detachment",
journal = "The Journal of Symbolic Logic",
volume = 55,
year = 1990,
note = "[QA.J87]",
pages = "90--105" }
@book{Hofstadter, author = "Douglas R. Hofstadter",
title = "G{\"{o}}del, Escher, Bach",
publisher = "Basic Books, Inc.",
address = "New York",
note = "[QA9.H63 1980]",
year = 1979 }
@article{Indrzejczak, author= "Andrzej Indrzejczak",
title = "Natural Deduction, Hybrid Systems and Modal Logic",
journal = "Trends in Logic",
volume = 30,
publisher = "Springer",
year = 2010 }
@article{Kalish, author = "D. Kalish and R. Montague",
title = "On {T}arski's Formalization of Predicate Logic with Identity",
journal = "Archiv f{\"{u}}r Mathematische Logik und Grundlagenfor\-schung",
volume = 7,
year = 1965,
note = "[QA.A673]",
pages = "81--101" }
@article{Kalman, author = "J. A. Kalman",
title = "Condensed Detachment as a Rule of Inference",
journal = "Studia Logica",
volume = 42,
number = 4,
year = 1983,
note = "[B18.P6.S933]",
pages = "443-451" }
@book{Kline, author = "Morris Kline",
title = "Mathematical Thought from Ancient to Modern Times",
publisher = "Oxford University Press",
address = "New York",
note = "[QA21.K516 1990 v.3]",
year = 1972 }
@book{Klinel, author = "Morris Kline",
title = "Mathematics, The Loss of Certainty",
publisher = "Oxford University Press",
address = "New York",
note = "[QA21.K525]",
year = 1980 }
@book{Kramer, author = "Edna E. Kramer",
title = "The Nature and Growth of Modern Mathematics",
publisher = "Princeton University Press",
address = "Princeton, New Jersey",
note = "[QA93.K89 1981]",
year = 1981 }
@article{Knill, author = "Oliver Knill",
title = "Some Fundamental Theorems in Mathematics",
year = "2018",
url = "https://arxiv.org/abs/1807.08416" }
@book{Landau, author = "Edmund Landau",
title = "Foundations of Analysis",
publisher = "Chelsea Publishing Company",
address = "New York",
edition = "second",
note = "[QA241.L2541 1960]",
year = 1960 }
@article{Leblanc, author = "Hugues Leblanc",
title = "On {M}eyer and {L}ambert's Quantificational Calculus {FQ}",
journal = "The Journal of Symbolic Logic",
volume = 33,
year = 1968,
note = "[QA.J87]",
pages = "275--280" }
@article{Lejewski, author = "Czeslaw Lejewski",
title = "On Implicational Definitions",
journal = "Studia Logica",
volume = 8,
year = 1958,
note = "[B18.P6.S933]",
pages = "189--208" }
@book{Levy, author = "Azriel Levy",
title = "Basic Set Theory",
publisher = "Dover Publications",
address = "Mineola, NY",
year = "2002"
}
@book{Margaris, author = "Angelo Margaris",
title = "First Order Mathematical Logic",
publisher = "Blaisdell Publishing Company",
address = "Waltham, Massachusetts",
note = "[QA9.M327]",
year = 1967}
@book{Manin, author = "Yu I. Manin",
title = "A Course in Mathematical Logic",
publisher = "Springer-Verlag",
address = "New York",
note = "[QA9.M29613]",
year = "1977" }
@article{Mathias, author = "Adrian R. D. Mathias",
title = "A Term of Length 4,523,659,424,929",
journal = "Synthese",
volume = 133,
year = 2002,
note = "[Q.S993]",
pages = "75--86" }
@article{Megill, author = "Norman D. Megill",
title = "A Finitely Axiomatized Formalization of Predicate Calculus
with Equality",
journal = "Notre Dame Journal of Formal Logic",
volume = 36,
year = 1995,
note = "[QA.N914]",
pages = "435--453" }
@unpublished{Megillc, author = "Norman D. Megill",
title = "A Shorter Equivalent of the Axiom of Choice",
month = "June",
note = "Unpublished",
year = 1991 }
@article{MegillBunder, author = "Norman D. Megill and Martin W.
Bunder",
title = "Weaker {D}-Complete Logics",
journal = "Journal of the IGPL",
volume = 4,
year = 1996,
pages = "215--225",
note = "Available on the Web at
{\verb+http:+}\-{\verb+//www.mpi-sb.mpg.de+}\-{\verb+/igpl+}%
\-{\verb+/Journal+}\-{\verb+/V4-2+}\-{\verb+/#Megill+}"}
}
@book{Mendelson, author = "Elliott Mendelson",
title = "Introduction to Mathematical Logic",
edition = "second",
publisher = "D. Van Nostrand Company, Inc.",
address = "New York",
note = "[QA9.M537 1979]",
year = 1979 }
@article{Meredith, author = "David Meredith",
title = "In Memoriam {C}arew {A}rthur {M}eredith (1904-1976)",
journal = "Notre Dame Journal of Formal Logic",
volume = 18,
year = 1977,
note = "[QA.N914]",
pages = "513--516" }
@article{CAMeredith, author = "C. A. Meredith",
title = "Single Axioms for the Systems ({C},{N}), ({C},{O}) and ({A},{N})
of the Two-Valued Propositional Calculus",
journal = "The Journal of Computing Systems",
volume = 3,
year = 1953,
pages = "155--164" }
@article{Monk, author = "J. Donald Monk",
title = "Provability With Finitely Many Variables",
journal = "The Journal of Symbolic Logic",
volume = 27,
year = 1971,
note = "[QA.J87]",
pages = "353--358" }
@article{Monks, author = "J. Donald Monk",
title = "Substitutionless Predicate Logic With Identity",
journal = "Archiv f{\"{u}}r Mathematische Logik und Grundlagenfor\-schung",
volume = 7,
year = 1965,
pages = "103--121" }
%% Took out this from above to prevent LaTeX underfull warning:
% note = "[QA.A673]",
@book{Moore, author = "A. W. Moore",
title = "The Infinite",
publisher = "Routledge",
address = "New York",
note = "[BD411.M59]",
year = 1989}
@book{Munkres, author = "James R. Munkres",
title = "Topology: A First Course",
publisher = "Prentice-Hall, Inc.",
address = "Englewood Cliffs, New Jersey",
note = "[QA611.M82]",
year = 1975}
@article{Nemesszeghy, author = "E. Z. Nemesszeghy and E. A. Nemesszeghy",
title = "On Strongly Creative Definitions: A Reply to {V}. {F}. {R}ickey",
journal = "Logique et Analyse (N.\ S.)",
year = 1977,
volume = 20,
note = "[BC.L832]",
pages = "111--115" }
@unpublished{Nemeti, author = "N{\'{e}}meti, I.",
title = "Algebraizations of Quantifier Logics, an Overview",
note = "Version 11.4, preprint, Mathematical Institute, Budapest,
1994. A shortened version without proofs appeared in
``Algebraizations of quantifier logics, an introductory overview,''
{\em Studia Logica}, 50:485--569, 1991 [B18.P6.S933]"}
@article{Pavicic, author = "M. Pavi{\v{c}}i{\'{c}}",
title = "A New Axiomatization of Unified Quantum Logic",
journal = "International Journal of Theoretical Physics",
year = 1992,
volume = 31,
note = "[QC.I626]",
pages = "1753 --1766" }
@book{Penrose, author = "Roger Penrose",
title = "The Emperor's New Mind",
publisher = "Oxford University Press",
address = "New York",
note = "[Q335.P415]",
year = 1989 }
@book{PetersonI, author = "Ivars Peterson",
title = "The Mathematical Tourist",
publisher = "W. H. Freeman and Company",
address = "New York",
note = "[QA93.P475]",
year = 1988 }
@article{Peterson, author = "Jeremy George Peterson",
title = "An automatic theorem prover for substitution and detachment systems",
journal = "Notre Dame Journal of Formal Logic",
volume = 19,
year = 1978,
note = "[QA.N914]",
pages = "119--122" }
@book{Quine, author = "Willard Van Orman Quine",
title = "Set Theory and Its Logic",
edition = "revised",
publisher = "The Belknap Press of Harvard University Press",
address = "Cambridge, Massachusetts",
note = "[QA248.Q7 1969]",
year = 1969 }
@article{Robinson, author = "J. A. Robinson",
title = "A Machine-Oriented Logic Based on the Resolution Principle",
journal = "Journal of the Association for Computing Machinery",
year = 1965,
volume = 12,
pages = "23--41" }
@article{RobinsonT, author = "T. Thacher Robinson",
title = "Independence of Two Nice Sets of Axioms for the Propositional
Calculus",
journal = "The Journal of Symbolic Logic",
volume = 33,
year = 1968,
note = "[QA.J87]",
pages = "265--270" }
@book{Rucker, author = "Rudy Rucker",
title = "Infinity and the Mind: The Science and Philosophy of the
Infinite",
publisher = "Bantam Books, Inc.",
address = "New York",
note = "[QA9.R79 1982]",
year = 1982 }
@book{Russell, author = "Bertrand Russell",
title = "Mysticism and Logic, and Other Essays",
publisher = "Barnes \& Noble Books",
address = "Totowa, New Jersey",
note = "[B1649.R963.M9 1981]",
year = 1981 }
@article{Russell2, author = "Bertrand Russell",
title = "Recent Work on the Principles of Mathematics",
journal = "International Monthly",
volume = 4,
year = 1901,
pages = "84"}
@article{Schmidt, author = "Eric Schmidt",
title = "Reductions in Norman Megill's axiom system for complex numbers",
url = "http://us.metamath.org/downloads/schmidt-cnaxioms.pdf",
year = "2012" }
@book{Shoenfield, author = "Joseph R. Shoenfield",
title = "Mathematical Logic",
publisher = "Addison-Wesley Publishing Company, Inc.",
address = "Reading, Massachusetts",
year = 1967,
note = "[QA9.S52]" }
@book{Smullyan, author = "Raymond M. Smullyan",
title = "Theory of Formal Systems",
publisher = "Princeton University Press",
address = "Princeton, New Jersey",
year = 1961,
note = "[QA248.5.S55]" }
@book{Solow, author = "Daniel Solow",
title = "How to Read and Do Proofs: An Introduction to Mathematical
Thought Process",
publisher = "John Wiley \& Sons",
address = "New York",
year = 1982,
note = "[QA9.S577]" }
@book{Stark, author = "Harold M. Stark",
title = "An Introduction to Number Theory",
publisher = "Markham Publishing Company",
address = "Chicago",
note = "[QA241.S72 1978]",
year = 1970 }
@article{Swart, author = "E. R. Swart",
title = "The Philosophical Implications of the Four-Color Problem",
journal = "American Mathematical Monthly",
year = 1980,
volume = 87,
month = "November",
note = "[QA.A5125]",
pages = "697--707" }
@book{Szpiro, author = "George G. Szpiro",
title = "Poincar{\'{e}}'s Prize: The Hundred-Year Quest to Solve One
of Math's Greatest Puzzles",
publisher = "Penguin Books Ltd",
address = "London",
note = "[QA43.S985 2007]",
year = 2007}
@book{Takeuti, author = "Gaisi Takeuti and Wilson M. Zaring",
title = "Introduction to Axiomatic Set Theory",
edition = "second",
publisher = "Springer-Verlag New York Inc.",
address = "New York",
note = "[QA248.T136 1982]",
year = 1982}
@inproceedings{Tarski, author = "Alfred Tarski",
title = "What is Elementary Geometry",
pages = "16--29",
booktitle = "The Axiomatic Method, with Special Reference to Geometry and
Physics (Proceedings of an International Symposium held at the University
of California, Berkeley, December 26, 1957 --- January 4, 1958)",
editor = "Leon Henkin and Patrick Suppes and Alfred Tarski",
year = 1959,
publisher = "North-Holland Publishing Company",
address = "Amsterdam"}
@article{Tarski1965, author = "Alfred Tarski",
title = "A Simplified Formalization of Predicate Logic with Identity",
journal = "Archiv f{\"{u}}r Mathematische Logik und Grundlagenforschung",
volume = 7,
year = 1965,
note = "[QA.A673]",
pages = "61--79" }
@book{Tymoczko,
title = "New Directions in the Philosophy of Mathematics",
editor = "Thomas Tymoczko",
publisher = "Birkh{\"{a}}user Boston, Inc.",
address = "Boston",
note = "[QA8.6.N48 1986]",
year = 1986 }
@incollection{Wang,
author = "Hao Wang",
title = "Theory and Practice in Mathematics",
pages = "129--152",
booktitle = "New Directions in the Philosophy of Mathematics",
editor = "Thomas Tymoczko",
publisher = "Birkh{\"{a}}user Boston, Inc.",
address = "Boston",
note = "[QA8.6.N48 1986]",
year = 1986 }
@manual{Webster,
title = "Webster's New Collegiate Dictionary",
organization = "G. \& C. Merriam Co.",
address = "Springfield, Massachusetts",
note = "[PE1628.W4M4 1977]",
year = 1977 }
@manual{Whitehead, author = "Alfred North Whitehead",
title = "An Introduction to Mathematics",
year = 1911 }
@book{PM, author = "Alfred North Whitehead and Bertrand Russell",
title = "Principia Mathematica",
edition = "second",
publisher = "Cambridge University Press",
address = "Cambridge",
year = "1927",
note = "(3 vols.) [QA9.W592 1927]" }
@article{DBLP:journals/corr/Whalen16,
author = {Daniel Whalen},
title = {Holophrasm: a neural Automated Theorem Prover for higher-order logic},
journal = {CoRR},
volume = {abs/1608.02644},
year = {2016},
url = {http://arxiv.org/abs/1608.02644},
archivePrefix = {arXiv},
eprint = {1608.02644},
timestamp = {Mon, 13 Aug 2018 16:46:19 +0200},
biburl = {https://dblp.org/rec/bib/journals/corr/Whalen16},
bibsource = {dblp computer science bibliography, https://dblp.org} }
@article{Wiedijk-revisited,
author = {Freek Wiedijk},
title = {The QED Manifesto Revisited},
year = {2007},
url = {http://mizar.org/trybulec65/8.pdf} }
@book{Wolfram,
author = "Stephen Wolfram",
title = "Mathematica: A System for Doing Mathematics by Computer",
edition = "second",
publisher = "Addison-Wesley Publishing Co.",
address = "Redwood City, California",
note = "[QA76.95.W65 1991]",
year = 1991 }
@book{Wos, author = "Larry Wos and Ross Overbeek and Ewing Lusk and Jim Boyle",
title = "Automated Reasoning: Introduction and Applications",
edition = "second",
publisher = "McGraw-Hill, Inc.",
address = "New York",
note = "[QA76.9.A96.A93 1992]",
year = 1992 }
%
%
%[1] Church, Alonzo, Introduction to Mathematical Logic,
% Volume 1, Princeton University Press, Princeton, N. J., 1956.
%
%[2] Cohen, Paul J., Set Theory and the Continuum Hypothesis,
% W. A. Benjamin, Inc., Reading, Mass., 1966.
%
%[3] Hamilton, Alan G., Logic for Mathematicians, Cambridge
% University Press,
% Cambridge, 1988.
%[6] Kleene, Stephen Cole, Introduction to Metamathematics, D. Van
% Nostrand Company, Inc., Princeton (1952).
%[13] Tarski, Alfred, "A simplified formalization of predicate
% logic with identity," Archiv fur Mathematische Logik und
% Grundlagenforschung, vol. 7 (1965), pp. 61-79.
%[14] Tarski, Alfred and Steven Givant, A Formalization of Set
% Theory Without Variables, American Mathematical Society Colloquium
% Publications, vol. 41, American Mathematical Society,
% Providence, R. I., 1987.
%[15] Zeman, J. J., Modal Logic, Oxford University Press, Oxford, 1973.
\end{filecontents}
% --------------------------- End of metamath.bib -----------------------------
%Book: Metamath
%Author: Norman Megill Email: nm at alum.mit.edu
%Author: David A. Wheeler Email: dwheeler at dwheeler.com
% A book template example
% http://www.stsci.edu/ftp/software/tex/bookstuff/book.template
\documentclass[leqno]{book} % LaTeX 2e. 10pt. Use [leqno,12pt] for 12pt
% hyperref 2002/05/27 v6.72r (couldn't get pagebackref to work)
\usepackage[plainpages=false,pdfpagelabels=true]{hyperref}
\usepackage{needspace} % Enable control over page breaks
\usepackage{breqn} % automatic equation breaking
\usepackage{microtype} % microtypography, reduces hyphenation
% Packages for flexible tables. We need to be able to
% wrap text within a cell (with automatically-determined widths) AND
% split a table automatically across multiple pages.
% * "tabularx" wraps text in cells but only 1 page
% * "longtable" goes across pages but by itself is incompatible with tabularx
% * "ltxtable" combines longtable and tabularx, but table contents
% must be in a separate file.
% * "ltablex" combines tabularx and longtable - must install specially
% * "booktabs" is recommended as a way to improve the look of tables,
% but doesn't add these capabilities.
% * "tabu" much more capable and seems to be recommended. So use that.
\usepackage{makecell} % Enable forced line splits within a table cell
\usepackage{longtable} % Enable multi-page tables
\usepackage{tabu} % Multi-page tables with wrapped text in a cell
% You can find more Tex packages using commands like:
% tlmgr search --file tabu.sty
% find /usr/share/texmf-dist/ -name '*tab*'
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Uncomment the next 3 lines to suppress boxes and colors on the hyperlinks
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\hypersetup{
%colorlinks,citecolor=black,filecolor=black,linkcolor=black,urlcolor=black
%}
%
\usepackage{realref}
% Restarting page numbers: try?
% \printglossary
% \cleardoublepage
% \pagenumbering{arabic}
% \setcounter{page}{1} ???needed
% \include{chap1}
% not used:
% \def\R2Lurl#1#2{\mbox{\href{#1}\texttt{#2}}}
\usepackage{amssymb}
% Version 1 of book: margins: t=.4, b=.2, ll=.4, rr=.55
% \usepackage{anysize}
% % \papersize{<height>}{<width>}
% % \marginsize{<left>}{<right>}{<top>}{<bottom>}
% \papersize{9in}{6in}
% % l/r 0.6124-0.6170 works t/b 0.2418-0.3411 = 192pp. 0.2926-03118=exact
% \marginsize{0.7147in}{0.5147in}{0.4012in}{0.2012in}
\usepackage{anysize}
% \papersize{<height>}{<width>}
% \marginsize{<left>}{<right>}{<top>}{<bottom>}
\papersize{9in}{6in}
% l/r 0.85in&0.6431-0.6539 works t/b ?-?
%\marginsize{0.85in}{0.6485in}{0.55in}{0.35in}
\marginsize{0.8in}{0.65in}{0.5in}{0.3in}
% \usepackage[papersize={3.6in,4.8in},hmargin=0.1in,vmargin={0.1in,0.1in}]{geometry} % page geometry
\usepackage{special-settings}
\raggedbottom
\makeindex
\begin{document}
% Discourage page widows and orphans:
\clubpenalty=300
\widowpenalty=300
%%%%%%% load in AMS fonts %%%%%%% % LaTeX 2.09 - obsolete in LaTeX 2e
%\input{amssym.def}
%\input{amssym.tex}
%\input{c:/texmf/tex/plain/amsfonts/amssym.def}
%\input{c:/texmf/tex/plain/amsfonts/amssym.tex}
\bibliographystyle{plain}
\pagenumbering{roman}
\pagestyle{headings}
\thispagestyle{empty}
\hfill
\vfill
\begin{center}
{\LARGE\bf Metamath} \\
\vspace{1ex}
{\large A Computer Language for Mathematical Proofs} \\
\vspace{7ex}
{\large Norman Megill} \\
\vspace{7ex}
with extensive revisions by \\
\vspace{1ex}
{\large David A. Wheeler} \\
\vspace{7ex}
% Printed date. If changing the date below, also fix the date at the beginning.
2019-06-02
\end{center}
\vfill
\hfill
\newpage
\thispagestyle{empty}
\hfill
\vfill
\begin{center}
$\sim$\ {\sc Public Domain}\ $\sim$
\vspace{2ex}
This book (including its later revisions)
has been released into the Public Domain by Norman Megill per the
Creative Commons CC0 1.0 Universal (CC0 1.0) Public Domain Dedication.
David A. Wheeler has done the same.
This public domain release applies worldwide. In case this is not
legally possible, the right is granted to use the work for any purpose,
without any conditions, unless such conditions are required by law.
See \url{https://creativecommons.org/publicdomain/zero/1.0/}.
\vspace{3ex}
Several short, attributed quotations from copyrighted works
appear in this book under the ``fair use'' provision of Section 107 of
the United States Copyright Act (Title 17 of the {\em United States
Code}). The public-domain status of this book is not applicable to
those quotations.
\vspace{3ex}
Any trademarks used in this book are the property of their owners.
% QA76.9.L63.M??
% \vspace{1ex}
%
% \vspace{1ex}
% {\small Permission is granted to make and distribute verbatim copies of this
% book
% provided the copyright notice and this
% permission notice are preserved on all copies.}
%
% \vspace{1ex}
% {\small Permission is granted to copy and distribute modified versions of this
% book under the conditions for verbatim copying, provided that the
% entire
% resulting derived work is distributed under the terms of a permission
% notice
% identical to this one.}
%
% \vspace{1ex}
% {\small Permission is granted to copy and distribute translations of this
% book into another language, under the above conditions for modified
% versions,
% except that this permission notice may be stated in a translation
% approved by the
% author.}
%
% \vspace{1ex}
% %{\small For a copy of the \LaTeX\ source files for this book, contact
% %the author.} \\
% \ \\
% \ \\
\vspace{7ex}
% ISBN: 1-4116-3724-0 \\
% ISBN: 978-1-4116-3724-5 \\
ISBN: 978-0-359-70223-7 \\
{\ } \\
Lulu Press \\
Morrisville, North Carolina\\
USA
\hfill
\vfill
Norman Megill\\ 93 Bridge St., Lexington, MA 02421 \\
E-mail address: \texttt{nm{\char`\@}alum.mit.edu} \\
\vspace{7ex}
David A. Wheeler \\
E-mail address: \texttt{dwheeler{\char`\@}dwheeler.com} \\
% See notes added at end of Preface for revision history. \\
% For current information on the Metamath software see \\
\vspace{7ex}
\url{http://metamath.org}
\end{center}
\hfill
\vfill
{\parindent0pt%
\footnotesize{%
Cover: Aleph null ($\aleph_0$) is the symbol for the
first infinite cardinal number, discovered by Georg Cantor in 1873.
We use a red aleph null (with dark outline and gold glow) as the Metamath logo.
Credit: Norman Megill (1994) and Giovanni Mascellani (2019),
public domain.%
\index{aleph null}%
\index{Metamath!logo}\index{Cantor, Georg}\index{Mascellani, Giovanni}}}
% \newpage
% \thispagestyle{empty}
%
% \hfill
% \vfill
%
% \begin{center}
% {\it To my son Robin Dwight Megill}
% \end{center}
%
% \vfill
% \hfill
%
% \newpage
\tableofcontents
%\listoftables
\chapter*{Preface}
\markboth{PREFACE}{PREFACE}
\addcontentsline{toc}{section}{Preface}
% (For current information, see the notes added at the
% end of this preface on p.~\pageref{note2002}.)
\subsubsection{Overview}
Metamath\index{Metamath} is a computer language and an associated computer
program for archiving, verifying, and studying mathematical proofs at a very
detailed level. The Metamath language incorporates no mathematics per se but
treats all mathematical statements as mere sequences of symbols. You provide
Metamath with certain special sequences (axioms) that tell it what rules
of inference are allowed. Metamath is not limited to any specific field of
mathematics. The Metamath language is simple and robust, with an
almost total absence of hard-wired syntax, and
we\footnote{Unless otherwise noted, the words
``I,'' ``me,'' and ``my'' refer to Norman Megill\index{Megill, Norman}, while
``we,'' ``us,'' and ``our'' refer to Norman Megill and
David A. Wheeler\index{Wheeler, David A.}.}
believe that it
provides about the simplest possible framework that allows essentially all of
mathematics to be expressed with absolute rigor.
% index test
%\newcommand{\nn}[1]{#1n}
%\index{aaa@bbb}
%\index{abc!def}
%\index{abd|see{qqq}}