This tutorial depends on Lean 4, VS Code, and Mathlib. You can find the textbook both online and in this repository in html format or as a pdf document. The book is designed to be read as you work through examples and exercises, using a copy of this repository on your computer. Alternatively, you can use Github Codespaces or Gitpod to run Lean and VS Code in the cloud.
This version of Mathematics in Lean is designed for Lean 4 and Mathlib. For the Lean 3 version, see https://github.com/leanprover-community/mathematics_in_lean3.
Do the following:
-
Install Lean 4 and VS Code following these instructions.
-
Fetch the repository by clicking on the forall symbol in the upper right corner of VS Code, and choose
Open Project,Download Project, andMathematics in Lean. -
Each section in the textbook has an associated Lean file with examples and exercises. You can find them in the folder
MIL, organized by chapter. We strongly recommend making a copy of that folder and experimenting and doing the exercises in that copy. This leaves the originals intact, and it also makes it easier to update the repository as it changes (see below). You can call the copymy_filesor whatever you want and use it to create your own Lean files as well.
At that point, you can open the textbook in a web browser at https://leanprover-community.github.io/mathematics_in_lean/ and start reading and doing the exercises in VS Code.
The textbook and this repository are still a work in progress.
You can update the repository by typing git pull
followed by lake exe cache get inside the mathematics_in_lean folder.
(This assumes that you have not changed the contents of the MIL folder,
which is why we suggested making a copy.)
If you have trouble installing Lean, you can use Lean directly in your browser using Github Codespaces. This requires a Github account. If you are signed in to Github, click here:
Make sure the Machine type is 4-core, and then press Create codespace
(this might take a few minutes).
This creates a virtual machine in the cloud,
and installs Lean and Mathlib.
Opening any .lean file in the MIL folder will start Lean,
though this may also take a little while.
We suggest making a copy of the MIL directory, as described
in the instructions above for using MIL on your computer.
You can update the repository by opening a terminal in the browser
and typing git pull followed by lake exe cache get as above.
Codespaces offers a certain number of free hours per month. When you are done working,
press Ctrl/Cmd+Shift+P on your keyboard, start typing stop current codespace, and then
select Codespaces: Stop Current Codespace from the list of options.
If you forget, don't worry: the virtual machine will stop itself after a certain
amount of time of inactivity.
To restart a previous workspace, visit https://github.com/codespaces.
PRs and issues should be opened at the upstream source repository.