2023-10-23 13:33:35 +02:00
|
|
|
site_name: My notes
|
|
|
|
docs_dir: '../../docs/en'
|
|
|
|
|
|
|
|
theme:
|
|
|
|
name: material
|
|
|
|
features:
|
|
|
|
- navigation.instant
|
|
|
|
- navigation.tabs
|
2024-01-03 13:39:36 +01:00
|
|
|
- navigation.indexes
|
2023-10-23 13:33:35 +02:00
|
|
|
- toc.follow
|
|
|
|
palette:
|
2023-12-09 21:38:01 +01:00
|
|
|
- media: "(prefers-color-scheme: light)"
|
|
|
|
scheme: default
|
|
|
|
primary: white
|
|
|
|
accent: teal
|
|
|
|
toggle:
|
|
|
|
icon: material/brightness-7
|
|
|
|
name: Switch to dark mode
|
|
|
|
|
|
|
|
- media: "(prefers-color-scheme: dark)"
|
|
|
|
scheme: slate
|
2023-12-07 21:55:58 +01:00
|
|
|
primary: black
|
2023-10-23 13:33:35 +02:00
|
|
|
accent: teal
|
2023-12-09 21:38:01 +01:00
|
|
|
toggle:
|
|
|
|
icon: material/brightness-3
|
|
|
|
name: Switch to light mode
|
2023-10-23 13:33:35 +02:00
|
|
|
language: en
|
|
|
|
|
|
|
|
extra:
|
|
|
|
generator: false
|
|
|
|
alternate:
|
|
|
|
- name: English
|
|
|
|
link: /en/
|
|
|
|
lang: en
|
|
|
|
- name: Nederlands
|
|
|
|
link: /nl/
|
|
|
|
lang: nl
|
|
|
|
|
|
|
|
plugins:
|
|
|
|
- search:
|
2023-10-23 13:36:32 +02:00
|
|
|
lang: en
|
2023-10-23 13:33:35 +02:00
|
|
|
|
|
|
|
markdown_extensions:
|
|
|
|
- pymdownx.arithmatex:
|
|
|
|
generic: true
|
2023-11-22 10:19:50 +01:00
|
|
|
- pymdownx.critic
|
|
|
|
- pymdownx.caret
|
|
|
|
- pymdownx.keys
|
|
|
|
- pymdownx.mark
|
|
|
|
- pymdownx.tilde
|
|
|
|
- def_list
|
2023-12-02 13:46:27 +01:00
|
|
|
- admonition
|
|
|
|
- pymdownx.details
|
|
|
|
- pymdownx.superfences
|
2023-11-22 10:19:50 +01:00
|
|
|
|
2023-12-29 17:11:21 +01:00
|
|
|
extra_css:
|
|
|
|
- stylesheets/extra.css
|
|
|
|
|
2023-12-07 22:04:29 +01:00
|
|
|
extra_javascript:
|
|
|
|
- javascripts/mathjax.js
|
|
|
|
- https://polyfill.io/v3/polyfill.min.js?features=es6
|
|
|
|
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
|
|
|
|
|
2023-10-23 13:33:35 +02:00
|
|
|
nav:
|
|
|
|
- 'Welcome': index.md
|
|
|
|
- 'Mathematics':
|
2024-01-03 13:39:36 +01:00
|
|
|
- mathematics/index.md
|
2023-11-21 21:52:30 +01:00
|
|
|
- 'Logic': mathematics/logic.md
|
2023-12-02 13:39:20 +01:00
|
|
|
- 'Set theory':
|
|
|
|
- 'Sets': mathematics/set-theory/sets.md
|
2023-12-04 15:57:42 +01:00
|
|
|
- 'Relations': mathematics/set-theory/relations.md
|
2023-12-27 17:10:27 +01:00
|
|
|
- 'Maps': mathematics/set-theory/maps.md
|
2023-12-28 14:03:48 +01:00
|
|
|
- 'Permutations': mathematics/set-theory/permutations.md
|
2023-12-30 20:51:25 +01:00
|
|
|
- 'Orders': mathematics/set-theory/orders.md
|
2023-12-30 20:54:26 +01:00
|
|
|
- 'Recursion and induction': mathematics/set-theory/recursion-induction.md
|
2023-12-30 20:51:25 +01:00
|
|
|
- 'Cardinalities': mathematics/set-theory/cardinalities.md
|
|
|
|
- 'Additional axioms': mathematics/set-theory/additional-axioms.md
|
2024-01-03 13:18:38 +01:00
|
|
|
- 'Number theory':
|
|
|
|
- 'Integer arithmetic': mathematics/number-theory/integer-arithmetic.md
|
|
|
|
- 'Modular arithmetic': mathematics/number-theory/modular-arithmetic.md
|
|
|
|
- 'Complex numbers': mathematics/number-theory/complex-numbers.md
|
2024-01-06 14:13:20 +01:00
|
|
|
- 'Linear algebra':
|
|
|
|
- 'Systems of linear equations': mathematics/linear-algebra/systems-of-linear-equations.md
|
2024-01-06 21:22:26 +01:00
|
|
|
- 'Matrices':
|
|
|
|
- 'Matrix arithmetic': mathematics/linear-algebra/matrices/matrix-arithmetic.md
|
|
|
|
- 'Matrix algebra': mathematics/linear-algebra/matrices/matrix-algebra.md
|
2024-01-07 17:33:04 +01:00
|
|
|
- 'Elementary matrices': mathematics/linear-algebra/matrices/elementary-matrices.md
|
2024-01-09 20:38:44 +01:00
|
|
|
- 'Determinants': mathematics/linear-algebra/determinants.md
|
2024-02-04 20:32:39 +01:00
|
|
|
- 'Vector spaces': mathematics/linear-algebra/vector-spaces.md
|
2024-03-04 21:25:41 +01:00
|
|
|
- 'Linear transformations': mathematics/linear-algebra/linear-transformations.md
|
2024-03-29 23:31:49 +01:00
|
|
|
- 'Orthogonality': mathematics/linear-algebra/orthogonality.md
|
|
|
|
- 'Diagonalization': mathematics/linear-algebra/diagonalization.md
|
2023-10-23 16:32:39 +02:00
|
|
|
- 'Calculus':
|
|
|
|
- 'Limits': mathematics/calculus/limits.md
|
|
|
|
- 'Continuity': mathematics/calculus/continuity.md
|
|
|
|
- 'Differentation': mathematics/calculus/differentation.md
|
|
|
|
- 'Transcendental functions':
|
|
|
|
- 'Inverse functions': mathematics/calculus/transcendental-functions/inverse-functions.md
|
|
|
|
- 'Exponential and logarithmic functions': mathematics/calculus/transcendental-functions/exponential-and-logarithmic-functions.md
|
|
|
|
- 'Extremes values': mathematics/calculus/extremes-values.md
|
|
|
|
- 'Concavity and inflections': mathematics/calculus/concavity-and-inflections.md
|
|
|
|
- 'Taylor polynomials': mathematics/calculus/taylor-polynomials.md
|
2023-11-15 19:44:38 +01:00
|
|
|
- 'Integration': mathematics/calculus/integration.md
|
2023-10-23 16:32:39 +02:00
|
|
|
- 'Integration techniques': mathematics/calculus/integration-techniques.md
|
|
|
|
- 'Improper integrals': mathematics/calculus/improper-integrals.md
|
2023-10-29 20:02:37 +01:00
|
|
|
- 'Multivariable calculus':
|
|
|
|
- 'Functions of several variables': mathematics/multivariable-calculus/functions-of-several-variables.md
|
|
|
|
- 'Limits and continuity': mathematics/multivariable-calculus/limits-and-continuity.md
|
|
|
|
- 'Differentation': mathematics/multivariable-calculus/differentation.md
|
|
|
|
- 'Implicit equations': mathematics/multivariable-calculus/implicit-equations.md
|
|
|
|
- 'Taylor polynomials': mathematics/multivariable-calculus/taylor-polynomials.md
|
|
|
|
- 'Extrema': mathematics/multivariable-calculus/extrema.md
|
|
|
|
- 'Integration': mathematics/multivariable-calculus/integration.md
|
2023-10-23 16:32:39 +02:00
|
|
|
- 'Ordinary differential equations':
|
|
|
|
- 'First order differential equations': mathematics/ordinary-differential-equations/first-order-ode.md
|
|
|
|
- 'Second order differential equations': mathematics/ordinary-differential-equations/second-order-ode.md
|
|
|
|
- 'Systems of linear differential equations': mathematics/ordinary-differential-equations/systems-of-linear-ode.md
|
2023-10-25 22:27:17 +02:00
|
|
|
- 'The Laplace transform': mathematics/ordinary-differential-equations/laplace-transform.md
|
2024-01-19 13:34:20 +01:00
|
|
|
|
|
|
|
- 'Physics':
|
|
|
|
- physics/index.md
|
2024-03-31 18:45:32 +02:00
|
|
|
- 'Mechanics':
|
|
|
|
- 'Newtonian mechanics':
|
|
|
|
- 'Newtonian formalism': physics/mechanics/newtonian-mechanics/newtonian-formalism.md
|
2024-03-29 23:31:49 +01:00
|
|
|
# - 'Lagrangian mechanics':
|
|
|
|
# - 'Hamiltonian mechanics':
|
|
|
|
# - 'Relativistic mechanics':
|
2024-03-31 18:45:32 +02:00
|
|
|
# - 'Quantum mechanics':
|
2024-01-23 20:41:59 +01:00
|
|
|
- 'Electromagnetism':
|
|
|
|
# - 'Electrostatics':
|
|
|
|
# - 'Magnetostatics':
|
|
|
|
- 'Maxwell-equations': physics/electromagnetism/maxwell-equations.md
|
2024-03-31 18:45:32 +02:00
|
|
|
# - 'Electrodynamics':
|
2024-01-23 20:41:59 +01:00
|
|
|
- 'Optics':
|
|
|
|
- 'Waves': physics/electromagnetism/optics/waves.md
|
|
|
|
- 'Electromagnetic waves': physics/electromagnetism/optics/electromagnetic-waves.md
|
|
|
|
- 'Reflection and refraction': physics/electromagnetism/optics/reflection-and-refraction.md
|
|
|
|
- 'Geometric optics': physics/electromagnetism/optics/geometric-optics.md
|
|
|
|
- 'Interference': physics/electromagnetism/optics/interference.md
|
|
|
|
- 'Diffraction': physics/electromagnetism/optics/diffraction.md
|
2024-01-24 18:00:25 +01:00
|
|
|
- 'Polarisation': physics/electromagnetism/optics/polarisation.md
|
2024-03-29 23:31:49 +01:00
|
|
|
# - 'Statistical physics':
|
2024-01-19 13:26:24 +01:00
|
|
|
- 'Mathematical physics':
|
|
|
|
- 'Signal analysis':
|
2024-01-19 19:55:03 +01:00
|
|
|
- 'Signals': physics/mathematical-physics/signal-analysis/signals.md
|
2024-01-20 14:22:15 +01:00
|
|
|
- 'Fourier series': physics/mathematical-physics/signal-analysis/fourier-series.md
|
|
|
|
- 'Fourier transform': physics/mathematical-physics/signal-analysis/fourier-transform.md
|
2024-01-21 19:56:36 +01:00
|
|
|
- 'Discrete Fourier transform': physics/mathematical-physics/signal-analysis/discrete-fourier-transform.md
|
|
|
|
- 'Amplitude modulation': physics/mathematical-physics/signal-analysis/amplitude-modulation.md
|
|
|
|
- 'Signal filters': physics/mathematical-physics/signal-analysis/signal-filters.md
|
|
|
|
- 'Systems': physics/mathematical-physics/signal-analysis/systems.md
|
2024-01-23 16:57:31 +01:00
|
|
|
- 'Vector analysis':
|
|
|
|
- 'Vectors': physics/mathematical-physics/vector-analysis/vectors.md
|
|
|
|
- 'Curves': physics/mathematical-physics/vector-analysis/curves.md
|
|
|
|
- 'Curvilinear coordinates': physics/mathematical-physics/vector-analysis/curvilinear-coordinates.md
|
|
|
|
- 'Divergence': physics/mathematical-physics/vector-analysis/divergence.md
|
|
|
|
- 'Gradient': physics/mathematical-physics/vector-analysis/gradient.md
|
|
|
|
- 'Curl': physics/mathematical-physics/vector-analysis/curl.md
|
|
|
|
- 'Vector operators': physics/mathematical-physics/vector-analysis/vector-operators.md
|
2023-10-23 13:33:35 +02:00
|
|
|
|
|
|
|
- 'Chemistry':
|
2024-01-03 13:39:36 +01:00
|
|
|
- chemistry/index.md
|
2023-10-23 13:33:35 +02:00
|
|
|
|
|
|
|
- 'Philosophy':
|
2024-01-03 13:39:36 +01:00
|
|
|
- philosophy/index.md
|
2023-10-23 13:33:35 +02:00
|
|
|
|
|
|
|
- 'Programming':
|
2024-01-03 13:39:36 +01:00
|
|
|
- programming/index.md
|