How Fuzzy Overlay works

The Fuzzy Overlay tool allows the analysis of the possibility of a phenomenon belonging to multiple sets in a multicriteria overlay analysis. Not only does Fuzzy Overlay determine what sets the phenomenon is possibly a member of, it also analyzes the relationships between the membership of the multiple sets.

Overlay type lists the methods available to combine the data based on set theory analysis. Each method allows the exploration of the membership of each cell belonging to various input criteria. The available methods are Fuzzy And, Fuzzy Or, Fuzzy Product, Fuzzy Sum, and Fuzzy Gamma. Each approach provides a different aspect of each cell's membership to the multiple input criteria.

Fuzzy And

The Fuzzy And overlay type will return the minimum value of the sets the cell location belongs to. This technique is useful when you want to identify the least common denominator for the membership of all the input criteria. For example, in a housing suitability model, you may only want to select locations that have at least a 0.5 or greater possibility of being suitable for all the criteria.

Fuzzy And uses the following function in the evaluation:

 fuzzyAndValue = min(arg1, ..., argn)

Fuzzy Or

The Fuzzy Or overlay type will return the maximum value of the sets the cell location belongs to. This technique is useful when you want to identify the highest membership values for any of the input criteria. For example, in a housing suitability model, you may want to identify all locations that have at least one of the criteria being fully in the suitable set, a value of 1.

Fuzzy Or uses the following function in the evaluation:

 fuzzyOrValue = max(arg1, ..., argn)

Fuzzy Product

The Fuzzy Product overlay type will, for each cell, multiply each of the fuzzy values for all the input criteria. The resulting product will be less than any of the input, and when a member of many sets is input, the value can be very small. It is difficult to correlate the product of all the input criteria to the relative relationship of the values. The Fuzzy Product option is not used often.

Fuzzy Product uses the following function in the evaluation:

 fuzzyProductValue = product(arg1, ..., argn)

Fuzzy Sum

The Fuzzy Sum overlay type will add the fuzzy values of each set the cell location belongs to. The resulting sum is an increasing linear combination function that is based on the number of criteria entered into the analysis.

Fuzzy Sum is not an algebraic sum and should not be confused with the additive approach used in the Weighted Overlay and Weighted Sum tools. These two overlay approaches assume that the more favorable input, the better. To add all the membership values in a Fuzzy Sum analysis does not necessarily mean the location is more suitable. The Fuzzy Sum option is not used often.

Fuzzy Sum uses the following function in the evaluation:

 fuzzySumValue = 1 - product(1 - arg1, ..., 1 - argn)

Fuzzy Gamma

The Fuzzy Gamma type is an algebraic product of Fuzzy Product and Fuzzy Sum, which are both raised to the power of gamma. The generalize function is as follows:

 µ(x) = (FuzzySum)γ * (FuzzyProduct)1-γ

This is the specific function used by Fuzzy Gamma:

 fuzzyGammaValue = pow(1 - ((1 - arg1) * (1 - arg2) * ...), Gamma) * 
                    pow(arg1 * arg2 * ..., 1 - Gamma)

If the specified gamma is 1, the output is the same as Fuzzy Sum; if gamma is 0, the output is the same as Fuzzy Product. Fuzzy Gamma is a compromise of the increasing effect of Fuzzy Sum and the decreasing effect of Fuzzy Product. The following graphic defines the relationship of gamma to the Fuzzy Sum and Fuzzy Product terms:

Relationship of Gamma to other fuzzy relationship types
Relationship of Fuzzy Gamma to other fuzzy relationship types

Fuzzy Gamma establishes the relationships between the multiple input criteria and does not simply return the value of a single membership set as does Fuzzy Or and Fuzzy And.

You can use Fuzzy Gamma when you want values greater than Fuzzy Or but less than Fuzzy Sum.

Related Topics


6/29/2011