Is there a method where given an algebraic expression one can determine which variables within the expression contribute most to the expression's final result, either positively or negatively? There can be multiple instances of each variable within the expression, which must be treated as a single variable (i.e. their effects average).
For example, take the expression: x = a3 + b2 - c
In this case, assuming a, b and c have the same real, >1 possible value range distributions, a has the largest positive effect of the value of x and c has the largest negative value effect.
Extra question: if the above exists, is there further functionality to restrict the value range of certain variables. e.g. a can only be in the range {0-1}, b in the set {0, 1, ... , 99, 100}, etc.
Apologies if this has already been asked. My range of search terms may be the limiting factor. Will delete the question if duplicate found. Appreciate any help offered. Thanks.