├── .gitignore ├── DifferentialEquations ├── Sections │ ├── auto │ │ ├── estabilidad.el │ │ └── solucion_general.el │ ├── estabilidad.tex │ └── solucion_general.tex ├── auto │ ├── df2.el │ ├── df2.tex.el │ ├── estabilidad.el │ └── solucion_general.el ├── df2.pdf ├── df2.tex ├── df2.tex.tex ├── df2.tex~ ├── images │ ├── fases-elip.png │ ├── fases-espiral+.png │ ├── fases-espiral-.png │ ├── fases-neg-eq.png │ ├── fases-neg-neg.png │ ├── fases-neg-pos.png │ ├── fases-pols.png │ └── fases-pos-pos.png └── ltximg │ └── org-ltximg_be81ffbd275edbdb93b31826868534c75f71bd5d.png ├── LICENSE ├── MathematicalsModels ├── auto │ └── mm2.el ├── mm2.pdf └── mm2.tex ├── README.md └── StatisticalInference ├── Sections ├── Bayesiana.tex ├── Estimacion.tex ├── Exponencial.tex ├── Familias.tex ├── Hipotesis.tex └── Intro.tex ├── inference-figure0.dpth ├── inference-figure0.md5 ├── inference-figure0.pdf ├── inference-figure1.dpth ├── inference-figure1.md5 ├── inference-figure1.pdf ├── inference-figure2.dpth ├── inference-figure2.md5 ├── inference-figure2.pdf ├── inference-figure3.dpth ├── inference-figure3.md5 ├── inference-figure3.pdf ├── inference-figure4.dpth ├── inference-figure4.md5 ├── inference-figure4.pdf ├── inference-figure5.dpth ├── inference-figure5.md5 ├── inference-figure5.pdf ├── inference-figure6.dpth ├── inference-figure6.md5 ├── inference-figure6.pdf ├── inference-figure7.dpth ├── inference-figure7.md5 ├── inference-figure7.pdf ├── inference-figure8.dpth ├── inference-figure8.md5 ├── inference-figure8.pdf ├── inference.aux ├── inference.fdb_latexmk ├── inference.fls ├── inference.log ├── inference.out ├── inference.pdf ├── inference.synctex.gz ├── inference.tex ├── inference.toc ├── mathematics.sty └── title1.sty /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/.gitignore -------------------------------------------------------------------------------- /DifferentialEquations/Sections/auto/estabilidad.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/Sections/auto/estabilidad.el -------------------------------------------------------------------------------- /DifferentialEquations/Sections/auto/solucion_general.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/Sections/auto/solucion_general.el -------------------------------------------------------------------------------- /DifferentialEquations/Sections/estabilidad.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/Sections/estabilidad.tex -------------------------------------------------------------------------------- /DifferentialEquations/Sections/solucion_general.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/Sections/solucion_general.tex -------------------------------------------------------------------------------- /DifferentialEquations/auto/df2.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/auto/df2.el -------------------------------------------------------------------------------- /DifferentialEquations/auto/df2.tex.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/auto/df2.tex.el -------------------------------------------------------------------------------- /DifferentialEquations/auto/estabilidad.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/auto/estabilidad.el -------------------------------------------------------------------------------- /DifferentialEquations/auto/solucion_general.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/auto/solucion_general.el -------------------------------------------------------------------------------- /DifferentialEquations/df2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/df2.pdf -------------------------------------------------------------------------------- /DifferentialEquations/df2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/df2.tex -------------------------------------------------------------------------------- /DifferentialEquations/df2.tex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/df2.tex.tex -------------------------------------------------------------------------------- /DifferentialEquations/df2.tex~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/df2.tex~ -------------------------------------------------------------------------------- /DifferentialEquations/images/fases-elip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/images/fases-elip.png -------------------------------------------------------------------------------- /DifferentialEquations/images/fases-espiral+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/images/fases-espiral+.png -------------------------------------------------------------------------------- /DifferentialEquations/images/fases-espiral-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/images/fases-espiral-.png -------------------------------------------------------------------------------- /DifferentialEquations/images/fases-neg-eq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/images/fases-neg-eq.png -------------------------------------------------------------------------------- /DifferentialEquations/images/fases-neg-neg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/images/fases-neg-neg.png -------------------------------------------------------------------------------- /DifferentialEquations/images/fases-neg-pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/images/fases-neg-pos.png -------------------------------------------------------------------------------- /DifferentialEquations/images/fases-pols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/images/fases-pols.png -------------------------------------------------------------------------------- /DifferentialEquations/images/fases-pos-pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/images/fases-pos-pos.png -------------------------------------------------------------------------------- /DifferentialEquations/ltximg/org-ltximg_be81ffbd275edbdb93b31826868534c75f71bd5d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/DifferentialEquations/ltximg/org-ltximg_be81ffbd275edbdb93b31826868534c75f71bd5d.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/LICENSE -------------------------------------------------------------------------------- /MathematicalsModels/auto/mm2.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/MathematicalsModels/auto/mm2.el -------------------------------------------------------------------------------- /MathematicalsModels/mm2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/MathematicalsModels/mm2.pdf -------------------------------------------------------------------------------- /MathematicalsModels/mm2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/MathematicalsModels/mm2.tex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/README.md -------------------------------------------------------------------------------- /StatisticalInference/Sections/Bayesiana.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/Sections/Bayesiana.tex -------------------------------------------------------------------------------- /StatisticalInference/Sections/Estimacion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/Sections/Estimacion.tex -------------------------------------------------------------------------------- /StatisticalInference/Sections/Exponencial.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/Sections/Exponencial.tex -------------------------------------------------------------------------------- /StatisticalInference/Sections/Familias.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/Sections/Familias.tex -------------------------------------------------------------------------------- /StatisticalInference/Sections/Hipotesis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/Sections/Hipotesis.tex -------------------------------------------------------------------------------- /StatisticalInference/Sections/Intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/Sections/Intro.tex -------------------------------------------------------------------------------- /StatisticalInference/inference-figure0.dpth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure0.md5: -------------------------------------------------------------------------------- 1 | \def \tikzexternallastkey {56CF70F39935C2AD61D6DDF112B623EA}% 2 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference-figure0.pdf -------------------------------------------------------------------------------- /StatisticalInference/inference-figure1.dpth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure1.md5: -------------------------------------------------------------------------------- 1 | \def \tikzexternallastkey {D99D0AD25E1004217B3ADC4777D2869C}% 2 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference-figure1.pdf -------------------------------------------------------------------------------- /StatisticalInference/inference-figure2.dpth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure2.md5: -------------------------------------------------------------------------------- 1 | \def \tikzexternallastkey {B8294EAFF970759426B41976CFFD304B}% 2 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference-figure2.pdf -------------------------------------------------------------------------------- /StatisticalInference/inference-figure3.dpth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure3.md5: -------------------------------------------------------------------------------- 1 | \def \tikzexternallastkey {7D0D99DA0EB523C8E20792DB2F2AEDC5}% 2 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference-figure3.pdf -------------------------------------------------------------------------------- /StatisticalInference/inference-figure4.dpth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure4.md5: -------------------------------------------------------------------------------- 1 | \def \tikzexternallastkey {550C4A3F3621095322B87E4EFC1DD16E}% 2 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference-figure4.pdf -------------------------------------------------------------------------------- /StatisticalInference/inference-figure5.dpth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure5.md5: -------------------------------------------------------------------------------- 1 | \def \tikzexternallastkey {FCEE0F205C8AE5EA23EBBBFA94122DE8}% 2 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference-figure5.pdf -------------------------------------------------------------------------------- /StatisticalInference/inference-figure6.dpth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure6.md5: -------------------------------------------------------------------------------- 1 | \def \tikzexternallastkey {C5DEEBAB2E5C80FBA2BE0F68471623FF}% 2 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference-figure6.pdf -------------------------------------------------------------------------------- /StatisticalInference/inference-figure7.dpth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure7.md5: -------------------------------------------------------------------------------- 1 | \def \tikzexternallastkey {B225C15FAF6350B31BBE5C71FAC59606}% 2 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference-figure7.pdf -------------------------------------------------------------------------------- /StatisticalInference/inference-figure8.dpth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure8.md5: -------------------------------------------------------------------------------- 1 | \def \tikzexternallastkey {354C6184591F83B3806F655BF3B9D33B}% 2 | -------------------------------------------------------------------------------- /StatisticalInference/inference-figure8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference-figure8.pdf -------------------------------------------------------------------------------- /StatisticalInference/inference.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference.aux -------------------------------------------------------------------------------- /StatisticalInference/inference.fdb_latexmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference.fdb_latexmk -------------------------------------------------------------------------------- /StatisticalInference/inference.fls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference.fls -------------------------------------------------------------------------------- /StatisticalInference/inference.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference.log -------------------------------------------------------------------------------- /StatisticalInference/inference.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference.out -------------------------------------------------------------------------------- /StatisticalInference/inference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference.pdf -------------------------------------------------------------------------------- /StatisticalInference/inference.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference.synctex.gz -------------------------------------------------------------------------------- /StatisticalInference/inference.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference.tex -------------------------------------------------------------------------------- /StatisticalInference/inference.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/inference.toc -------------------------------------------------------------------------------- /StatisticalInference/mathematics.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/mathematics.sty -------------------------------------------------------------------------------- /StatisticalInference/title1.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreshp/math-notes/HEAD/StatisticalInference/title1.sty --------------------------------------------------------------------------------