1. You are designing a sensor system that measures temperature $T(x, y) = 100 - x^2 - 4y^2$. At the location $(3, 1)$, you need to construct a linear model $L(x, y)$ that engineers can use for quick field estimates. Which linearization should you provide?
- A.$L(x,y) = 87 - 6(x - 3) - 8(y - 1)$
- B.$L(x,y) = 87 - 3(x - 3) - 4(y - 1)$
- C.$L(x,y) = 100 - 6(x - 3) - 8(y - 1)$
- D.$L(x,y) = 87 + 6(x - 3) + 8(y - 1)$
View Answer
Answer: $L(x,y) = 87 - 6(x - 3) - 8(y - 1)$
Compute $T(3,1)$: $T(3,1) = 100 - 9 - 4 = 87$. Compute partial derivatives: $T_x = -2x$, so $T_x(3,1) = -6$. $T_y = -8y$, so $T_y(3,1) = -8$. Construct the linearization: $L(x,y) = 87 + (-6)(x-3) + (-8)(y-1) = 87 - 6(x-3) - 8(y-1)$. Why distractors fail: Option B halves the partial derivatives (forgetting the coefficient $2$ in the derivatives). Option C uses $100$ instead of $T(3,1) = 87$. Option D reverses the signs of the partial derivatives.