{ "metadata": { "name": "" }, "nbformat": 3, "nbformat_minor": 0, "worksheets": [ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "__TL;DR__\n", "\n", "* Income and money are separate concepts. Money is a stock, income is a flow (measured per unit of time)\n", "* Income is identically equal to spending, since these flows form two sides of every transaction\n", "* Total income over some time period is generated by a given stock of money circulating at a certain rate (termed the \"velocity of money\")\n", "* In an economy with a fixed money supply and wherein all income is spent, total income is constant over time " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Whole economies are (obviously, very) complex. They involve the aggregate economic decisions and actions of individuals, businesses, banks and governments. They include concepts such as money, prices (or inflation), government spending and taxation, public and/or private debt together with interest rates, as well as trade with other economies. Each of these may be of interest in their own right but their effect on overall income levels (and therefore living standards) might also be of primary interest. Ultimately, a sufficiently detailed model might seek to represent each of these concepts (and more). But understanding such complexity is easiest when it is broken down into simpler units. Therefore, we'd better pick a simple starting point and try to build up the complexity incrementally." ] }, { "cell_type": "heading", "level": 2, "metadata": { "slideshow": { "slide_type": "-" } }, "source": [ "A very simple economy" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "So, what is the simplest model of a monetary economy that can be conceived? What definitely needs to be represented, and what could potentially be left out? Here, we'll attempt to omit as much as possible. We'll assume no government, businesses or banks exist. We'll also assume that nobody is interested in saving or trading with external economies. Instead all that happens is that citizens trade with each other. And we'll assume that there is a fixed amount of money in existence. What can we learn from such an economy?.\n", "\n", "Okay, so we have some money. We don't know where it came from. Perhaps the money is gold or some other precious metal. Someone discovered it at some point and made it into coins. In any case, it doesn't matter for our purposes. We simply assume it exists and is distributed across the population in some fashion. \n", "\n", "What happens with this money? Well, in this scenario, we're going for something incredibly simple. We're going to assume that people simply spend all of their income by buying things from their peers. In contrast to other possible ways of using money (that will be introduced in later models), we can call this form of spending *consumption*. So all our citizens use their money for is *consuming* goods and services. \n", "\n", "We can formalise this by using some algebra. Let's identify consumption with the label $C$, and income as $Y$. Now we can make a mathematical statement about consumption in our economy:\n", "\n", "$$C = Y \\hspace{1cm} (1)$$\n", "\n", "This is our first [*consumption function*](https://en.wikipedia.org/wiki/Consumption_function) - a mathematical expression describing the spending behaviour of our citizens. This expression could be more complicated if we wanted to describe more sophisticated behaviour, but for now they simply spend whatever their income is, and therefore consumption is exactly equal to income. Equation (1) could be thought of as describing the spending behaviour of an individual (*average*) citizen. But the intention is really to represent the *aggregate* spending decisions of everybody together. Total consumption in the economy is equal to total income in the economy.\n", "\n", "We can't really proceed with equation (1) on its own as it has two unknown quantities, $C$ and $Y$. We need one more equation to fully specify our economy. In general we need the same number of equations as unknown quantities, and in particular we need to know something about income ($Y$) if equation (1) is to be of any use. This is where we need to use a bit of thought. Lets imagine that we spend \u00a310 on something. We can immediately make at least one logical deduction about the wider effect of that spending on the economy: *someone else just gained an income of \u00a310*. This is true by virtue of the simple and obvious fact that spending is a two-way street, involving a buyer and seller, a spender and an earner. No transaction involves one person alone. In general, whenever there is an act of spending, we know that an equal amount of income has been generated in the economy, for someone, somewhere. And when many separate transactions occur over the whole economy, the total amount of income will be equal to the total amount spent.\n", "\n", "We've already defined algebraic terms for spending ($C$) and income ($Y$), so let's write down what we've just logically derived:\n", "\n", "$$Y = C \\hspace{1cm} (2)$$\n", "\n", "Total income is equal to total spending. The total income of an economy is more or less synomymous with the [Gross Domestic Product (GDP)](https://en.wikipedia.org/wiki/Measures_of_national_income_and_output#Expenditure). \n", "\n", "There. We now have two equations and two unknowns, so our economy is completely specified. There's a certain symmetry to these equations (to understate it considerably), and it might be straighforward to see what will (or rather, what won't) happen in this simple economy without resorting to a computer simulation. But we'll do it anyway as it will form the basis for the more interesting models that will follow." ] }, { "cell_type": "heading", "level": 2, "metadata": {}, "source": [ "A model in Python" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We want to create a model that represents the evolution of our economy through time. We'll step through time, simulate any flows of money which are impied by our rules above, and see where it takes us. We're going to deal with with discrete timesteps and so we need to define how spending occurs *across time periods*. Given the justification given above we'll say that income is earned concurrently with spending, i.e. in the same timestep - when spending occurs, income is earned. Mathematically, we can state this by writing *difference equations* which use subscripts to denote the time period under consideration $t$:\n", "\n", "$$Y_t = C_t$$\n", "\n", "So the income in, say, the 5th time period, $Y_5$, would be, according to the equation above, equal to the spending in that same time period, $C_5$. Next we'll say that citizens in our economy spend their income in the *next* time step, that is, *after* their income is earned in the current time step. Therefore, we can relate spending in *one* time period is equal to the income earned in the *previous* one:\n", "\n", "$$C_t = Y_{t-1}$$\n", "\n", "The spending in the 5th time period, $C_5$, would be equal to the income earned in the 4th time period, $Y_4$.\n", "\n", "So now we have difference equations which relate spending and income and time. The only other thing we need in this model is to state what spending occurs in the first time step. Without this, the model would never get going, since spending is dependent on the income of a previous time step. This type of information is usually termed an *initial condition*. Let's go with 100, so:\n", "\n", "$$C_0 = 100$$\n", "\n", "and therefore, by accounting identity:\n", "\n", "$$Y_0 = 100$$\n", "\n", "Okay, we've got our equations and out initial condition. Let's code something. We're going to use the Python libraries numpy and matplotlib, so we import them first. numpy might be a little overkill for our purposes here but we'll get used to it now as it might be useful in more complex models. matplotlib will allow us to produce graphs of our model solution." ] }, { "cell_type": "code", "collapsed": false, "input": [ "import matplotlib.pyplot as plt\n", "import numpy as np\n", "%matplotlib inline " ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 1 }, { "cell_type": "markdown", "metadata": {}, "source": [ "Next, we'll define the number of timesteps we want to propagate our model through. Let's go for 100. These are arbitrary anyway. We'll use a variable called $N$." ] }, { "cell_type": "code", "collapsed": false, "input": [ "N = 100" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 2 }, { "cell_type": "markdown", "metadata": {}, "source": [ "$Y$ and $C$ are determined by the model as it evolves through time (they are *endogenous* variables). Since we don't know the values of these variables for every time period yet, we just need to set up some containers to hold their values as we solve the model at each time step. We'll use arrays, which are basically just lists of numbers that we can add to and read later. So for both $Y$ and $C$ we want an array of size $N$. This way we'll record their values through time and afterwards we can inspect the history of the economy as it evolved. We can use the .zeros() function from the numpy library to create arrays of this size populated - for now - by zeros. " ] }, { "cell_type": "code", "collapsed": false, "input": [ "C = np.zeros(N) # consumption\n", "Y = np.zeros(N) # income" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 3 }, { "cell_type": "markdown", "metadata": {}, "source": [ "And to satisfy our initial condition, we just need to set the first value for both consumption and income to 100. The values in arrays can be set (or read) by using square brackets and the number of the position we're interested in. Python arrays are \"zero-indexed\", so the first value has a position, or \"index\", of 0." ] }, { "cell_type": "code", "collapsed": false, "input": [ "C[0] = 100\n", "Y[0] = 100" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 4 }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can use the print function to inspect these variables and check they are doing what we think. For example," ] }, { "cell_type": "code", "collapsed": false, "input": [ "print(C)" ], "language": "python", "metadata": {}, "outputs": [ { "output_type": "stream", "stream": "stdout", "text": [ "[ 100. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.\n", " 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.\n", " 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.\n", " 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.\n", " 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.\n", " 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.\n", " 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.\n", " 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.\n", " 0. 0. 0. 0.]\n" ] } ], "prompt_number": 5 }, { "cell_type": "markdown", "metadata": {}, "source": [ "Good, our initial condition is in there.\n", "\n", "Now were in a position to iterate through each time step and solve the equations, populating our arrays as we go. We'll use a for loop to iterate. This is a type of structure provided in most (all?) programming languages for repeating a particular procedure some number of times. In this case, we're going to solve our spending and income equations for our 100 time steps. Since we have difference equations that reference a previous timestep, we cannot start at $t=0$ as there'd be no previous values to use. So we start at $t=1$ and our initial conditions defined at $t=0$ provides the required information to get going from that point onwards. \n", "\n", "The range function provides a handy way to generate a sequence of $t$ values from $1$ to $N$ (omitting $t=0$)." ] }, { "cell_type": "code", "collapsed": false, "input": [ "for t in range(1, N):\n", " C[t] = Y[t-1] # calculate spending based on earlier income\n", " Y[t] = C[t] # calculcate income earned in this time period\n" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 6 }, { "cell_type": "markdown", "metadata": {}, "source": [ "That's it! We've solved the entire history of our economy. Let's make some plots of how spending and income varied through time in our economy. We'll use the matplotlib library here." ] }, { "cell_type": "code", "collapsed": false, "input": [ "# create a figure\n", "fig = plt.figure(figsize=(8, 4))\n", "\n", "# create a subplot for consumption\n", "consumption_plot = fig.add_subplot(121)\n", "# plot consumption (C) versus time step (N)\n", "consumption_plot.plot(range(N), C, lw=3)\n", "# add gridlines\n", "consumption_plot.grid()\n", "# label axes\n", "plt.xlabel('time')\n", "plt.ylabel('consumption')\n", "\n", "# create a second subplot for income\n", "income_plot = fig.add_subplot(122)\n", "# plot income (Y) versus time step (N)\n", "income_plot.plot(range(N), Y, lw=3)\n", "# add gridlines\n", "income_plot.grid()\n", "# label axes\n", "plt.xlabel('time')\n", "plt.ylabel('income')\n", "\n", "# space subplots neatly\n", "plt.tight_layout()" ], "language": "python", "metadata": {}, "outputs": [ { "metadata": {}, "output_type": "display_data", "png": "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\ndnr06BHnZJfbv3+/M2zYMGfdunXOqFGjHMdxPJ+7rq7O6d69+2XPezn3kSNHnIyMDKe2ttY5e/as\nM2rUKGfNmjWezbx3714nKysrdHylnHPmzHGKi4tDf+/OO+90NmzY4G7YKFitMY5jp85QY9xDnfmK\niSs5Bw4cULdu3ULHXbt21YEDB+KYKLyqqiq9//77GjBggA4dOqS0tDRJUlpamg4dOhTndJd79NFH\n9cwzz6hFi6+GhNdz7927V506dVJhYaG+//3va8qUKfriiy88nbtDhw6aMWOGvv3tb+tb3/qWkpOT\nlZeX5+nMl7pSzoMHD6pr166hv2dhjl7KYo2RbNUZaox7qDNfMdHkWNskeOLECd1zzz2aP3++kpKS\nGnwtEAh47nzeeOMNpaamqnfv3le8T4gXc9fX12vr1q2aOnWqtm7dqrZt2152+dVruffs2aOSkhJV\nVVXp4MGDOnHihF5++eUGf8drma8kXE4L53CRpawXWaoz1Bh3UWe+YqLJ6dKli/bv3x863r9/f4Nu\nzkvOnj2re+65Rw8++KAKCgokXehEa2pqJEnV1dWeuy/Hu+++q1WrVql79+6aMGGC1q1bpwcffNDz\nubt27aquXbuqX79+ki68o2br1q3q3LmzZ3Nv3rxZt99+uzp27KhWrVpp7Nix2rBhg6czX+pKY+Lr\nc/TifWissFRjJHt1hhrjLurMV0w0OX379tXu3btVVVWlM2fOaOnSpRo9enS8Y13GcRw9/PDDyszM\n1D/90z+Fnh89erRKS0slSaWlpaGi5BVz5szR/v37tXfvXi1ZskRDhw7VSy+95PncnTt3Vrdu3VRZ\nWSlJeuutt9SrVy/l5+d7NnfPnj313nvv6dSpU3IcR2+99ZYyMzM9nflSVxoTo0eP1pIlS3TmzBnt\n3btXu3fvVv/+/eMZ9ZpYqTGSzTpDjXEXdeYSTbp7KIbefPNNJyMjw/nud7/rzJkzJ95xGvWnP/3J\nCQQCzm233ebk5OQ4OTk5zv/+7/86R44ccYYNG+bccsstTl5ennP06NF4R72i9evXO/n5+Y7jOCZy\nB4NBp2/fvs6tt97q3H333U5dXZ3nc8+bN8/JzMx0srKynIceesg5c+aMJzPfd999zo033ugkJCQ4\nXbt2dRYuXPiNOZ9++mnnu9/9rtOjRw+nrKwsjskjY6HGOI79OkONcQd15oK4f6wDAABALJhYrgIA\nALhWNDkAAMCXaHIAAIAv0eQAAABfoslBk/j888/1m9/8RtKF+xr8/d//fZwTAfAb6gyuFe+uQpOo\nqqpSfn6+Kioq4h0FgE9RZ3CtWsU7APxh1qxZ2rNnj3r37q1bbrlFO3fuVEVFhX7/+9/rtdde08mT\nJ7V7927NmDFDX375pf7whz+oTZs2evPNN5WSkqI9e/bokUce0Weffabrr79eL7zwgnr06BHv0wLg\nIdQZXLNY3eAHzUtVVVXoU2Qv/fOiRYucm2++2Tlx4oTz2WefOe3bt3f+67/+y3Ecx3n00UedkpIS\nx3EcZ+jQoc7u3bsdx3Gc9957zxk6dGgczgKAl1FncK24koMm4Vyy6ul8bQV0yJAhatu2rdq2bavk\n5GTl5+dLkrKzs7Vt2zZ98cUXevfddxusr585c8ad4ADMoM7gWtHkIObatGkT+nOLFi1Cxy1atFB9\nfb3Onz+vlJQUvf/++/GKCMA46gwaw7ur0CSSkpJ0/Pjxa/qei7+JJSUlqXv37nr11VdDz2/btq3J\nMwKwjTqDa0WTgybRsWNH3XHHHcrOztbMmTMVCAQkSYFAIPTni8eX/vni8eLFi/W73/1OOTk5ysrK\n0qpVq9w9AQCeR53BteIt5AAAwJe4kgMAAHyJJgcAAPgSTQ4AAPAlmhwAAOBLNDkAAMCXaHIAAIAv\n/X/ENJxfavLf7AAAAABJRU5ErkJggg==\n", "text": [ "" ] } ], "prompt_number": 7 }, { "cell_type": "heading", "level": 2, "metadata": {}, "source": [ "The circular flow of money" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You'll be forgiven for not being overly excited by these results. But in any case, let's walk through what happened. We started with 100 pounds being spent in the first time step. This immediately became 100 pounds of income. In the second timestep, the 100 pounds of income earned in the first time step was spent by those \"recipients\" and immediately became 100 pounds of income for \"others\" in the economy. This process was repeated another 98 times. The upshot is that during every time step the total amount of spending in the economy was 100 pounds, and the total amount of income was 100 pounds.\n", "\n", "Now, the numbers in our simulated economy are not meaningful in any sense: our units of money and time are completely arbitrary and so the fact that income is 100 pounds isn't all that illuminating. But we *can* conclude something important from the flat lines in the plots above. If people simply spend all of their income (and no more) the result will be a *constant* level of income in the economy. No growth. No recessions. Just stable levels of spending and income. And the simple intuition behind this is revealed by the fact that the two equations we used are practically identical. They simply describe the periodic swapping of money through the process of spending: your spending becomes my income, which becomes my spending, which becomes someone else's income, and so on... There is nothing in the equations which disturbs or adjusts the size of these flows and so the result is that the same levels of spending simply repeat themselves. The equations describe the *circulation* of the same amount of money through time. This is the basic insight of this model: *money circulates*.\n", "\n", "But it's worth pointing out that, despite the symmetry of our two equations, they *do* represent distinct concepts and *could* be different. The consumption function is a statement of human behaviour, intended to convey what we believe our citizens are choosing to do with their money (on average). We could have defined it differently, for example:\n", "\n", "$$C = \\frac{Y}{2}$$\n", "\n", "would imply that people spend only half of their income (presumably saving the rest). On the other hand, the income equation does not represent an assumption about behaviour in our economy. It is more precise than that. It is an accounting identity describing the two relations in a(ll) transaction(s). We happen to have defined the only type of transaction in our economy as being consumption spending and therefore all income derives from consumption. But we might have conceivably included something else, for example, government spending, e.g.:\n", "\n", "$$Y = C + G$$\n", "\n", "So, the reason that the consumption and income equations in our model resemble one another so closely is simply that we have stripped out as much complexity as possible and essentially reduced our economy to just private citizens exchanging consumption goods and service with one another. Consumption spending and income become completely aligned under these conditions. In other models, the specific forms of the consumption and income equations might diverge from one another and the economy may behave differently as a consequence. But the relationship between spending, income and the circulation of money established in this model remains a fundamental principle." ] }, { "cell_type": "heading", "level": 2, "metadata": {}, "source": [ "Stocks, flows and the \"velocity\" of money" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We used the phrase \"money circulates\" earlier. This would seem like a straightforward statement. And it is, really. But given that we just modelled spending and income rather than *money* per se, it's worth clarifying the distinction between money and income. \n", "\n", "The distinction is that of *stock* versus *flow* quantities. A stock quantity is something that can be measured at a *single point in time* and represents a specific absolute value. A flow quantity, on the other hand, is measured *over a period of time* and therefore represents a rate over time. Stocks are related to flows in that flows can cause a given stock to be increased or decreased through time. For example, the volume of petrol in the tank of a car is a stock quantity, whereas the consumption of that fuel by the engine represents a flow. In our case, money is a stock quantity and both spending and income are flows. We can't talk about income without stating whether it is hourly or yearly, for example. \n", "\n", "So what we have modelled is a *flow*, income: the rate at which money is earned over time. But we did start out by postulating a fixed stock of money in our economy, although it was not explicitly included in our model. It turns out, that if we pick apart our assumptions a bit more, we can discover that the stock of money was *implicit* in the model and that the relationship between the total stock of money and total income can be understood in fairly simple terms.\n", "\n", "In our economy, we insisted that the only use for money is consumption spending. Further, we assumed that all earned income is spent on every time step, and that there is only one round of spending in each time step. It follows that the entire quantity of money must be spent exactly once in each timestep. There cannot be any *more* money in existence than what is spent in each time step, otherwise some of it would have to be unspent (i.e. saved) which contradicts our assumptions. And there cannot be any *less* money than the amount spent in each timestep otherwise some of it would have to be spent twice, which again contradicts the structure of our model. We can deduce two conclusions from this reasoning:\n", "\n", "1. the total stock of money is spent entirely, once, each time step\n", "2. if the amount spent in each time step is 100 pounds, then it follows from conclusion 1 that the total stock of money is equal to 100 pounds\n", "\n", "Let's identify the stock of money as $M$, then, according to conclusion 2, we can say:\n", "\n", "$$C = M$$\n", "\n", "and since $Y = C$,\n", "\n", "$$Y = M (= 100)$$\n", "\n", "Well that looks suprisingly simple - income in the economy is numerically exactly the same as the size of the money stock! Is this a universal rule? Well let's think this through a little bit. Remember, income is a measure of a flow over time. The key is to consider what period of time we're interested in. In our model, we measured income over single, discrete time periods. Aside from the fact that these time periods were arbitrary and could represent anything (days, weeks, months, years, something else), what happens if we want to understand income over some different time period? For example, what if our model time period was quarterly but what we're really interested in is annual income? Annual income is surely greater than quarterly income. But if the equation $Y = M$ is universally true then that would imply that the money stock ($M$) has to grow simply because we are measuring income over a different time period. That doesn't sound right. \n", "\n", "Hopefully it is quite easy to see that, in our model, if quarterly income is 100 pounds then annual income is 400 pounds, since we are simply considering the sum total of income over 4 consecutive time periods. (This is true over any 4 time periods in our model since income is constant). So when we change the measurement period, we find that income changes - as it *should* for a flow quantity that is measured over time (duh!). But the stock of money hasn't changed. At least, there is nothing in our model to imply that it should, or even could, have changed. To look at this formally, we can now say:\n", "\n", "$$Y_{annual} = 400$$\n", "\n", "but, still,\n", "\n", "$$M = 100$$\n", "\n", "and therefore\n", "\n", "$$Y_{annual} \\neq M$$\n", "\n", "Our equation equating income with the money stock does not hold true now. Instead, we have this situation:\n", "\n", "$$Y_{annual} = M \\times 4$$\n", "\n", "Annual income is equal to 4 times the size of the money stock. Now, remember that in our model, the money stock was entirely spent in each time period, which, for now, we're taking to be a quarter of a year. The significance of the number 4 in the equation above, therefore, is that it represents the number of times the money stock is spent in the new reference period of a whole year. We can generalise this and state that:\n", "\n", "$$Y = MV$$\n", "\n", "where $V$ is called *the velocity of money* and represents the frequency at which the money stock turns over. As long as income and the velocity of money are measured using the same units of time, the equation above will hold true. So when considering annual income, we see that an income of 400 pounds per year is generated from a money stock of 100 pounds circulating 4 times a year ($V = 4$). For quarterly income we find an income of 100 pounds per quarter is generated by the same 100 pound stock of money circulating *once* per quarter ($V = 1$). In both cases the stock of money turns over once every quarter, we just happen to be aggregating the income over different time scales, and therefore the turnover rate of the stock of money (the \"velocity\") changes with respect to the time scale we are considering.\n", "\n", "In this light, we see that our original model was a special case where the reference period for income (single time step) happened to coincide with the turnover time of the money stock (single time step). In that context the velocity of money is always 1. Our original equation $Y = M$ was therefore really $Y = M \\times 1$. Of course, this wasn't a coincidence, it was baked in to our contrived scenario of 100% spending of income in each time step. In fact, when we deduced the size of $M$ from knowledge of $Y$ (via $C$) we were basically exploiting the fact that our assumptions had predetermined a velocity of money equal to 1 in our economy. In other more complex cases, we might not know or be able to deduce the turnover of the money stock as clearly and therefore we might instead use $Y = MV$ to calculate it (assuming we know something about $M$ and $Y$). Either way, the equation makes explicit the link between money, income and the frequency of spending. " ] }, { "cell_type": "heading", "level": 2, "metadata": {}, "source": [ "Conclusions" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This model was an incredibly simplified version of a real economy. The essense of the model economy was simply citizens swapping their incomes with each other for goods and services. We had only two rules encoded in our equations 1 and 2: all income was completely spent; and all spending generates - pound for pound - the same amount of income. \n", "\n", "We found that under these simple conditions money is simply repeatedly spent on, generating a stable economy with constant levels of spending and income.\n", "\n", "The basic insights of this model are this. Income is generated by spending. The relationship between the amount of money and the level of income depends on the frequency at which the money is spent." ] } ], "metadata": {} } ] }