THE UNIVERSITY OF ILLINOIS AT CHICAGO

ECON 534: Econometrics I

AUTUMN 2004

Prof. George Karras



Homework #3: Structural Tests in the Neoclassical Growth Model



Homework #3 tests structural stability in the empirical Neoclassical growth model. We are interested in whether the model's coefficients are the same in two subsamples, the African and non-African economies.





0. THEORY. As in Homework #2, the theoretical model is



ln(yT) - ln(y0) = (1-e-T)[(1-)-1ln(s) - (1-)-1ln(n) + (1-)-1ln(h) - ln(y0)], (0)



where variables and parameters are defined as in Homework #2.





1. DATA. As in Homework #2, we consider the MRW data for the 98 countries of the non-oil sample. Note that the African sample consists of the first 38 observations (i=1,...,38), whereas the non-African sample of the last 60 observations (i=39,...,98).





2. RESTRICTED ESTIMATION. Begin by assuming that the model's coefficients are the same for African and non-African economies. As in Homework #2, rewrite equation (0) above in linear regression form:



growthi = 0 + 1lny1960i + 2lnsi + 3lnpopi + 4lnschooli + i, i=1,...,98, (1)



where the variables and parameters are defined as in Homework #2. Suppose satisfies the classical assumptions (Ei=0 and E2i=2, for all i; and Eij=0, for i=/j), and that i is normally distributed. Using OLS, estimate equation (1). [Note: This is identical to part 2 of Homework #2.]





3. UNRESTRICTED ESTIMATION. Now allow the coefficients to differ between the African and non-African economies and test whether there is structural difference between the two samples. There are two ways to conduct this test.



(a) A Chow Test. Estimate equation (1) separately for the African and non-African samples:



growthi = 0 + 1lny1960i + 2lnsi + 3lnpopi + 4lnschooli + vi, i=1,...,38, (2)



and



growthi = 0 + 1lny1960i + 2lnsi + 3lnpopi + 4lnschooli + vi, i=39,..,98, (3)



where the vis satisfy the classical assumptions with normality. Note that (2) and (3) constitute the unrestricted model. Calculate the "Chow" F statistic and test the null hypothesis H0:=, where =[0 1 2 3 4]' and =[0 1 2 3 4]'.





(b) A Dummy-Variable Test. Construct an "Africa" dummy variable, dum, which takes the value 1 for the African sample and 0 for the non-African sample. More formally, dumi=1 for 1i38 and dumi=0 for 39i98. Multiply the dummy variable by the explanatory variables to construct the "interaction" terms. The RATS code should look like this:



set dum = t<=38

set dumlny1960 = dum*lny1960

set dumlns = dum*lns

set dumlnpop = dum*lnpop

set dumlnschool = dum*lnschool



Write the unrestricted model as:



growthi = 0 + 0dumi + 1lny1960i + 1dumlny1960i + 2lnsi + 2dumlnsi +



3lnpopi + 3dumlnpopi + 4lnschooli + 4dumlnschooli + wi, i=1,...,98. (4)



Assume the wis satisfy the classical assumptions with normality, and estimate (4) with OLS. Test the null hypothesis H1:0=1=2=3=4=0 using a Wald F-test. How does this differ from the "Chow" F-test? How does H1 differ from H0?