I am trying to adjust serum zinc data for inflammation using the equation below (suggested by brinda-nutrition.org)

𝐴𝑑𝑗𝑒𝑠𝑑𝑒𝑑 π‘ π‘’π‘Ÿπ‘’π‘š 𝑧𝑖𝑛𝑐

= π‘’π‘›π‘Žπ‘‘π‘—π‘’π‘ π‘‘π‘’π‘‘ π‘ π‘’π‘Ÿπ‘’π‘š 𝑧𝑖𝑛𝑐 βˆ’ 𝛽1(πΆπ‘…π‘ƒπ‘œπ‘π‘  βˆ’ πΆπ‘…π‘ƒπ‘Ÿπ‘’π‘“) βˆ’ 𝛽2(π΄πΊπ‘ƒπ‘œπ‘π‘  βˆ’ π΄πΊπ‘ƒπ‘Ÿπ‘’π‘“)

due to poor homoscedacity in the regression of normal values, I decided to log transform the data as shown below

a. log Zinc~ logCRP + logAGP

b. Zinc~ log CRP + log AGP

both present a better fit than normal values. My problem comes when I have to fit the data into the equation above. I tried

a. 𝐴𝑑𝑗𝑒𝑠𝑑𝑒𝑑 π‘ π‘’π‘Ÿπ‘’π‘š 𝑧𝑖𝑛𝑐

= π‘’π‘›π‘Žπ‘‘π‘—π‘’π‘ π‘‘π‘’π‘‘ π‘ π‘’π‘Ÿπ‘’π‘š 𝑧𝑖𝑛𝑐 βˆ’ 𝛽1(log(πΆπ‘…π‘ƒπ‘œπ‘π‘  βˆ’ πΆπ‘…π‘ƒπ‘Ÿπ‘’π‘“)) βˆ’ 𝛽2(log(π΄πΊπ‘ƒπ‘œπ‘π‘  βˆ’ π΄πΊπ‘ƒπ‘Ÿπ‘’π‘“))

b. 𝐴𝑑𝑗𝑒𝑠𝑑𝑒𝑑 π‘ π‘’π‘Ÿπ‘’π‘š 𝑧𝑖𝑛𝑐

= π‘’π‘›π‘Žπ‘‘π‘—π‘’π‘ π‘‘π‘’π‘‘ π‘ π‘’π‘Ÿπ‘’π‘š 𝑧𝑖𝑛𝑐 βˆ’ exp((𝛽1)(πΆπ‘…π‘ƒπ‘œπ‘π‘  βˆ’ πΆπ‘…π‘ƒπ‘Ÿπ‘’π‘“)) βˆ’ exp((𝛽2)(π΄πΊπ‘ƒπ‘œπ‘π‘  βˆ’ π΄πΊπ‘ƒπ‘Ÿπ‘’π‘“))

Both give weird answers so I looked at this thread below https://www.researchgate.net/post/How_can_I_interpret_the_coefficient_values_of_multiple_regression_model_when_data_was_log-transformed_for_reduce_skew

but am still confused, does it mean for (b) it would be

𝐴𝑑𝑗𝑒𝑠𝑑𝑒𝑑 π‘ π‘’π‘Ÿπ‘’π‘š 𝑧𝑖𝑛𝑐

= π‘’π‘›π‘Žπ‘‘π‘—π‘’π‘ π‘‘π‘’π‘‘ π‘ π‘’π‘Ÿπ‘’π‘š 𝑧𝑖𝑛𝑐 βˆ’ exp((𝛽1)-1)*(πΆπ‘…π‘ƒπ‘œπ‘π‘  βˆ’ πΆπ‘…π‘ƒπ‘Ÿπ‘’π‘“)) βˆ’ exp((𝛽2)-1)*(π΄πΊπ‘ƒπ‘œπ‘π‘  βˆ’ π΄πΊπ‘ƒπ‘Ÿπ‘’π‘“))

CRP and AGP references are the maximum value of the lowest decile from the observations.

Any help will be appreciated, or links to materials that can help me understand this

Similar questions and discussions