FUZZY LOGIC

Rajarshi Dey
2 min readSep 18, 2021

--

Fuzzy membership function example

Fuzzy logic is an approach to computing based on “degrees of truth” rather than the usual “true or false” (1 or 0) Boolean logic.

FUZZY SETS

A Fuzzy set is a class of objects with a continuum of grades of membership. Such a set is characterized by a membership (characteristic) function which assigns to each object a grade of membership ranging between zero and one. The notions of inclusions, unions, intersection, complement, relation and convexity are extended to such sets, and various properties of these notions in the context of various fuzzy sets are established.

-Lofti A. Zadeh

A fuzzy set, is a set containing elements that have a varying degree of membership in the set. Elements of a fuzzy set are mapped to a universe of membership values using function — theoretic form.

A notation convention for fuzzy sets, when the universe of discourse, X, is discrete and finite, is as follows for a fuzzy set A:

A = {(μ A (x1))/x1 + (μ A (x2))/x2 + ………..}

= Σ {(μ A (xi))/xi}

When the universe is continuous and infinite, the fuzzy set A is denoted by:

A = {(μ A (x))/x} (the ‘division sign’ is not a quotient but a delimiter).

  • The numerator in each term is the membership value in set A associated with the element of the universe indicated in the denominator.
  • The summation symbol is not for algebraic summation but rather a collection/aggregation.

More…

MEMBERSHIP FUNCTION

Membership functions represent fuzzy subsets of X. The membership function which represents a fuzzy set A is usually denoted by μ A. For an element x of X, the value μ A (x) is called the membership degree of x in the fuzzy set A The membership degree μ A (x) quantifies the grade of membership of the element x to the fuzzy set A. The value 0 means that x is not a member of the fuzzy set; the value 1 means that x is fully a member of the fuzzy set. The values between 0 and 1 characterize fuzzy members, which belong to the fuzzy set only partially.

Since all information contained in a fuzzy set is described by its membership function, it is useful to develop a lexicon of terms to describe various special features of this function. For purposes of simplicity, the functions shown in the following figures will all be continuous, but the terms apply equally for both discrete and continuous fuzzy sets.

More…

--

--