@prefix math: . @prefix owl: . @prefix e: . @prefix fl: . @prefix : . :Ann a :Person; :age 18.1666. {?P a :Person; :age ?A. ?A math:lessThan 17} => {(?P :ChildAge) fl:mu 1.0}. {?P a :Person; :age ?A. ?A math:notLessThan 17; math:lessThan 19. (?A 17) math:difference ?Y. (?Y 2) math:quotient ?X. (1.0 ?X) math:difference ?M} => {(?P :ChildAge) fl:mu ?M}. {?P a :Person; :age ?A. ?A math:notLessThan 19} => {(?P :ChildAge) fl:mu 0.0}. {?P a :Person; :age ?A. ?A math:lessThan 17} => {(?P :AdultAge) fl:mu 0.0}. {?P a :Person; :age ?A. ?A math:notLessThan 17; math:lessThan 19. (?A 17) math:difference ?X. (?X 2) math:quotient ?M} => {(?P :AdultAge) fl:mu ?M}. {?P a :Person; :age ?A. ?A math:notLessThan 19} => {(?P :AdultAge) fl:mu 1.0}.