Important Disclaimer

The purpose of this blog is purely to serve as a compilation of good technical material for my students. No financial or other motives are involved. Most of the content in this blog has been reproduced from other sources. I have made every attempt to mention the source link at the beginning of each blog. All readers are requested to kindly acknowledge that source and not this blog, in case you find the post helpful. However, I have not been able to trace the source links for some of my older posts. I wish to emphasize that this is not intentional and any help in this regard would be appreciated.

Mar 2, 2007

Fuzzy set Properties/ Operations

Fuzzy Set Operations

Fuzzy union (U): the union of two fuzzy sets is the maximum (MAX) of each element from two sets.

E.g.

A = {1.0, 0.20, 0.75}

B = {0.2, 0.45, 0.50}

A È B = {MAX(1.0, 0.2), MAX(0.20, 0.45), MAX(0.75, 0.50)} = {1.0, 0.45, 0.75}


Fuzzy intersection (Ç): the intersection of two fuzzy sets is just the MIN of each element from the two sets.

E.g.A B = {MIN(1.0, 0.2), MIN(0.20, 0.45), MIN(0.75, 0.50)} = {0.2, 0.20, 0.50}



Complement ( _c): The complement of a fuzzy set is composed of all elements’ complement.

The complement of a fuzzy variable with DOM x is (1-x).

Example.

Ac = {1 – 1.0, 1 – 0.2, 1 – 0.75} = {0.0, 0.8, 0.25}

No comments: