My topic is related to this post found here, although it is quite different.
I am comparing a product of three variables to a threshold value.
To be more specific, let's say we have:
$$ F = A*B*C $$
The range of values $A, B, C$ can take is $[0,1]$.
$F$ is below a threshold of interest $T$, and I want to determine the relative contribution of each variable ($A, B$ and $C$) to the difference $T-F$.
In two dimensions, I thought I could compute the distance between ($A,B$) and the closest point on the curve $F=T$, and determine which variable contributes the most to this distance. But it does not look like the easiest solution in 3 or more dimensions.
Thank you for your help!