Let the original regression be as follows:

  • Y=a1X1+(1-a1)(b1X2+b2X3)+(error term). This is equivalent to the following expression: Y=a1X1+c1X2+c2X3+(error term) where c2 =(1-a1)*(b1) and c3= (1-a1)*(b2)
  • Estimating (1) by OLS will yield estimates (coefficient values and the associated statistics like standard error, t values, etc.) for a1, c1 and c2. The numerical values of b1 and b2 can be easily derived from c1 and c2. But how to compute the standard errors of b1 and b2? Software packages can produce those statistics , but I am interested in knowing the procedure so that I can manually progam codes.

    Similar questions and discussions