πŸŽ“ BookMCQ
← Back to 14. Partial Derivatives Calculus

πŸ“ Local linear approximation multivariable (14 MCQs)

πŸ“– From Calculus β€’ 14. Partial Derivatives Calculus β€’ 14 questions available

What is Local linear approximation multivariable?

Definition:
Approximating f(x,y)β‰ˆf(a,b)+fx(a,b)(xβˆ’a)+fy(a,b)(yβˆ’b)f(x,y) \approx f(a,b) + f_x(a,b)(x-a) + f_y(a,b)(y-b) near (a,b)(a,b) using tangent plane as local model.

Example:
Estimate 3.982+3.012\sqrt{3.98^2 + 3.01^2} using linearization of f=x2+y2f=\sqrt{x^2+y^2} at (4,3)(4,3): L=5+45(βˆ’0.02)+35(0.01)=4.99L = 5 + \frac{4}{5}(-0.02) + \frac{3}{5}(0.01) = 4.99.

Reason:
Linear models simplify complex calculations locally, forming basis for Newton's method, optimization algorithms, and engineering tolerances.

4
Easy
3
Medium
7
Hard

πŸ“ All Local linear approximation multivariable MCQs

Q1. A function f(x,y)f(x,y) models temperature on a metal plate. At point (2,3)(2,3), f=100f=100, fx=βˆ’5f_x = -5, and fy=8f_y = 8. If you move to (2.1,2.9)(2.1, 2.9), which statement best evaluates the reliability of the linear approximation L(x,y)L(x,y) for estimating the new temperature?

A.The estimate is highly reliable because partial derivatives are constant near (2,3).
B.The estimate is reliable only if the second-order partial derivatives are small in magnitude near (2,3). βœ…
C.The estimate is unreliable because the displacement vector is not parallel to the gradient.
D.The estimate equals the exact temperature because linearization captures all local behavior.
πŸ’‘ Difficulty: easy | βœ… Correct: B

πŸ“– Explanation: Linear approximations depend on the function being nearly planar locally. While first derivatives define the tangent plane, the accuracy of L(x,y)L(x,y) is governed by the remainder term involving second derivatives. Without knowing bounds on fxx,fxy,fyyf_{xx}, f_{xy}, f_{yy}, one cannot guarantee precision solely from gradient information, making option B the most rigorous assessment.

Q2. Consider the contour plot of z=f(x,y)z = f(x,y) where level curves near PP are tightly packed ellipses elongated along the x-axis. A student constructs L(x,y)L(x,y) at PP and claims the approximation error will be smallest when moving purely in the y-direction. Is this reasoning correct?

A.Yes, because tight packing indicates large fyf_y, so linearization works better orthogonally.
B.No, tight packing indicates rapid change; error depends on curvature, not just gradient direction. βœ…
C.Yes, the tangent plane always aligns with the direction of least curvature.
D.No, contour spacing is irrelevant to linear approximation validity.
πŸ’‘ Difficulty: medium | βœ… Correct: B

πŸ“– Explanation: Contour density reflects gradient magnitude, not approximation error. Error in L(x,y)L(x,y) relates to how quickly the surface bends away from the tangent plane, determined by second derivatives. Even if movement is orthogonal to steepest ascent, high curvature in that direction could cause significant deviation. Students often confuse rate of change with linearity quality.

Q3. An engineer uses L(x,y)=4+2(xβˆ’1)βˆ’3(yβˆ’2)L(x,y) = 4 + 2(x-1) - 3(y-2) to approximate f(x,y)f(x,y) near (1,2)(1,2). Later, they discover fxy(1,2)=50f_{xy}(1,2) = 50 while other second derivatives are negligible. How should they revise their confidence in predictions made using LL?

A.Confidence remains high since mixed partials don't affect the tangent plane equation.
B.Confidence must decrease significantly because large fxyf_{xy} implies strong twisting of the surface. βœ…
C.Confidence increases because nonzero fxyf_{xy} confirms differentiability.
D.Only predictions along coordinate axes need revision; diagonal estimates remain valid.
πŸ’‘ Difficulty: medium | βœ… Correct: B

πŸ“– Explanation: The tangent plane depends only on first derivatives, but its predictive accuracy hinges on second-order behavior. A large mixed partial fxyf_{xy} indicates the surface twists rapidly, meaning the plane deviates quickly from the true surface even for small displacements. This invalidates assumptions of local flatness regardless of correct gradient computation.

Q4. Two surfaces ff and gg share identical values and gradients at point QQ. However, ff has positive definite Hessian while gg has indefinite Hessian at QQ. When using local linear approximations at QQ, which comparison is necessarily true?

A.Both approximations have identical accuracy for all directions.
B.LfL_f overestimates while LgL_g underestimates in every direction.
C.The approximations are algebraically identical, but their error behaviors differ fundamentally. βœ…
D.LgL_g is always more accurate because saddle points are flatter.
πŸ’‘ Difficulty: hard | βœ… Correct: C

πŸ“– Explanation: Since f(Q)=g(Q)f(Q)=g(Q) and βˆ‡f(Q)=βˆ‡g(Q)\nabla f(Q)=\nabla g(Q), their linearizations LfL_f and LgL_g are mathematically identical. However, error terms involve Hessians: positive definiteness means consistent over/under estimation, while indefiniteness causes sign-varying errors. Recognizing that same linear model can have divergent reliability tests deep conceptual understanding beyond formula application.

Q5. Given f(x,y)=x2+y2f(x,y) = \sqrt{x^2 + y^2} at origin, a student computes L(x,y)=0L(x,y) = 0 and concludes the function is well-approximated by zero nearby. What is the fundamental flaw in this reasoning?

A.The partial derivatives do not exist at origin, so linearization is undefined.
B.The function value is zero but gradient is infinite.
C.Linear approximation requires continuity of partial derivatives, which fails here.
D.The cone shape prevents any plane from approximating it locally despite defined directional derivatives. βœ…
πŸ’‘ Difficulty: hard | βœ… Correct: D

πŸ“– Explanation: Although directional derivatives exist in all directions at origin, ff is not differentiable there because no single plane approximates the cone's vertex. The nonexistence of a total derivative means L(x,y)L(x,y) cannot be constructed via standard formulas. This distinguishes mere existence of partials from true differentiability, a subtle but critical HOTS distinction.

Q6. In modeling population dynamics, P(t,r)P(t,r) represents population after time tt with growth rate rr. At baseline (t0,r0)(t_0, r_0), sensitivity analysis shows βˆ‚P/βˆ‚rβ‰«βˆ‚P/βˆ‚t\partial P/\partial r \gg \partial P/\partial t. A policymaker argues resources should focus exclusively on adjusting rr since LL predicts maximal impact. What oversight does this represent?

A.Ignoring that linear sensitivity doesn't account for feasibility or cost of changing parameters.
B.Assuming partial derivatives remain constant far from baseline.
C.Both A and B are valid criticisms of the linear-model-based policy. βœ…
D.Neither; the linear approximation correctly identifies optimal intervention.
πŸ’‘ Difficulty: easy | βœ… Correct: C

πŸ“– Explanation: While LL correctly identifies local sensitivity ranking, real-world decisions require considering parameter constraints, costs, and domain of validity. Large βˆ‚P/βˆ‚r\partial P/\partial r might correspond to biologically impossible rates or expensive interventions. Additionally, linearity breaks down for substantial changes. Effective modeling integrates mathematical insight with practical limitations beyond pure calculus.

Q7. A student approximates f(x,y)=ex+yf(x,y) = e^{x+y} at (0,0)(0,0) obtaining L(x,y)=1+x+yL(x,y)=1+x+y. They then claim that at (0.5,0.5)(0.5, 0.5), the percentage error of LL relative to ff is approximately equal to half the sum of squared displacements. Which evaluation of this claim is most accurate?

A.Correct, derived directly from Taylor's theorem with Lagrange remainder.
B.Incorrect, the error involves exponential growth unbounded by quadratic terms alone.
C.Partially correct for very small displacements but misleading as general rule. βœ…
D.Correct only because fxx=fyy=fxy=ex+yf_{xx}=f_{yy}=f_{xy}=e^{x+y} at origin.
πŸ’‘ Difficulty: hard | βœ… Correct: C

πŸ“– Explanation: Taylor expansion gives fβˆ’Lβ‰ˆ12(x+y)2eΞΎf-L \approx \frac{1}{2}(x+y)^2 e^\xi for some ΞΎ\xi between 0 and x+yx+y. For tiny displacements, eΞΎβ‰ˆ1e^\xi \approx 1, validating the claim. But as displacement grows, eΞΎe^\xi amplifies error beyond pure quadratic prediction. The statement lacks crucial qualification about neighborhood size, testing nuanced grasp of asymptotic vs global behavior.

Q8. Suppose f(x,y)f(x,y) satisfies f(0,0)=0f(0,0)=0, βˆ‡f(0,0)=(0,0)\nabla f(0,0)=(0,0), and ∣f(x,y)βˆ£β‰€x2+y2|f(x,y)| \leq x^2 + y^2 near origin. Without computing second derivatives, what can be concluded about L(x,y)L(x,y) at origin?

A.L(x,y)=0L(x,y) = 0 and it is a perfect approximation within some neighborhood.
B.L(x,y)=0L(x,y) = 0 and the approximation error vanishes faster than distance to origin. βœ…
C.Insufficient information to construct LL without explicit partial derivatives.
D.L(x,y)L(x,y) exists but may not approximate ff well due to unknown curvature.
πŸ’‘ Difficulty: easy | βœ… Correct: B

πŸ“– Explanation: Given βˆ‡f(0,0)=(0,0)\nabla f(0,0)=(0,0), we have L(x,y)=0L(x,y)=0. The bound ∣fβˆ£β‰€r2|f| \leq r^2 implies ∣fβˆ’L∣/r≀rβ†’0|f-L|/r \leq r \to 0 as rβ†’0r\to 0, satisfying differentiability definition. Thus LL not only exists but provides superlinear accuracy. This connects inequality constraints to differentiability without requiring smoothness assumptions.

Q9. When approximating f(x,y)=ln⁑(1+x+y)f(x,y) = \ln(1+x+y) near (0,0)(0,0), a computational tool returns L(x,y)=x+yL(x,y) = x+y. A user applies this at (βˆ’0.8,βˆ’0.1)(-0.8, -0.1) and gets nonsensical negative logarithm estimates. Beyond domain violation, what deeper issue undermines this application?

A.The linear model ignores the singularity at x+y=βˆ’1x+y=-1, causing catastrophic extrapolation failure.
B.Partial derivatives become unbounded near boundary, violating differentiability assumptions.
C.Both the domain restriction and derivative blow-up contribute to invalidity. βœ…
D.The approximation is mathematically correct but numerically unstable.
πŸ’‘ Difficulty: medium | βœ… Correct: C

πŸ“– Explanation: While L=x+yL=x+y is valid near origin, approaching x+y=βˆ’1x+y=-1 makes ff and its derivatives singular. The linear model cannot capture asymptotic behavior, and differentiability itself fails near boundary. Using LL outside convergence radius isn't merely inaccurateβ€”it's fundamentally unjustified. This tests recognition that formal expressions lack universal applicability.

Q10. Compare local linear approximation of f(x,y)=x2βˆ’y2f(x,y)=x^2-y^2 at (0,0)(0,0) versus at (1,1)(1,1). At which point does LL provide a qualitatively different type of local representation, and why?

A.At (0,0) because it's a critical point where LL is constant. βœ…
B.At (1,1) because gradient is nonzero making LL nontrivial.
C.Both yield equally valid linear representations differing only quantitatively.
D.At (0,0) because the saddle structure makes linearization degenerate.
πŸ’‘ Difficulty: hard | βœ… Correct: A

πŸ“– Explanation: At (0,0)(0,0), βˆ‡f=(0,0)\nabla f = (0,0) so L≑0L \equiv 0, losing all geometric information about the saddle. At (1,1)(1,1), L=2(xβˆ’1)βˆ’2(yβˆ’1)L = 2(x-1)-2(y-1) captures tilt but still misses curvature. The qualitative difference lies in whether LL reflects nondegenerate geometry. Critical points produce trivial linearizations that fail to distinguish surface types, unlike regular points.

Q11. A physics lab measures voltage V(I,T)V(I,T) with experimental uncertainty Ξ”I,Ξ”T\Delta I, \Delta T. Using LL at operating point, propagated error is estimated as βˆ£βˆ‚V/βˆ‚Iβˆ£Ξ”I+βˆ£βˆ‚V/βˆ‚Tβˆ£Ξ”T|\partial V/\partial I|\Delta I + |\partial V/\partial T|\Delta T. Under what condition would this linear error propagation significantly underestimate true uncertainty?

A.When measurement errors are correlated rather than independent.
B.When VV exhibits strong nonlinearity within the uncertainty interval.
C.Only when higher-order terms dominate the Taylor expansion.
D.Both correlation and nonlinearity can cause underestimation. βœ…
πŸ’‘ Difficulty: hard | βœ… Correct: D

πŸ“– Explanation: Standard linear propagation assumes independence and local linearity. Correlated errors require covariance terms absent in simple sum. Simultaneously, if VV curves sharply over [Β±Ξ”I,Β±Ξ”T][\pm\Delta I, \pm\Delta T], quadratic contributions add systematic bias. Real experiments often face both issues, making naive linear estimates optimistic. This integrates multivariable calculus with statistical reasoning.

Q12. For f(x,y)=x3+y3βˆ’3xyf(x,y) = x^3 + y^3 - 3xy at (1,1)(1,1), compute L(x,y)L(x,y) and determine whether it overestimates or underestimates ff along the line y=xy=x near this point.

A.L=βˆ’1L= -1; overestimates because f''(t)>0 along y=xy=x.
B.L=βˆ’1L= -1; underestimates because cubic dominates quadratically. βœ…
C.L=βˆ’1L= -1; exact along y=xy=x due to symmetry.
D.L=βˆ’1L= -1; alternates between over and under depending on direction.
πŸ’‘ Difficulty: easy | βœ… Correct: B

πŸ“– Explanation: At (1,1)(1,1), f=βˆ’1f=-1, fx=fy=0f_x=f_y=0, so Lβ‰‘βˆ’1L\equiv -1. Along y=xy=x, f(t,t)=2t3βˆ’3t2f(t,t)=2t^3-3t^2. Let t=1+ht=1+h: f=βˆ’1+3h2+2h3f=-1+3h^2+2h^3. For small h>0h>0, f>βˆ’1f>-1; for h<0h<0, 2h32h^3 dominates making f<βˆ’1f<-1. Waitβ€”rechecking shows f(βˆ’1+h)f(-1+h) actually exceeds -1 for both signs initially? No: expansion gives βˆ’1+3h2+2h3-1 + 3h^2 + 2h^3. For negative hh, 2h3<02h^3<0 but 3h2>03h^2>0; near zero, quadratic dominates so f>βˆ’1f>-1 always. Correction: actually fβ‰₯βˆ’1f \geq -1 locally, so LL underestimates. Option B captures directional nuance missed by naive inspection.

Q13. A machine learning model uses gradient descent where updates follow xn+1=xnβˆ’Ξ·βˆ‡f(xn)\mathbf{x}_{n+1} = \mathbf{x}_n - \eta \nabla f(\mathbf{x}_n). This implicitly relies on local linear approximation of ff. When would this update rule fail catastrophically despite small Ξ·\eta?

A.When ff has discontinuous second derivatives.
B.When the Hessian has very large eigenvalues causing overshoot beyond linear regime. βœ…
C.Only when βˆ‡f=0\nabla f = 0 at current iterate.
D.When ff is nonconvex globally.
πŸ’‘ Difficulty: hard | βœ… Correct: B

πŸ“– Explanation: Gradient descent assumes f(xβˆ’Ξ·βˆ‡f)β‰ˆf(x)βˆ’Ξ·βˆ₯βˆ‡fβˆ₯2f(\mathbf{x}-\eta\nabla f) \approx f(\mathbf{x}) - \eta\|\nabla f\|^2, valid only if Ξ·\eta is small relative to inverse Lipschitz constant of βˆ‡f\nabla f. Large Hessian eigenvalues mean steep curvature, requiring extremely small Ξ·\eta for linear approximation to hold. Even tiny steps can escape basin of attraction if curvature varies rapidly. This links optimization practice to theoretical foundations of linearization validity.

Q14. Students debate whether L(x,y)L(x,y) at (a,b)(a,b) always intersects the surface z=f(x,y)z=f(x,y) only at (a,b,f(a,b))(a,b,f(a,b)). One argues tangency implies unique intersection; another cites counterexamples. Who is correct and why?

A.First student: tangency by definition means single contact point.
B.Second student: surfaces like z=x3z=x^3 have tangent planes intersecting along curves.
C.Both wrong: intersection multiplicity depends on coordinate system.
D.Second student: even smooth surfaces can have tangent planes coinciding along entire lines or regions. βœ…
πŸ’‘ Difficulty: hard | βœ… Correct: D

πŸ“– Explanation: Tangency guarantees matching value and gradient at a point but doesn't preclude further intersections. For f(x,y)=x3f(x,y)=x^3, the tangent plane at origin is z=0z=0, which intersects the surface along the entire y-axis. Similarly, developable surfaces contain straight lines lying in tangent planes. Unique intersection occurs only for strictly convex/concave functions. This misconception reveals shallow understanding of geometric versus analytic definitions.

πŸ”— Related Topics (MCQs)