Identification Issue
Posted: Fri Feb 10, 2017 1:46 pm
Hi,
I have come across a bizarre identification issue. I'm working with quadratic adjustment costs:
where phi_m>0 and m is a control variable. Now suppose that these QAC are meant to model deviations from the following equation:
where s is another control variable and e is an endogenous 'error' term given by:
Now the issue is as follows. Although both s and m are well-behaved, mean-reverting endogenous variables, for some reason DELTA_m is not identified for a first order perturbation (it is for 2nd and 3rd). While dDELTA_m is always identified, 'e' is never identified. And when I say not identified, I mean that their value is stuck at the initial condition (i.e. the steady state) throughout the 'irf=integer' horizon.
Why is this happening? The error term function looks a lot like a standard Tobin's Q. There is no collinearity, BK conditions hold and irfs of all the other variables look smooth.
Thanks
I have come across a bizarre identification issue. I'm working with quadratic adjustment costs:
- Code: Select all
DELTA_m=(phi_m/2)*(((m/m(-1))-1)^2); %QAC
dDELTA_m=phi_m*((m/m(-1))-1); %slope of the QAC
where phi_m>0 and m is a control variable. Now suppose that these QAC are meant to model deviations from the following equation:
- Code: Select all
q_dot=s*e
where s is another control variable and e is an endogenous 'error' term given by:
- Code: Select all
(1-DELTA_m-dDELTA_m*(m/m(-1)))*(e-1)+beta*dDELTA_m(+1)*((m(+1)/m)^2)*(e(+1)-1)=0;
Now the issue is as follows. Although both s and m are well-behaved, mean-reverting endogenous variables, for some reason DELTA_m is not identified for a first order perturbation (it is for 2nd and 3rd). While dDELTA_m is always identified, 'e' is never identified. And when I say not identified, I mean that their value is stuck at the initial condition (i.e. the steady state) throughout the 'irf=integer' horizon.
Why is this happening? The error term function looks a lot like a standard Tobin's Q. There is no collinearity, BK conditions hold and irfs of all the other variables look smooth.
Thanks