├── .gitignore ├── LICENSE ├── README.md ├── leanpkg.toml └── src ├── Bolzano_Weierstrass.lean ├── README.md ├── cauchy.lean ├── examples ├── limit_examples.lean └── scratch.lean ├── filter2.lean ├── finite_sums.lean ├── lean_format_tests ├── monotone_formatted.lean ├── patrick.lean └── sandwich.lean ├── limits.lean ├── limsup.lean ├── monotone.lean ├── problem_sheets ├── sheet_1 │ ├── 1Q-1.PDF │ ├── sht01Q01.lean │ ├── sht01Q02.lean │ └── sht01Q03.lean └── sheet_7 │ └── sht07Q01.lean ├── sandwich.lean ├── useful_theorems.txt └── xenalib └── M1P1.lean /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/README.md -------------------------------------------------------------------------------- /leanpkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/leanpkg.toml -------------------------------------------------------------------------------- /src/Bolzano_Weierstrass.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/Bolzano_Weierstrass.lean -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/README.md -------------------------------------------------------------------------------- /src/cauchy.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/cauchy.lean -------------------------------------------------------------------------------- /src/examples/limit_examples.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/examples/limit_examples.lean -------------------------------------------------------------------------------- /src/examples/scratch.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/examples/scratch.lean -------------------------------------------------------------------------------- /src/filter2.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/filter2.lean -------------------------------------------------------------------------------- /src/finite_sums.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/finite_sums.lean -------------------------------------------------------------------------------- /src/lean_format_tests/monotone_formatted.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/lean_format_tests/monotone_formatted.lean -------------------------------------------------------------------------------- /src/lean_format_tests/patrick.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/lean_format_tests/patrick.lean -------------------------------------------------------------------------------- /src/lean_format_tests/sandwich.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/lean_format_tests/sandwich.lean -------------------------------------------------------------------------------- /src/limits.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/limits.lean -------------------------------------------------------------------------------- /src/limsup.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/limsup.lean -------------------------------------------------------------------------------- /src/monotone.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/monotone.lean -------------------------------------------------------------------------------- /src/problem_sheets/sheet_1/1Q-1.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/problem_sheets/sheet_1/1Q-1.PDF -------------------------------------------------------------------------------- /src/problem_sheets/sheet_1/sht01Q01.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/problem_sheets/sheet_1/sht01Q01.lean -------------------------------------------------------------------------------- /src/problem_sheets/sheet_1/sht01Q02.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/problem_sheets/sheet_1/sht01Q02.lean -------------------------------------------------------------------------------- /src/problem_sheets/sheet_1/sht01Q03.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/problem_sheets/sheet_1/sht01Q03.lean -------------------------------------------------------------------------------- /src/problem_sheets/sheet_7/sht07Q01.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/problem_sheets/sheet_7/sht07Q01.lean -------------------------------------------------------------------------------- /src/sandwich.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/sandwich.lean -------------------------------------------------------------------------------- /src/useful_theorems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/useful_theorems.txt -------------------------------------------------------------------------------- /src/xenalib/M1P1.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/M1P1-lean/HEAD/src/xenalib/M1P1.lean --------------------------------------------------------------------------------