📘 Section 11.9 – Regression on Transformed Variables

🔍 Why Transform Variables?

Linear regression assumes a straight-line relationship between x and y. If the data are non-linear, applying linear regression without transformation can lead to:

🧠 When to Suspect Nonlinearity?

🔁 Common Transformations

Original FormTransformationResulting Linear Form
Exponential: Y = β₀e^{β₁x}εln(Y)ln Y = ln β₀ + β₁x + ln ε
Inverse: Y = β₀ + β₁(1/x) + εz = 1/xY = β₀ + β₁z + ε
Reciprocal Exponential: Y = 1 / exp(β₀ + β₁x + ε)ln(1/Y)ln Y* = β₀ + β₁x + ε
Power: Y = β₀x^β₁εlog-logln Y = ln β₀ + β₁ ln x
📌 Tip: Always check scatterplots and residual plots before and after transformation to verify model improvement.

📊 Example – Windmill Power

A research engineer wants to model the relationship between wind velocity (x) and DC output (y).

Before Transformation (Linear Fit)

After Transformation (1/x)

✅ Summary

Transformation = Rescue when linear regression fails!