I have the following problem: I want to estimate the following regression models: $$ Y_1 = \beta_1 + \beta_2X $$ $$ Y_2 = \beta_3 + \beta_4X $$
I.e., I have different dependent variables and the same independent variables. I want to test the following hypothesis: $$H1:\beta_2=0$$ $$H2:\beta_2=\beta_4$$
I have found several related questions on cross validated but after reading all the answers I am still unsure what to do.
A common answer to the question e.g., here is to estimate the models separately and then do the following test: $$Z=\frac{\beta_1-\beta_2}{\sqrt{(SE\beta_1)^2+(SE\beta_2)^2}}$$
This goes back to:
Clogg, C. C., Petkova, E., & Haritou, A. (1995). Statistical Methods for Comparing Regression Coefficients Between Models. American Journal of Sociology, 100(5), 1261–1293. http://www.jstor.org/stable/2782277
However the authors write in the paper that:
"It is very important to note that the logic involved here posits one outcome variable (Y); there are two competing models for this single outcome: the reduced model and the full model"
Hence, the authors do not seem to belief that this works for different dependent variables even though I found several instances on cross validated where this formula was provided as an answer to a question about different dependent variables.
Another solution that was mentioned e.g.,here was to pool the dependent variables and use a dummy that is one if a datapoint belongs to $Y_1$ and 0 if it belongs to $Y_2$ as well as an interaction term. However, it was pointed out that this assumes that the variance of the errors is the same for both $Y_1$ and $Y_2$ and I do not think I can assume this in my setup.
A final approach I found was to do a multivariate regression. However, I have fever datapoints for $Y_1$ than for $Y_2$ and if I understand it correctly, I could only include datapoints where both $Y_1$ and $Y_2$ are available in my MV regression and hence I would lose statistical power for the test of H1
Is there any way that allows me to use all my datapoints to test H1 and then test H2 separately?