Sensitivity (Meta) Formula

The Formula

\text{sensitivity} \approx \frac{\Delta\text{output}}{\Delta\text{input}} (how much the output changes per unit change in input)

When to use: Is this result stable, or does a tiny change blow everything up?

Quick Example

Quadratic formula: small change in coefficients \to small change in roots (usually). But near discriminant = 0, very sensitive.

Notation

\Delta denotes a small change; high \frac{\Delta\text{output}}{\Delta\text{input}} means high sensitivity

What This Formula Means

The degree to which a result or output changes in response to small changes in its inputs, parameters, or assumptions.

Is this result stable, or does a tiny change blow everything up?

Formal View

The condition number \kappa = \left|\frac{x \cdot f'(x)}{f(x)}\right| measures relative sensitivity; \kappa \gg 1 means the problem is ill-conditioned

Worked Examples

Example 1

easy
Compute f(x) = x^3 at x = 2 and x = 2.1. Find the sensitivity: by what percentage does f change when x changes by 5%?

Solution

  1. 1
    f(2) = 8, f(2.1) = 9.261.
  2. 2
    Change in f: 9.261 - 8 = 1.261. Relative change in f: \frac{1.261}{8} \approx 15.8\%.
  3. 3
    Change in x: \frac{0.1}{2} = 5\%.
  4. 4
    Sensitivity: a 5% increase in x causes about a 15.8% increase in f. The function is sensitive โ€” it amplifies errors by a factor of about 3.

Answer

\text{5\% change in }x \Rightarrow \approx 15.8\%\text{ change in }f
Sensitivity measures how much the output changes relative to the input. For f(x) = x^3, the exponent 3 amplifies percentage changes roughly threefold, which can be derived from the derivative: f'(x)/f(x) \approx 3 \Delta x/x.

Example 2

medium
In the compound interest formula A = P(1+r)^t, compute the sensitivity of A to a small change \Delta r in the interest rate, using the derivative \frac{dA}{dr}.

Common Mistakes

  • Ignoring sensitivity and trusting a computed answer blindly โ€” near a sensitive region, small rounding errors can produce wildly wrong results
  • Not recognizing when a problem is ill-conditioned โ€” e.g., solving nearly singular linear systems gives unreliable answers
  • Confusing sensitivity of the problem with sensitivity of the method โ€” even a good algorithm fails on an inherently ill-conditioned problem

Why This Formula Matters

High sensitivity means small errors in inputs cause large errors in outputs โ€” knowing this guides where to spend effort on precision in a calculation.

Frequently Asked Questions

What is the Sensitivity (Meta) formula?

The degree to which a result or output changes in response to small changes in its inputs, parameters, or assumptions.

How do you use the Sensitivity (Meta) formula?

Is this result stable, or does a tiny change blow everything up?

What do the symbols mean in the Sensitivity (Meta) formula?

\Delta denotes a small change; high \frac{\Delta\text{output}}{\Delta\text{input}} means high sensitivity

Why is the Sensitivity (Meta) formula important in Math?

High sensitivity means small errors in inputs cause large errors in outputs โ€” knowing this guides where to spend effort on precision in a calculation.

What do students get wrong about Sensitivity (Meta)?

Sensitivity is not the same as magnitude โ€” a model can produce large outputs while being insensitive to inputs, or produce small outputs while being highly sensitive.

What should I learn before the Sensitivity (Meta) formula?

Before studying the Sensitivity (Meta) formula, you should understand: local vs global behavior.