├── .github └── workflows │ ├── build.yml │ └── upgrade_lean.yml ├── .gitignore ├── .gitpod.yml ├── .vscode ├── copyright.code-snippets └── settings.json ├── README.md ├── blueprint ├── .gitignore ├── src │ ├── basic.tex │ ├── content.tex │ ├── defs.tex │ ├── fix_mathjax.sh │ ├── fourier.log │ ├── fourier.tex │ ├── introduction.tex │ ├── latexmkrc │ ├── macros_common.tex │ ├── macros_print.tex │ ├── macros_web.tex │ ├── plastex.cfg │ ├── print.tex │ ├── stylecours.css │ ├── tech.tex │ ├── techlemmas.tex │ ├── techprop.tex │ └── web.tex └── tasks.py ├── docs ├── _config.yml ├── blueprint.pdf ├── blueprint │ ├── chap-basic.html │ ├── chap-def.html │ ├── chap-fourier.html │ ├── chap-tech.html │ ├── chap-techlemmas.html │ ├── chap-techprop.html │ ├── coverage.html │ ├── dep_graph_document.html │ ├── index.html │ ├── js │ │ ├── coverage.js │ │ ├── d3-graphviz.js │ │ ├── d3.min.js │ │ ├── expatlib.wasm │ │ ├── graphvizlib.wasm │ │ ├── hpcc.min.js │ │ ├── jquery.min.js │ │ ├── js.cookie.min.js │ │ ├── plastex.js │ │ ├── showmore.js │ │ └── svgxuse.js │ ├── sect0001.html │ ├── styles │ │ ├── amsthm.css │ │ ├── dep_graph.css │ │ ├── showmore.css │ │ ├── style_coverage.css │ │ ├── stylecours.css │ │ ├── theme-blue.css │ │ ├── theme-green.css │ │ └── theme-white.css │ └── symbol-defs.svg ├── index.html ├── pygments.css └── style.css ├── docs_src ├── index.md └── template.html ├── leanpkg.toml ├── scripts ├── count_sorry.sh ├── detect_errors.py ├── lean_version.lean ├── lint_project.lean ├── mk_all.sh └── update_nolints.sh ├── src ├── aux_lemmas.lean ├── defs.lean ├── final_results.lean ├── for_mathlib │ ├── basic_estimates.lean │ ├── integral_rpow.lean │ └── misc.lean ├── fourier.lean └── main_results.lean └── tasks.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/upgrade_lean.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/.github/workflows/upgrade_lean.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.vscode/copyright.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/.vscode/copyright.code-snippets -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/README.md -------------------------------------------------------------------------------- /blueprint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/.gitignore -------------------------------------------------------------------------------- /blueprint/src/basic.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/basic.tex -------------------------------------------------------------------------------- /blueprint/src/content.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/content.tex -------------------------------------------------------------------------------- /blueprint/src/defs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/defs.tex -------------------------------------------------------------------------------- /blueprint/src/fix_mathjax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/fix_mathjax.sh -------------------------------------------------------------------------------- /blueprint/src/fourier.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/fourier.log -------------------------------------------------------------------------------- /blueprint/src/fourier.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/fourier.tex -------------------------------------------------------------------------------- /blueprint/src/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/introduction.tex -------------------------------------------------------------------------------- /blueprint/src/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/latexmkrc -------------------------------------------------------------------------------- /blueprint/src/macros_common.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/macros_common.tex -------------------------------------------------------------------------------- /blueprint/src/macros_print.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/macros_print.tex -------------------------------------------------------------------------------- /blueprint/src/macros_web.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/macros_web.tex -------------------------------------------------------------------------------- /blueprint/src/plastex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/plastex.cfg -------------------------------------------------------------------------------- /blueprint/src/print.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/print.tex -------------------------------------------------------------------------------- /blueprint/src/stylecours.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/stylecours.css -------------------------------------------------------------------------------- /blueprint/src/tech.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/tech.tex -------------------------------------------------------------------------------- /blueprint/src/techlemmas.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/techlemmas.tex -------------------------------------------------------------------------------- /blueprint/src/techprop.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/techprop.tex -------------------------------------------------------------------------------- /blueprint/src/web.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/src/web.tex -------------------------------------------------------------------------------- /blueprint/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/blueprint/tasks.py -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/blueprint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint.pdf -------------------------------------------------------------------------------- /docs/blueprint/chap-basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/chap-basic.html -------------------------------------------------------------------------------- /docs/blueprint/chap-def.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/chap-def.html -------------------------------------------------------------------------------- /docs/blueprint/chap-fourier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/chap-fourier.html -------------------------------------------------------------------------------- /docs/blueprint/chap-tech.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/chap-tech.html -------------------------------------------------------------------------------- /docs/blueprint/chap-techlemmas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/chap-techlemmas.html -------------------------------------------------------------------------------- /docs/blueprint/chap-techprop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/chap-techprop.html -------------------------------------------------------------------------------- /docs/blueprint/coverage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/coverage.html -------------------------------------------------------------------------------- /docs/blueprint/dep_graph_document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/dep_graph_document.html -------------------------------------------------------------------------------- /docs/blueprint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/index.html -------------------------------------------------------------------------------- /docs/blueprint/js/coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/js/coverage.js -------------------------------------------------------------------------------- /docs/blueprint/js/d3-graphviz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/js/d3-graphviz.js -------------------------------------------------------------------------------- /docs/blueprint/js/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/js/d3.min.js -------------------------------------------------------------------------------- /docs/blueprint/js/expatlib.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/js/expatlib.wasm -------------------------------------------------------------------------------- /docs/blueprint/js/graphvizlib.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/js/graphvizlib.wasm -------------------------------------------------------------------------------- /docs/blueprint/js/hpcc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/js/hpcc.min.js -------------------------------------------------------------------------------- /docs/blueprint/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/js/jquery.min.js -------------------------------------------------------------------------------- /docs/blueprint/js/js.cookie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/js/js.cookie.min.js -------------------------------------------------------------------------------- /docs/blueprint/js/plastex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/js/plastex.js -------------------------------------------------------------------------------- /docs/blueprint/js/showmore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/js/showmore.js -------------------------------------------------------------------------------- /docs/blueprint/js/svgxuse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/js/svgxuse.js -------------------------------------------------------------------------------- /docs/blueprint/sect0001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/sect0001.html -------------------------------------------------------------------------------- /docs/blueprint/styles/amsthm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/styles/amsthm.css -------------------------------------------------------------------------------- /docs/blueprint/styles/dep_graph.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/styles/dep_graph.css -------------------------------------------------------------------------------- /docs/blueprint/styles/showmore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/styles/showmore.css -------------------------------------------------------------------------------- /docs/blueprint/styles/style_coverage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/styles/style_coverage.css -------------------------------------------------------------------------------- /docs/blueprint/styles/stylecours.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/styles/stylecours.css -------------------------------------------------------------------------------- /docs/blueprint/styles/theme-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/styles/theme-blue.css -------------------------------------------------------------------------------- /docs/blueprint/styles/theme-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/styles/theme-green.css -------------------------------------------------------------------------------- /docs/blueprint/styles/theme-white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/styles/theme-white.css -------------------------------------------------------------------------------- /docs/blueprint/symbol-defs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/blueprint/symbol-defs.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/pygments.css -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs/style.css -------------------------------------------------------------------------------- /docs_src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs_src/index.md -------------------------------------------------------------------------------- /docs_src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/docs_src/template.html -------------------------------------------------------------------------------- /leanpkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/leanpkg.toml -------------------------------------------------------------------------------- /scripts/count_sorry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/scripts/count_sorry.sh -------------------------------------------------------------------------------- /scripts/detect_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/scripts/detect_errors.py -------------------------------------------------------------------------------- /scripts/lean_version.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/scripts/lean_version.lean -------------------------------------------------------------------------------- /scripts/lint_project.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/scripts/lint_project.lean -------------------------------------------------------------------------------- /scripts/mk_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/scripts/mk_all.sh -------------------------------------------------------------------------------- /scripts/update_nolints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/scripts/update_nolints.sh -------------------------------------------------------------------------------- /src/aux_lemmas.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/src/aux_lemmas.lean -------------------------------------------------------------------------------- /src/defs.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/src/defs.lean -------------------------------------------------------------------------------- /src/final_results.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/src/final_results.lean -------------------------------------------------------------------------------- /src/for_mathlib/basic_estimates.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/src/for_mathlib/basic_estimates.lean -------------------------------------------------------------------------------- /src/for_mathlib/integral_rpow.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/src/for_mathlib/integral_rpow.lean -------------------------------------------------------------------------------- /src/for_mathlib/misc.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/src/for_mathlib/misc.lean -------------------------------------------------------------------------------- /src/fourier.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/src/fourier.lean -------------------------------------------------------------------------------- /src/main_results.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/src/main_results.lean -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/unit-fractions/HEAD/tasks.py --------------------------------------------------------------------------------