Learning non-linear estimation of Constant Elasticity of Substitution (CES) with ADMB
I recently discovered a free software called ADMB. Its function is to estimate non-linear regressions. I need non-linear regression estimation to get an elasticity parameter that is not equal to 1.
The example that ADMB uses for Robust Linear Regression is the (von Bertalanffy) growth curve model:
where the parameters to be estimated are
,
, and
. Suppose the observed data are
and
, and we want to predict
using
, then ADMB needs to minimize the distance between
and
:
What I need to do is replace model \ref{1} with the Constant Elasticity of Substitution function:
but of course the natural-log version:
So I need to alter equation \ref{1} in the ADMB example to the equation I want, namely \ref{4}. In \ref{4}, the observables are
and
. Everything else – the Greek letters – are parameters. I probably need to start with initial guesses. The safest guess would be
to get Cobb-Douglas, heh. Also, I think I need to impose the restriction
.
Since I am already tired today, I will continue tomorrow.