├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── Cobb_and_Douglas.R ├── Misc.R ├── Nash_Equilibrium.R ├── growth_models_steady_states.R └── imperfect_competition.R ├── README.md ├── economics101.Rproj ├── man ├── MRW_steady_state.Rd ├── cobb_douglas.Rd ├── cobb_douglas_2.Rd ├── cournot_solver.Rd ├── grid2.Rd ├── monopoly_solver.Rd ├── sim_nasheq.Rd ├── solow_steady_state.Rd └── stackelberg_solver.Rd ├── teoria.log └── teoria.tex /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/Cobb_and_Douglas.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/R/Cobb_and_Douglas.R -------------------------------------------------------------------------------- /R/Misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/R/Misc.R -------------------------------------------------------------------------------- /R/Nash_Equilibrium.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/R/Nash_Equilibrium.R -------------------------------------------------------------------------------- /R/growth_models_steady_states.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/R/growth_models_steady_states.R -------------------------------------------------------------------------------- /R/imperfect_competition.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/R/imperfect_competition.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/README.md -------------------------------------------------------------------------------- /economics101.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/economics101.Rproj -------------------------------------------------------------------------------- /man/MRW_steady_state.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/man/MRW_steady_state.Rd -------------------------------------------------------------------------------- /man/cobb_douglas.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/man/cobb_douglas.Rd -------------------------------------------------------------------------------- /man/cobb_douglas_2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/man/cobb_douglas_2.Rd -------------------------------------------------------------------------------- /man/cournot_solver.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/man/cournot_solver.Rd -------------------------------------------------------------------------------- /man/grid2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/man/grid2.Rd -------------------------------------------------------------------------------- /man/monopoly_solver.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/man/monopoly_solver.Rd -------------------------------------------------------------------------------- /man/sim_nasheq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/man/sim_nasheq.Rd -------------------------------------------------------------------------------- /man/solow_steady_state.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/man/solow_steady_state.Rd -------------------------------------------------------------------------------- /man/stackelberg_solver.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/man/stackelberg_solver.Rd -------------------------------------------------------------------------------- /teoria.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/teoria.log -------------------------------------------------------------------------------- /teoria.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrocava/Recon/HEAD/teoria.tex --------------------------------------------------------------------------------