Fuzzy Operators


Operation Definition 
fuzzy AND (f-AND) a f-AND b = min(a,b) 
fuzzy OR (f-OR) a f-OR b = max(a,b) 
probability AND (p-AND) a p-AND b = a*b 
probability OR (p-OR) a p-OR b = a+b-(a*b) 
(same as unary NOT) not a = 1-a 
 Javascript exercise about fuzzy operations


Fuzzy Intersection
Fuzzy Union
Fuzzy Complement

Go to next page
Return to Logical operators as related to fuzzy logic