I have 3 variables, colony size, colony age and growth rate (colony size/age).
I am interested to predict various other properties ($y$) of a colony using these 3 variables;
$y = a_1 \text{ size} + a_2\text{ age} + a_3\text{ growth rate}$
since growth rate is really size/age, I was thinking it is effectively a kind of interaction between size and age.
$y = a_1 \text{ size} + a_2\text{ age} + a_3\text{ (size/age)}$
Normally I see one models interactions as the product of the variables, not as their ratio. I was wondering about the consequences of using the ratio, not the product?