The authors derive their data from the Real National Accounts data set compiled by Summers and Heston (1988). Summers and Heston use annual cross country data from the 1960-1985 period reflecting real income, government and private consumption, investment and population. The data set forms a time series, that is there are multiple observations for each country taken as an annual cross section of data.
Mankiw, Romer and Weil split the data set into three samples. The first sample includes data from 98 countries. These countries include all of the countries from the Summers and Heston set for which data is available, excluding those countries where oil production is the primary industry. The second sample includes data from 75 countries. The exclusion criteria for this sample is extended to exclude countries who data quality rating by Summers and Heston is D and also countries whose population was less than 1 million in 1960. The final sample only considers data from 22 countries, these countries are characterised by their membership of the OECD and each have populations over 1 million.
Conditional convergence appears to hold in the period 1960-1985. The data on page 427 shows increasing levels of correlation as conditions are added to the model. The conditions set in the augmented model appear to result in the highest levels of convergence.
library(dplyr); library(readr)
##
## Attaching package: 'dplyr'
##
## The following objects are masked from 'package:stats':
##
## filter, lag
##
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
invHis <- read.csv("investment.csv")
invHis1 <- invHis %>% arrange(n():1)
depRate <- function(dep, inv, capital) {
t <- length(inv)
remCap <- sum(inv/((1+dep)^(0:(t-1))))
difference <- abs(capital-remCap)
}
optim(0.07, depRate, lower = 0, upper = 0.2, inv = invHis1$Investment/1000, capital = 5096, method = "Brent")
## $par
## [1] 0.0411923
##
## $value
## [1] 0.0001865847
##
## $counts
## function gradient
## NA NA
##
## $convergence
## [1] 0
##
## $message
## NULL
We find that depreication is 4.1%
From the paper “Labour’s share of growth in income and prosperity”, a visiting researcher paper by Dean Parham, the assumed labour share is 55%. Applying this to to GMI to find total capital and dividing capital by total of (COE, GOS and GMI)
GMI <- 130748
GMIcapShare <- GMI*.45
GOS <- 540302
COE <-755009
alpha <- (GMIcapShare+GOS)/(GMI+GOS+COE)
##s = average of GFC of past 5 years divide by average of GDP of past 5 years
gfc1 <- 365284
gfc2 <- 379094
gfc3 <- 422600
gfc4 <- 430844
gfc5 <- 424279
GFCaver <- (gfc1+gfc2+gfc3+gfc4+gfc5)/5
gdp1 <- 1397902
gdp2 <- 1430354
gdp3 <- 1483675
gdp4 <- 1520944
gdp5 <- 1559662
GDPaver <- (gdp1+gdp2+gdp3+gdp4+gdp5)/5
s <- GFCaver/GDPaver
n15 <- (12583.7-12304.4)/12304.4
g <- 0.016
d <- 0.041
k <- (s/(d+n15))^(1/(1-alpha))
y <- k^alpha
#output per worker
return(y)
## [1] 2.874384
#output per person
y1 <- y*0.65
return(y1)
## [1] 1.86835
library(reshape2); library(dplyr); library(ggplot2)
s <- 0.25
delta <- 0.05
n <- 0.02
alpha <- 0.4
n1 <- n*0.97
k <- rep(NA, 200)
kp <- rep(NA, 200)
y <- rep(NA, 200)
yp <- rep(NA, 200)
k[1] <- 1
kp[1] <- 1
for (t in 2:200) {
y[t] <- k[t-1]^alpha
k[t] <- (1-delta-n)*k[t-1]+s*y[t]
yp[t] <- kp[t-1]^alpha
kp[t] <- (1-delta-n1)*k[t-1]+s*yp[t]
}
data.frame(t = 1:200, k, kp) %>% melt(id = "t") %>%
ggplot(aes(x = t, y = value, colour = variable)) +
geom_line() +
ylim(0, 12)
##output per worker
return(y[200])
## [1] 2.336242
#outpur per woker after polio epidemic
return(yp[200])
## [1] 2.336819
y1 <- y[200]*.65
yp1 <- yp[200]*.62
#output per person
return(y1)
## [1] 1.518558
#output per person after polio epidemic
return(yp1)
## [1] 1.448828
WIth the polio epidemic, the labour force will decrease but the capital does not change. This will result in a higher output per worker.
Since participation rate would decrease by 3%, then the output per person would decrease as there is now less workers in comparison to the population, as shown with the calculations above.
There are no children in the workforce, so the data above would not change, but their quality of life would be different. If the children ever get a serious infection of polio, it could prevent them from ever joining the workforce, affecting the future workforce.