Linear model vs nonlinear model Ramsey policy

Hello,

I am trying to figure out the differences between dynare’s Ramsey policy function when using a linear model and a nonlinear model.

In the woodford methodology, a welfare loss function is minimized subject to the constraints of the linearized model (I kind of understand that there are caveats that the linearized model neglects certain terms that can lead to incorrect utility rankings). However, in the dynare example file (examples/Ramsey_Example.mod · master · Dynare / dynare · GitLab), a planner objective is maximized subject to the constraints of the nonlinear model, which can be solved to second or higher order.

I have two problems: I have a nonlinear model where a simple Taylor rule produces mean welfare (variable ‘welfare’ in OpPol_stickydiffpriceflexwage.mod) that is higher (-1040.0498) than the Ramsey policy targeting the interest rate (-1040.05399). They have the same parameterization and are solved to the first order. They also seem to have the same steady state. Dynare 4.6.4.

The second question is: I would ideally like to have an second-order expansion of the utility function with a linear model for ease of intuition. For example, if could perform a second-order taylor expansion and manipulate it into the form of -x1ygap^2-x2pi^2 (where x1 and x2 are derived weights), how would I operationally use this in dynare?

could I simply write:

model (linear):
model equations
end;

steady_state_model, initval; etc.

planner_objective -x1ygap^2-x2pi^2
ramsey_model(instruments=(interest_rate),planner_discount=beta)
stoch_simul(order=1)
evaluate_planner_objective ;

If I have performed the linearization and the second-order expansion of the utility function correctly, would I get the same result as if I had instead used the non-linear model and replaced the planner objective with raw utility function (using stoch_simul order=1)?

Thanks very much for any aid to my understanding!

  1. Please use Dynare 5.1 due to various bugs having been fixed related to Ramsey.
  2. Ramsey should result in a higher welfare. What you report is very unusual, but may be due to numerical precision issues.
  3. In Dynare 5.1, Dynare will use a consistent approximation order. In 4.6 what you describe should work, though.

Thanks - you were right. If i use a more recent version of Dynare I get a very small increase in the welfare function under optimal policy vs a Taylor rule using the same .mod files.