Foundations of Computational Economics
All Jupyter Notebooks for the lectures and practical lab sessions are available through GitHub, and can be launched on Binder.
1. Course introduction. Housekeeping
What is computational economics. Course structure and house keeping. Choice of programming language.
See static copy and download Jupyter Notebook on GitHub
2. Local workspace. Jupyter notebooks. Git and GitHub
Introduction of Git version control system. Local installation of Python, Anaconda, Jupyter Notebooks, Git and Git GUI. GitHub and GitHub Classroom.
See static copy and download Jupyter Notebook on GitHub
3. Representing numbers in a computer
Binary and hexadecimal numbers. Floating point numbers. Numerical stability and potential issues. Numerical noise.
See static copy and download Jupyter Notebook on GitHub
4. Python essentials: data types
Variables and memory, binary operations, logical expressions, composite variables types.
See static copy and download Jupyter Notebook on GitHub
5. Python essentials: control flow and functions
Flow control, user defined functions. Sieve of Eratosthenes example.
See static copy and download Jupyter Notebook on GitHub
6. Two simple examples
Indexing problem and its inverse, base-N number conversion
See static copy and download Jupyter Notebook on GitHub
7. Python essentials: object-oriented programming
Classes and objects. Attributes, properties. Encapsulation, inheritance and polymorphism.
See static copy and download Jupyter Notebook on GitHub
8. Bundle goods market
Object oriented programming in modeling consumer choice model.
See static copy and download Jupyter Notebook on GitHub
9. Algorithms and complexity
Timing of Python code. Runtime order of growth. Complexity classes. P vs NP.
See static copy and download Jupyter Notebook on GitHub
10. Two simple algorithms: parity and max
Parity of a number, bitwise operations in Python. Finding maximum in an array.
See static copy and download Jupyter Notebook on GitHub
11. Binary search algorithm
Binary search. Other divide and conquer algorithms. Recursion.
See static copy and download Jupyter Notebook on GitHub
12. Enumeration of discrete compositions
Combinatorial enumeration. Python generators.
See static copy and download Jupyter Notebook on GitHub
13. Two very important algorithms for solving equations
Bisections and Newton-Raphson methods. Solving equations of one variable. Accuracy of solution. Rates of convergence.
See static copy and download Jupyter Notebook on GitHub
14. Vectors and matrixes (Numpy)
NumPy arrays data types and differences to native Python, operations on the arrays, solving linear systems of equations.
See static copy and download Jupyter Notebook on GitHub
15. Introduction to Data Manipulation in Python (Pandas)
Introduction into DataFrames, grouping and data merging.
See static copy and download Jupyter Notebook on GitHub
16. Visualization of data and solutions
Principles and functions of graphics. Examples of visualization of economic models.
See static copy and download Jupyter Notebook on GitHub
17. Linear regression using Pandas and Numpy
Using Numpy and Pandas to estimate simple regression.
See static copy and download Jupyter Notebook on GitHub
18. Linear programming and optimal transport models
Linear programming and optimal transport problems.
See static copy and download Jupyter Notebook on GitHub
19. Measuring the volume of illegal trade with linear programming
Application of the optional transport problem.
See static copy and download Jupyter Notebook on GitHub
20. Finite Markov chains
Stochastic matrix, irreducibility and aperiodicity, stationary distribution.
See static copy and download Jupyter Notebook on GitHub
21. Computing a stationary distribution of a Markov chain
Successive approximations and direct linear solver.
See static copy and download Jupyter Notebook on GitHub
22. Successive approximations (fixed point iterations)
Scalar and multivariate solver. Equilibrium in market of platforms.
See static copy and download Jupyter Notebook on GitHub
23. More on Newton-Raphson method
Failures of Newton method, domain of attraction. Multivariate Newton for optimization problems.
See static copy and download Jupyter Notebook on GitHub
24. Optimization through discretization (grid search)
Grid search method and its use cases.
See static copy and download Jupyter Notebook on GitHub
25. Newton-Raphson method with bounds
Robust implementation of Newton method for problems with strict bounds.
See static copy and download Jupyter Notebook on GitHub
26. Polyline class for piecewise linear curve approximation
Precomputation of complex curves in the equilibrium model (coding from scratch).
See static copy and download Jupyter Notebook on GitHub
27. Dynamic programming in discrete world
Backwards induction. Tiling problem. Deal or no deal game. Bellman optimality principle. Inventory dynamics model.
See static copy and download Jupyter Notebook on GitHub
28. Rust model of bus engine replacement
Model background and formulation. Mileage process. Optimal replacement choice with and without EV taste shocks.
See static copy and download Jupyter Notebook on GitHub
29. Coding up the Rust model of bus engine replacement
Implementation of Rust model in infinite horizon with value function iterations solver
See static copy and download Jupyter Notebook on GitHub
30. Cake eating in discrete world
Cake eating problem setup. Solution “on the grid”.
See static copy and download Jupyter Notebook on GitHub
31. Function approximation in Python
How to approximate functions which are only defined on grid of points. Spline and polynomial interpolation.
See static copy and download Jupyter Notebook on GitHub
32. Cake eating model with discretized choice
Using function interpolation to solve cake eating problem with discretized choice.
See static copy and download Jupyter Notebook on GitHub
33. Random numbers in Python, Monte Carlo
Random number generation in Python. Inverse transform sampling. Monte Carlo simulations.
See static copy and download Jupyter Notebook on GitHub
34. Numerical integration, quadrature
Gaussian quadrature. Monte Carlo integration.
See static copy and download Jupyter Notebook on GitHub
35. Stochastic consumption-savings model with discretized choice
Deaton model of consumption and savings with random returns. Using quadrature to compute the expectation in the Bellman equation.
See static copy and download Jupyter Notebook on GitHub
36. Simulating data from the model
Random variables induced by the model. Coin flipping example. Simulating consumption and wealth paths from the consumption-savings model.
See static copy and download Jupyter Notebook on GitHub
37. Dynamic programming theory and overview of solution methods
Overview of dynamic programming problem formulations and solution methods. Theoretical foundations of dynamic programming in infinite horizon. Contraction mappings and fixed points.
See static copy and download Jupyter Notebook on GitHub
38. Dynamic programming with continuous choice
Optimization in Python. Consumption-savings model with continuous choice.
See static copy and download Jupyter Notebook on GitHub
39. Euler equation and time iterations
First order conditions and Euler equation. Time iterations solution method. Euler residuals for measuring the accuracy of solution for consumption-savings model.
See static copy and download Jupyter Notebook on GitHub
40. Consumption-savings model with continuous choice
Adding continuous version of Bellman operator and time iterations solver to the consumption-savings model. Measuring accuracy of different solutions.
See static copy and download Jupyter Notebook on GitHub
41. Endogenous gridpoint method (EGM)
Fastest and most accurate solution methods for consumption-savings model. Class of models solvable by EGM. Generalizations of EGM method.
See static copy and download Jupyter Notebook on GitHub
42. Solving consumption-savings model with EGM
Implementation of endogenous gridpoint method for solving Deaton’s consumption-savings model.
See static copy and download Jupyter Notebook on GitHub
43. Solving DP problems with policy iterations
Policy iterations solution method for infinite horizon dynamic models. Solving stochastic inventory management problem with policy iterations.
See static copy and download Jupyter Notebook on GitHub
44. Newton-Kantorovich method
Solving Bellman equation using Newton-Kantorovich iterations. Convergence rates. Polyalgorithm.
See static copy and download Jupyter Notebook on GitHub
45. Method of simulated moments for model estimation (MSM)
Using data to inform numerical economic models. Calibration and estimation of economic models. Introduction to method of simulated moments (MSM).
See static copy and download Jupyter Notebook on GitHub
46. Nested fixed point maximum likelihood estimator (NFXP)
Nested loop MLE estimator. Combining Newton-Kantorovich iterations with gradient based likelihood maximization. Structural estimation of Rust bus engine replacement model.
See static copy and download Jupyter Notebook on GitHub
47. Example exam questions
Examples of questions and answers in the exam.
See static copy and download Jupyter Notebook on GitHub