4.4.6 · D3Multivariable Calculus

Worked examples — Differentiability in multiple variables

2,343 words11 min readBack to topic

Before we start, one reminder in plain words. A function takes two numbers and returns one — think of it as the height of a landscape above the point on the floor. "Differentiable at a point" means: if you zoom in far enough, the landscape looks like a flat tilted board (a tangent plane). The symbol (read "grad f") is just the pair of slopes: how fast the height climbs walking East () and North (). See Partial Derivatives and Gradient and Directional Derivatives if either feels shaky.


The scenario matrix

Every problem in this topic falls into one of these cells. The right column names the example that clears it.

# Case class What makes it tricky Cleared by
A Nice polynomial, all signs of partials nothing — the shortcut Ex 1
B Partials exist, but discontinuous diagonal betrays the origin Ex 2
C Continuous, partials exist, still NOT differentiable the sneakiest failure Ex 3
D Degenerate / boundary input (on a curve where formula dies) limit that survives, one that doesn't Ex 4
E Directional derivatives all exist, yet not differentiable strictly-stronger trap Ex 5
F Linearization estimate (real-world word problem, signed steps) mixed-sign , units Ex 6
G Limiting behaviour / squeeze proves differentiability proving the raw limit Ex 7
H Exam twist: find the value of a parameter that makes differentiable reverse-engineer the definition Ex 8

Two symbols we will lean on:

  • — the length of the step , i.e. straight-line distance from the base point. It is never negative.
  • ("little-o of ") — an error that shrinks strictly faster than the distance: divide it by and it still goes to .

Cell A — the easy, nice case


Cell B — partials exist but the function is broken


Cell C — continuous, partials exist, STILL not differentiable


Cell D — degenerate / boundary input


Cell E — every directional derivative exists, yet not differentiable


Cell F — real-world linearization with signed steps


Cell G — proving differentiability from the raw limit


Cell H — exam twist: find the parameter


Recall Which cell was which? (self-test)

Partials exist but discontinuous ::: Cell B (Ex 2, parabola path gives ). Continuous + partials exist + still not differentiable ::: Cell C (Ex 3, diagonal ratio ). All directional derivatives exist yet not differentiable ::: Cell E (Ex 5, ). Removable/degenerate input made differentiable ::: Cell D (Ex 4, patch). Proving differentiability from the raw limit ::: Cell G (Ex 7, ). Solve for parameter ::: Cell H (Ex 8, , still no partials).


Connections