Notes on books I'm currently studying
 
 
 
Go to file
Joshua Potter 995e0ce327 Add "Elements of Set Theory" to index.html. 2023-05-22 12:53:12 -06:00
Bookshelf Enderton, add prompts to be proven from "Axioms and Operations." 2023-05-22 12:52:23 -06:00
Common Enderton, basic axioms/unions exercises. 2023-05-21 18:32:59 -06:00
DocGen4 Add "Elements of Set Theory" to index.html. 2023-05-22 12:53:12 -06:00
scripts Add PDF generation to absorbed doc-gen4 project. 2023-05-11 07:55:25 -06:00
static Absort doc-gen4 into this project. 2023-05-11 07:27:25 -06:00
.env Update lean toolchain and incorporate documentation generation. 2023-05-03 15:31:33 -06:00
.gitignore Rewrite as a single shared library. 2023-04-22 14:20:37 -06:00
Bookshelf.lean Add start of Enderton's "Elements of Set Theory." 2023-05-18 14:04:59 -06:00
Common.lean Derive a more constructive `StepFunction` definition. 2023-05-15 13:37:01 -06:00
DocGen4.lean Absort doc-gen4 into this project. 2023-05-11 07:27:25 -06:00
Main.lean Absort doc-gen4 into this project. 2023-05-11 07:27:25 -06:00
Makefile Accommodate for faster documentation generation. 2023-05-14 10:51:30 -06:00
README.md Add start of Enderton's "Elements of Set Theory." 2023-05-18 14:04:59 -06:00
lake-manifest.json Update toolchain and deps. 2023-05-20 11:11:27 -06:00
lakefile.lean Add Makefile. 2023-05-13 12:28:34 -06:00
lean-toolchain Update toolchain and deps. 2023-05-20 11:11:27 -06:00
preamble.tex Enderton, add prompts to be proven from "Axioms and Operations." 2023-05-22 12:52:23 -06:00

README.md

bookshelf

A study of the books listed below. Most proofs are conducted in LaTeX. Where feasible, theorems are also formally proven in Lean.

  • Apostol, Tom M. Calculus, Vol. 1: One-Variable Calculus, with an Introduction to Linear Algebra. 2nd ed. Vol. 1. 2 vols. Wiley, 1991.
  • Avigad, Jeremy. Theorem Proving in Lean, n.d.
  • Axler, Sheldon. Linear Algebra Done Right. Undergraduate Texts in Mathematics. Cham: Springer International Publishing, 2015.
  • Cormen, Thomas H., Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein. Introduction to Algorithms. 3rd ed. Cambridge, Mass: MIT Press, 2009.
  • Enderton, Herbert B. A Mathematical Introduction to Logic. 2nd ed. San Diego: Harcourt/Academic Press, 2001.
  • Enderton, Herbert B. Elements of Set Theory. New York: Academic Press, 1977.
  • Gries, David. The Science of Programming. Texts and Monographs in Computer Science. New York: Springer-Verlag, 1981.
  • Gustedt, Jens. Modern C. Shelter Island, NY: Manning Publications Co, 2020.
  • Ross, Sheldon. A First Course in Probability Theory. 8th ed. Pearson Prentice Hall, n.d.
  • Smullyan, Raymond M. To Mock a Mockingbird: And Other Logic Puzzles Including an Amazing Adventure in Combinatory Logic. Oxford: Oxford university press, 2000.

Documentation

This project has absorbed doc-gen4 to ease customization. In particular, the DocGen4 module found in this project allows generating PDFs and including them in the navbar. To generate documentation and serve files locally, run the following:

> make docs[!]
> lake run server

The docs build target avoids cleaning files that are expected to not change often (e.g. Lean, Init, and Mathlib related content). If you've upgraded Lean or Mathlib, run make docs! instead to generate documentation from scratch.

Both assume you have pdflatex and python3 available in your $PATH. To change how the server behaves, refer to the .env file located in the root directory of this project.