Let's say I have two OLS specifications with different IVs (R notation):
lm(outcome ~ IV_1 + I(IV_1^2))
lm(outcome ~ IV_2 + I(IV_2^2))
I theorize that the quadratic term on IV_1 will be 'steeper' than IV_2. Comparing the coefficients, I see that the magnitude of I(IV_1^2)
> I(IV_2^2)
, but I want a formal statistical test to demonstrate that this is the case.
What is the right test for comparing the polynomial terms of IVs from two separate specifications?