├── .gitignore ├── IB ├── analysis_ii.tex ├── complex_analysis.tex ├── complex_methods.tex ├── geometry.tex ├── groups_rings_and_modules.tex ├── header.tex ├── linear_algebra.tex ├── markov_chains.tex ├── methods.tex ├── metric_and_topological_spaces.tex ├── numerical_analysis.tex ├── optimisation.tex ├── qm_summary.tex ├── quantum_mechanics.tex └── titlepage.tex ├── II ├── algebraic_geometry.tex ├── algebraic_topology.tex ├── automata.tex ├── differential_geometry_ii.tex ├── dynamical_systems.tex ├── galois_theory.tex ├── graph_theory.tex ├── header.tex ├── integrable_systems.tex ├── linear_analysis.tex ├── logic_and_set_theory.tex ├── number_fields.tex ├── number_theory.tex ├── probability_and_measure.tex ├── representation_theory.tex ├── riemann_surfaces.tex └── titlepage.tex ├── III ├── 3-manifolds.tex ├── algebra.tex ├── algebraic_geometry_iii.tex ├── algebraic_number_theory.tex ├── algebraic_topology_iii.tex ├── analytic_number_theory.tex ├── category_theory.tex ├── combinatorics.tex ├── complex_dynamics.tex ├── complex_manifolds.tex ├── cubic_hypersurfaces.tex ├── differential_geometry_iii.tex ├── elliptic_curves.tex ├── figures │ ├── chain_homotopy.pdf_tex │ ├── chain_homotopy.svg │ ├── fan_P1.pdf_tex │ ├── fan_P1.svg │ ├── fan_P1P1.pdf_tex │ ├── fan_P1P1.svg │ ├── fan_P2.pdf_tex │ ├── fan_P2.svg │ ├── singular1_on_S1.pdf_tex │ ├── singular1_on_S1.svg │ ├── singular2_on_S1.pdf_tex │ ├── singular2_on_S1.svg │ ├── surface.pdf_tex │ └── surface.svg ├── header.tex ├── introduction_to_approximate_groups.tex ├── lie_algebras_and_their_representations.tex ├── mapping_class_groups.tex ├── profinite_groups.tex ├── symplectic_topology.tex ├── titlepage.tex └── toric_geometry.tex ├── IV ├── geometric_aspects_of_p-adic_hodge_theory.tex ├── geometric_group_theory.tex ├── header.tex ├── non-archimedean_geometry.tex ├── perfectoid_spaces.tex └── titlepage.tex ├── LICENSE.txt ├── README.md ├── blurb ├── cayley-hamilton.tex ├── compactness_in_metric_spaces.tex ├── df-field_theory.tex ├── df-galois_theory.tex ├── differentiable_limit.tex ├── header.tex ├── lawvere.tex ├── limit_points.tex ├── quadratic_fields.tex └── trace_and_determinant_coordinate_free.tex ├── header.tex └── titlepage.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/.gitignore -------------------------------------------------------------------------------- /IB/analysis_ii.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IB/analysis_ii.tex -------------------------------------------------------------------------------- /IB/complex_analysis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IB/complex_analysis.tex -------------------------------------------------------------------------------- /IB/complex_methods.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IB/complex_methods.tex -------------------------------------------------------------------------------- /IB/geometry.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IB/geometry.tex -------------------------------------------------------------------------------- /IB/groups_rings_and_modules.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IB/groups_rings_and_modules.tex -------------------------------------------------------------------------------- /IB/header.tex: -------------------------------------------------------------------------------- 1 | ../header.tex -------------------------------------------------------------------------------- /IB/linear_algebra.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IB/linear_algebra.tex -------------------------------------------------------------------------------- /IB/markov_chains.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IB/markov_chains.tex -------------------------------------------------------------------------------- /IB/methods.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IB/methods.tex -------------------------------------------------------------------------------- /IB/metric_and_topological_spaces.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IB/metric_and_topological_spaces.tex -------------------------------------------------------------------------------- /IB/numerical_analysis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IB/numerical_analysis.tex -------------------------------------------------------------------------------- /IB/optimisation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IB/optimisation.tex -------------------------------------------------------------------------------- /IB/qm_summary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IB/qm_summary.tex -------------------------------------------------------------------------------- /IB/quantum_mechanics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IB/quantum_mechanics.tex -------------------------------------------------------------------------------- /IB/titlepage.tex: -------------------------------------------------------------------------------- 1 | ../titlepage.tex -------------------------------------------------------------------------------- /II/algebraic_geometry.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/algebraic_geometry.tex -------------------------------------------------------------------------------- /II/algebraic_topology.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/algebraic_topology.tex -------------------------------------------------------------------------------- /II/automata.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/automata.tex -------------------------------------------------------------------------------- /II/differential_geometry_ii.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/differential_geometry_ii.tex -------------------------------------------------------------------------------- /II/dynamical_systems.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/dynamical_systems.tex -------------------------------------------------------------------------------- /II/galois_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/galois_theory.tex -------------------------------------------------------------------------------- /II/graph_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/graph_theory.tex -------------------------------------------------------------------------------- /II/header.tex: -------------------------------------------------------------------------------- 1 | ../header.tex -------------------------------------------------------------------------------- /II/integrable_systems.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/integrable_systems.tex -------------------------------------------------------------------------------- /II/linear_analysis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/linear_analysis.tex -------------------------------------------------------------------------------- /II/logic_and_set_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/logic_and_set_theory.tex -------------------------------------------------------------------------------- /II/number_fields.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/number_fields.tex -------------------------------------------------------------------------------- /II/number_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/number_theory.tex -------------------------------------------------------------------------------- /II/probability_and_measure.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/probability_and_measure.tex -------------------------------------------------------------------------------- /II/representation_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/representation_theory.tex -------------------------------------------------------------------------------- /II/riemann_surfaces.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/II/riemann_surfaces.tex -------------------------------------------------------------------------------- /II/titlepage.tex: -------------------------------------------------------------------------------- 1 | ../titlepage.tex -------------------------------------------------------------------------------- /III/3-manifolds.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/3-manifolds.tex -------------------------------------------------------------------------------- /III/algebra.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/algebra.tex -------------------------------------------------------------------------------- /III/algebraic_geometry_iii.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/algebraic_geometry_iii.tex -------------------------------------------------------------------------------- /III/algebraic_number_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/algebraic_number_theory.tex -------------------------------------------------------------------------------- /III/algebraic_topology_iii.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/algebraic_topology_iii.tex -------------------------------------------------------------------------------- /III/analytic_number_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/analytic_number_theory.tex -------------------------------------------------------------------------------- /III/category_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/category_theory.tex -------------------------------------------------------------------------------- /III/combinatorics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/combinatorics.tex -------------------------------------------------------------------------------- /III/complex_dynamics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/complex_dynamics.tex -------------------------------------------------------------------------------- /III/complex_manifolds.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/complex_manifolds.tex -------------------------------------------------------------------------------- /III/cubic_hypersurfaces.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/cubic_hypersurfaces.tex -------------------------------------------------------------------------------- /III/differential_geometry_iii.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/differential_geometry_iii.tex -------------------------------------------------------------------------------- /III/elliptic_curves.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/elliptic_curves.tex -------------------------------------------------------------------------------- /III/figures/chain_homotopy.pdf_tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/figures/chain_homotopy.pdf_tex -------------------------------------------------------------------------------- /III/figures/chain_homotopy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/figures/chain_homotopy.svg -------------------------------------------------------------------------------- /III/figures/fan_P1.pdf_tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/figures/fan_P1.pdf_tex -------------------------------------------------------------------------------- /III/figures/fan_P1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/figures/fan_P1.svg -------------------------------------------------------------------------------- /III/figures/fan_P1P1.pdf_tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/figures/fan_P1P1.pdf_tex -------------------------------------------------------------------------------- /III/figures/fan_P1P1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/figures/fan_P1P1.svg -------------------------------------------------------------------------------- /III/figures/fan_P2.pdf_tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/figures/fan_P2.pdf_tex -------------------------------------------------------------------------------- /III/figures/fan_P2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/figures/fan_P2.svg -------------------------------------------------------------------------------- /III/figures/singular1_on_S1.pdf_tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/figures/singular1_on_S1.pdf_tex -------------------------------------------------------------------------------- /III/figures/singular1_on_S1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/figures/singular1_on_S1.svg -------------------------------------------------------------------------------- /III/figures/singular2_on_S1.pdf_tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/figures/singular2_on_S1.pdf_tex -------------------------------------------------------------------------------- /III/figures/singular2_on_S1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/figures/singular2_on_S1.svg -------------------------------------------------------------------------------- /III/figures/surface.pdf_tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/figures/surface.pdf_tex -------------------------------------------------------------------------------- /III/figures/surface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/figures/surface.svg -------------------------------------------------------------------------------- /III/header.tex: -------------------------------------------------------------------------------- 1 | ../header.tex -------------------------------------------------------------------------------- /III/introduction_to_approximate_groups.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/introduction_to_approximate_groups.tex -------------------------------------------------------------------------------- /III/lie_algebras_and_their_representations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/lie_algebras_and_their_representations.tex -------------------------------------------------------------------------------- /III/mapping_class_groups.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/mapping_class_groups.tex -------------------------------------------------------------------------------- /III/profinite_groups.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/profinite_groups.tex -------------------------------------------------------------------------------- /III/symplectic_topology.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/symplectic_topology.tex -------------------------------------------------------------------------------- /III/titlepage.tex: -------------------------------------------------------------------------------- 1 | ../titlepage.tex -------------------------------------------------------------------------------- /III/toric_geometry.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/III/toric_geometry.tex -------------------------------------------------------------------------------- /IV/geometric_aspects_of_p-adic_hodge_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IV/geometric_aspects_of_p-adic_hodge_theory.tex -------------------------------------------------------------------------------- /IV/geometric_group_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IV/geometric_group_theory.tex -------------------------------------------------------------------------------- /IV/header.tex: -------------------------------------------------------------------------------- 1 | ../header.tex -------------------------------------------------------------------------------- /IV/non-archimedean_geometry.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IV/non-archimedean_geometry.tex -------------------------------------------------------------------------------- /IV/perfectoid_spaces.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/IV/perfectoid_spaces.tex -------------------------------------------------------------------------------- /IV/titlepage.tex: -------------------------------------------------------------------------------- 1 | ../titlepage.tex -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/README.md -------------------------------------------------------------------------------- /blurb/cayley-hamilton.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/blurb/cayley-hamilton.tex -------------------------------------------------------------------------------- /blurb/compactness_in_metric_spaces.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/blurb/compactness_in_metric_spaces.tex -------------------------------------------------------------------------------- /blurb/df-field_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/blurb/df-field_theory.tex -------------------------------------------------------------------------------- /blurb/df-galois_theory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/blurb/df-galois_theory.tex -------------------------------------------------------------------------------- /blurb/differentiable_limit.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/blurb/differentiable_limit.tex -------------------------------------------------------------------------------- /blurb/header.tex: -------------------------------------------------------------------------------- 1 | ../header.tex -------------------------------------------------------------------------------- /blurb/lawvere.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/blurb/lawvere.tex -------------------------------------------------------------------------------- /blurb/limit_points.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/blurb/limit_points.tex -------------------------------------------------------------------------------- /blurb/quadratic_fields.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/blurb/quadratic_fields.tex -------------------------------------------------------------------------------- /blurb/trace_and_determinant_coordinate_free.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/blurb/trace_and_determinant_coordinate_free.tex -------------------------------------------------------------------------------- /header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/header.tex -------------------------------------------------------------------------------- /titlepage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Name-Kompsky/tripos/HEAD/titlepage.tex --------------------------------------------------------------------------------