Sensitivity (Meta) Formula
The Formula
When to use: Is this result stable, or does a tiny change blow everything up?
Quick Example
Notation
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
Worked Examples
Example 1
easySolution
- 1 f(2) = 8, f(2.1) = 9.261.
- 2 Change in f: 9.261 - 8 = 1.261. Relative change in f: \frac{1.261}{8} \approx 15.8\%.
- 3 Change in x: \frac{0.1}{2} = 5\%.
- 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
Example 2
mediumCommon 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.