FSU Seal - 1851

CAP 5605
Artificial Intelligence
Chris Lacher
Stanford CF Algebra

Stanford Certainty factor Algebra

For a hypothesis (or rule) H:


Combining Certainty Factors:


Example:

Rule Base
--------
 R1: if a and b then x  (cf = 0.5)
 R2: if c or d then x   (cf = 0.7)

Dynamic Input:
-------------
 a, with certainty 1.0
 b, with certainty 0.8
 c, with certainty 0.9
 d, with certainty 0.7

Compute CF values for x:
-----------------------
CF(a and b) = MIN{1.0, 0.8} = 0.8
 ==> CF1(x) = 0.8 * 0.5 = 0.4

CF(c or d) = MAX{0.9, 0.7} = 0.9
 ==> CF2(x) = 0.9 * 0.7 = 0.63

CF(x) = 0.4 + 0.63 - 0.4*0.63 = 0.778  

Closed Form