├── .gitignore ├── .travis.yml ├── CNAME ├── README.md ├── _config.yml ├── header.tex ├── ii ├── lent │ ├── algebraic_geometry.pdf │ ├── algebraic_geometry.tex │ ├── analysis_of_functions.pdf │ ├── analysis_of_functions.tex │ ├── coding_and_cryptography.pdf │ ├── coding_and_cryptography.tex │ ├── header.tex │ └── test.tex ├── letter.pdf ├── letter.tex └── mich │ ├── algebraic_topology.pdf │ ├── algebraic_topology.tex │ ├── galois_theory.pdf │ ├── galois_theory.tex │ ├── galois_theory_def.pdf │ ├── galois_theory_def.tex │ ├── galois_theory_thm.pdf │ ├── galois_theory_thm.tex │ ├── galois_theory_thp.pdf │ ├── galois_theory_thp.tex │ ├── graph_theory.pdf │ ├── graph_theory.tex │ ├── graph_theory_def.pdf │ ├── graph_theory_def.tex │ ├── graph_theory_new.pdf │ ├── graph_theory_new.tex │ ├── graph_theory_thm.pdf │ ├── graph_theory_thm.tex │ ├── graph_theory_thp.pdf │ ├── graph_theory_thp.tex │ ├── header.tex │ ├── hoffman_singleton.png │ ├── linear_analysis.pdf │ ├── linear_analysis.tex │ ├── number_theory.pdf │ ├── number_theory.tex │ ├── probability_and_measure.pdf │ ├── probability_and_measure.tex │ ├── riemann_surfaces.pdf │ ├── riemann_surfaces.tex │ ├── test.pdf │ └── test.tex ├── iii ├── lent │ ├── .latexmkrc │ ├── analytic_number_theory.pdf │ ├── analytic_number_theory.tex │ ├── header.tex │ ├── introduction_to_approximate_groups.pdf │ ├── introduction_to_approximate_groups.tex │ ├── topics_in_set_theory.pdf │ └── topics_in_set_theory.tex └── mich │ ├── advanced_probability.pdf │ ├── advanced_probability.tex │ ├── algebraic_topology.pdf │ ├── algebraic_topology.tex │ ├── category_theory.pdf │ ├── category_theory.tex │ ├── combinatorics.pdf │ ├── combinatorics.tex │ ├── header.tex │ ├── initial_algebras.pdf │ ├── initial_algebras.tex │ ├── initial_algebras_handout.pdf │ ├── introduction_to_discrete_analysis.pdf │ ├── introduction_to_discrete_analysis.tex │ ├── model_theory.pdf │ ├── model_theory.tex │ ├── ramsey_theory.pdf │ ├── ramsey_theory.tex │ ├── topics_in_ergodic_theory.pdf │ └── topics_in_ergodic_theory.tex ├── iv └── lent │ ├── connections_between_model_theory_and_combinatorics.pdf │ ├── connections_between_model_theory_and_combinatorics.tex │ └── header.tex └── scripts ├── parse.hs ├── process.py ├── state_setter.sh └── warning.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.1 4 | script: "bundle exec jekyll build" 5 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | www.b-mehta.co.uk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/_config.yml -------------------------------------------------------------------------------- /header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/header.tex -------------------------------------------------------------------------------- /ii/lent/algebraic_geometry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/lent/algebraic_geometry.pdf -------------------------------------------------------------------------------- /ii/lent/algebraic_geometry.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/lent/algebraic_geometry.tex -------------------------------------------------------------------------------- /ii/lent/analysis_of_functions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/lent/analysis_of_functions.pdf -------------------------------------------------------------------------------- /ii/lent/analysis_of_functions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/lent/analysis_of_functions.tex -------------------------------------------------------------------------------- /ii/lent/coding_and_cryptography.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/lent/coding_and_cryptography.pdf -------------------------------------------------------------------------------- /ii/lent/coding_and_cryptography.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/lent/coding_and_cryptography.tex -------------------------------------------------------------------------------- /ii/lent/header.tex: -------------------------------------------------------------------------------- 1 | ../../header.tex -------------------------------------------------------------------------------- /ii/lent/test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/lent/test.tex -------------------------------------------------------------------------------- /ii/letter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/letter.pdf -------------------------------------------------------------------------------- /ii/letter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/letter.tex -------------------------------------------------------------------------------- /ii/mich/algebraic_topology.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/algebraic_topology.pdf -------------------------------------------------------------------------------- /ii/mich/algebraic_topology.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/algebraic_topology.tex -------------------------------------------------------------------------------- /ii/mich/galois_theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/galois_theory.pdf -------------------------------------------------------------------------------- /ii/mich/galois_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/galois_theory.tex -------------------------------------------------------------------------------- /ii/mich/galois_theory_def.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/galois_theory_def.pdf -------------------------------------------------------------------------------- /ii/mich/galois_theory_def.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/galois_theory_def.tex -------------------------------------------------------------------------------- /ii/mich/galois_theory_thm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/galois_theory_thm.pdf -------------------------------------------------------------------------------- /ii/mich/galois_theory_thm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/galois_theory_thm.tex -------------------------------------------------------------------------------- /ii/mich/galois_theory_thp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/galois_theory_thp.pdf -------------------------------------------------------------------------------- /ii/mich/galois_theory_thp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/galois_theory_thp.tex -------------------------------------------------------------------------------- /ii/mich/graph_theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/graph_theory.pdf -------------------------------------------------------------------------------- /ii/mich/graph_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/graph_theory.tex -------------------------------------------------------------------------------- /ii/mich/graph_theory_def.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/graph_theory_def.pdf -------------------------------------------------------------------------------- /ii/mich/graph_theory_def.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/graph_theory_def.tex -------------------------------------------------------------------------------- /ii/mich/graph_theory_new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/graph_theory_new.pdf -------------------------------------------------------------------------------- /ii/mich/graph_theory_new.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/graph_theory_new.tex -------------------------------------------------------------------------------- /ii/mich/graph_theory_thm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/graph_theory_thm.pdf -------------------------------------------------------------------------------- /ii/mich/graph_theory_thm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/graph_theory_thm.tex -------------------------------------------------------------------------------- /ii/mich/graph_theory_thp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/graph_theory_thp.pdf -------------------------------------------------------------------------------- /ii/mich/graph_theory_thp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/graph_theory_thp.tex -------------------------------------------------------------------------------- /ii/mich/header.tex: -------------------------------------------------------------------------------- 1 | ../../header.tex -------------------------------------------------------------------------------- /ii/mich/hoffman_singleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/hoffman_singleton.png -------------------------------------------------------------------------------- /ii/mich/linear_analysis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/linear_analysis.pdf -------------------------------------------------------------------------------- /ii/mich/linear_analysis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/linear_analysis.tex -------------------------------------------------------------------------------- /ii/mich/number_theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/number_theory.pdf -------------------------------------------------------------------------------- /ii/mich/number_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/number_theory.tex -------------------------------------------------------------------------------- /ii/mich/probability_and_measure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/probability_and_measure.pdf -------------------------------------------------------------------------------- /ii/mich/probability_and_measure.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/probability_and_measure.tex -------------------------------------------------------------------------------- /ii/mich/riemann_surfaces.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/riemann_surfaces.pdf -------------------------------------------------------------------------------- /ii/mich/riemann_surfaces.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/riemann_surfaces.tex -------------------------------------------------------------------------------- /ii/mich/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/test.pdf -------------------------------------------------------------------------------- /ii/mich/test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/ii/mich/test.tex -------------------------------------------------------------------------------- /iii/lent/.latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/lent/.latexmkrc -------------------------------------------------------------------------------- /iii/lent/analytic_number_theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/lent/analytic_number_theory.pdf -------------------------------------------------------------------------------- /iii/lent/analytic_number_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/lent/analytic_number_theory.tex -------------------------------------------------------------------------------- /iii/lent/header.tex: -------------------------------------------------------------------------------- 1 | ../../header.tex -------------------------------------------------------------------------------- /iii/lent/introduction_to_approximate_groups.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/lent/introduction_to_approximate_groups.pdf -------------------------------------------------------------------------------- /iii/lent/introduction_to_approximate_groups.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/lent/introduction_to_approximate_groups.tex -------------------------------------------------------------------------------- /iii/lent/topics_in_set_theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/lent/topics_in_set_theory.pdf -------------------------------------------------------------------------------- /iii/lent/topics_in_set_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/lent/topics_in_set_theory.tex -------------------------------------------------------------------------------- /iii/mich/advanced_probability.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/advanced_probability.pdf -------------------------------------------------------------------------------- /iii/mich/advanced_probability.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/advanced_probability.tex -------------------------------------------------------------------------------- /iii/mich/algebraic_topology.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/algebraic_topology.pdf -------------------------------------------------------------------------------- /iii/mich/algebraic_topology.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/algebraic_topology.tex -------------------------------------------------------------------------------- /iii/mich/category_theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/category_theory.pdf -------------------------------------------------------------------------------- /iii/mich/category_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/category_theory.tex -------------------------------------------------------------------------------- /iii/mich/combinatorics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/combinatorics.pdf -------------------------------------------------------------------------------- /iii/mich/combinatorics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/combinatorics.tex -------------------------------------------------------------------------------- /iii/mich/header.tex: -------------------------------------------------------------------------------- 1 | ../../header.tex -------------------------------------------------------------------------------- /iii/mich/initial_algebras.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/initial_algebras.pdf -------------------------------------------------------------------------------- /iii/mich/initial_algebras.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/initial_algebras.tex -------------------------------------------------------------------------------- /iii/mich/initial_algebras_handout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/initial_algebras_handout.pdf -------------------------------------------------------------------------------- /iii/mich/introduction_to_discrete_analysis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/introduction_to_discrete_analysis.pdf -------------------------------------------------------------------------------- /iii/mich/introduction_to_discrete_analysis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/introduction_to_discrete_analysis.tex -------------------------------------------------------------------------------- /iii/mich/model_theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/model_theory.pdf -------------------------------------------------------------------------------- /iii/mich/model_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/model_theory.tex -------------------------------------------------------------------------------- /iii/mich/ramsey_theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/ramsey_theory.pdf -------------------------------------------------------------------------------- /iii/mich/ramsey_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/ramsey_theory.tex -------------------------------------------------------------------------------- /iii/mich/topics_in_ergodic_theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/topics_in_ergodic_theory.pdf -------------------------------------------------------------------------------- /iii/mich/topics_in_ergodic_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iii/mich/topics_in_ergodic_theory.tex -------------------------------------------------------------------------------- /iv/lent/connections_between_model_theory_and_combinatorics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iv/lent/connections_between_model_theory_and_combinatorics.pdf -------------------------------------------------------------------------------- /iv/lent/connections_between_model_theory_and_combinatorics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/iv/lent/connections_between_model_theory_and_combinatorics.tex -------------------------------------------------------------------------------- /iv/lent/header.tex: -------------------------------------------------------------------------------- 1 | ../../header.tex -------------------------------------------------------------------------------- /scripts/parse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/scripts/parse.hs -------------------------------------------------------------------------------- /scripts/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/scripts/process.py -------------------------------------------------------------------------------- /scripts/state_setter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/scripts/state_setter.sh -------------------------------------------------------------------------------- /scripts/warning.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-mehta/maths-notes/HEAD/scripts/warning.hs --------------------------------------------------------------------------------