What Does f sub xy Mean in Mathematics?
What Does fxy Mean in Mathematics?
You're looking at a math problem and you see fxy and you're wondering what the hell this notation means. Don't worry. This is a standard notation for partial derivatives, and once you see a few examples, it clicks fast.
Let's break it down.
First: Understanding f(x,y) as a Function
Before fxy makes sense, you need to understand f(x,y). This simply means a function with two variables. Instead of one input giving one output, you have two inputs.
For example:
- f(x,y) = x² + y²
- f(x,y) = 3xy + 5
- f(x,y) = sin(x) · cos(y)
Think of it like this: x and y are both free variables, and f tells you how they combine to produce a result.
What Does the Subscript Mean?
The subscript in fxy tells you to take partial derivatives of the function with respect to those variables, in order.
Here's the breakdown:
- fx = partial derivative with respect to x
- fy = partial derivative with respect to y
- fxy = take partial with respect to x first, then take partial of that result with respect to y
- fyx = take partial with respect to y first, then take partial of that result with respect to x
A Real Example
Let's work with a concrete function:
f(x,y) = 3x²y + 2xy²
Step 1: Find fx
Treat y like a constant and differentiate with respect to x:
fx = 6xy + 2y²
Step 2: Find fy
Now treat x like a constant and differentiate with respect to y:
fy = 3x² + 4xy
Step 3: Find fxy
Take the partial derivative of fx with respect to y:
fxy = 6x + 4y
Step 4: Find fyx
Take the partial derivative of fy with respect to x:
fyx = 6x + 4y
Notice something? fxy = fyx. This isn't a coincidence.
Clairaut's Theorem (Equality of Mixed Partials)
Under normal conditions, the order of mixed partials doesn't matter. This is called Clairaut's Theorem or the Equality of Mixed Partials.
The conditions:
- The function must be continuous
- The first partial derivatives must be continuous
- The second partial derivatives must be continuous
If these hold, then fxy = fyx. Always.
What If the Order Does Matter?
Sometimes fxy ≠ fyx. This happens when the function fails the continuity conditions above. Here's a pathological example:
f(x,y) = xy(x² - y²) / (x² + y²) for (x,y) ≠ (0,0), and f(0,0) = 0
At the origin, fxy(0,0) ≠ fyx(0,0). The function is technically differentiable everywhere, but the second partials aren't continuous at that one point.
For most practical problems you encounter, this won't be an issue. Engineers and scientists work with "nice" functions where mixed partials are equal.
How to Read Other Subscript Notations
Here's a quick reference table for common subscript patterns:
| Notation | Meaning |
|---|---|
| fx | First partial with respect to x |
| fy | First partial with respect to y |
| fxx | Second partial with respect to x twice |
| fyy | Second partial with respect to y twice |
| fxy | Partial with respect to x, then y |
| fyx | Partial with respect to y, then x |
| fxyz | Three variables: x, then y, then z |
Why Does This Matter?
Partial derivatives show up everywhere in:
- Physics (gradients, divergence, curl)
- Economics (optimization with multiple variables)
- Engineering (stress tensors, heat equations)
- Machine learning (gradient descent in multiple dimensions)
The subscript notation is just shorthand. Once you understand the pattern, you can read any variation.
Getting Started: How to Solve fxy
Here's the step-by-step process:
- Identify the function f(x,y)
- Find fx by treating y as a constant
- Find fxy by treating your result from step 2 and treating x as a constant while differentiating with respect to y
- Simplify the final expression
Practice with simple polynomials first. Once you can handle x²y³ terms without getting confused, you're ready for trig functions, exponentials, and logs.
The Bottom Line
fxy means "take the partial derivative with respect to x, then take the partial derivative of that result with respect to y." That's it. No hidden complexity.
The hardest part is keeping track of which variable you're treating as constant at each step. When in doubt, cover up the variable you're not differentiating with respect to and ask yourself: "What does this look like as a single-variable derivative problem?"
That mental trick works every time.