1. What is their data source? How do their sample differ? Which countries do they exclude? Do they include multiple observations of each country, or just single observation?
2. The authors make an identifying assumption when estimating the parameters of an un-augmented Solow model. What are their assumptions?
The assumption made by the authors is that technological progress/ growth in technology (g) and depreciation (d) are constant across countries. This is because they believe that technological progress, stemming from the advancement of knowledge , to not be country specific. And the lack of data to estimate the depreciation rates of specific countries, and the unlikelihood of large variations in these rates across country’s is the reason for the second assumption.
3. Can you think of a good reason that population growth would be correlated with the technology available to a country?
If we assume technology creating researchers to be a fixed percentage of a population, the faster the growth in a population, the larger the amount of researchers operating in the country. The more researchers there are in a country, the greater the technological output.
4. How do the authors augment the model to include human capital? Does it help?
As the measurement of human capital is practically difficult, the authors include human capital in the model by restricting their focus to human capital investment (education). The authors measure human-capital accumulation by using a proxy (the variable ‘SCHOOL’) which measures the approximate percentage of the working-age population in secondary school. According to Table II, the inclusion of human capital in the model helps by eliminating anomalies, notably the high coefficients on investment and population growth that are present in the un-augmented Solow model.
5. Does conditional convergence hold?
After testing the model it was found that there was conditional convergence, particularly in income per capita when the variables (population growth and savings rate) that determine steady state in the Solow model are controlled.
library(readr); library(dplyr)
##
## 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
inv <- read_csv("Investment.csv")
inv2 <- inv %>% arrange(n():1)
dep <- function(depreciation, series, finalvalue){
objective <- finalvalue - sum(series/((1+depreciation)^(0:(length(series)-1))))
abs(objective)
}
optim(0.07, dep, lower = 0, upper = 0.2, series = inv2$Investment/1000, finalvalue = 5096, method = "Brent")
## $par
## [1] 0.01501594
##
## $value
## [1] 0.0002315994
##
## $counts
## function gradient
## NA NA
##
## $convergence
## [1] 0
##
## $message
## NULL
library(readr); library(dplyr); library(ggplot2); library(reshape2)
## Warning: package 'reshape2' was built under R version 3.2.2
delta <- 0.041
K <- 5096.3
inv <- inv$Investment
kdiff <- function(delta, inv, K){
t <- length(inv)
khat <- sum(inv/((1+delta)^(0:(t-1))))
kdiff <- abs(K - khat)
return(kdiff)
}
Depreciation rate is found to be 4.1%.
library(readr); library(dplyr); library(ggplot2); library(reshape2)
k <- rep(NA, 200)
y <- rep(NA, 200)
y1<- rep(NA,200)
k1<- rep(NA,200)
s <- 0.25
delta <- 0.05
alpha <- 0.4
n <- 0.02
n1 <- 0.02*0.97
k[1] <- 1
k1[1] <- 1
for (t in 2:200) {y[t] <- k[t-1]^alpha
k[t] <- (1-delta-n)*k[t-1]+s*y[t]}
for (t in 2:200) {y1[t] <- k1[t-1]^alpha
k1[t] <- (1-delta-n1)*k[t-1]+s*y[t]}
data.frame(t = 1:200, k1, k) %>% melt(id = "t") %>%
ggplot(aes(x = t, y = value, colour = variable)) +
geom_line() +
ylim(0, 10)
The event effect large number of healthy adults are removed from the labor force. The labor force participation rate decreases by 3 per cent, so the weighted average of labor might decrease, and the output growth will decrease. Since labor force decrease, the output per worker might decrease as well.
Since the total output decrease, the output per person will decrease gradually. Even though those unhealthy adults jump out the labor force, but the population number still maintain the same.
The unhealthy children might affect the education level, in somehow to effect the technical progress and some sorts of endogenous factors. In this model which is B, the Hick-neutral productivity might decline, also effect output slow down.