FO(.)
In computer science, FO(.) (a.k.a. FO-dot) is a knowledge representation language based on first-order logic (FO).[1] It extends FO with types, aggregates (counting, summing, maximising ... over a set), arithmetic, inductive definitions, partial functions, and intensional objects. By itself, a FO(.) knowledge base cannot be run, as it is just a "bag of information", to be used as input to various generic reasoning algorithms. Reasoning engines that use FO(.) include IDP-Z3,[2] IDP[3][4] and FOLASP.[5] As an example, the IDP system allows generating models, answering set queries, checking entailment between two theories and checking satisfiability, among other types of inference over a FO(.) knowledge base. FO(.) has four types of statements:
ExampleA voting law specifies that citizens must be at least 18 years old to vote. Furthermore, if the voting law is interpreted as being prescriptive, voting is mandatory when you are over 18. This can be represented in FO(.) as follows: vocabulary V {
age: () → ℤ // function declaration
prescriptive, vote: () → 𝔹 // predicate declarations
}
theory T:V {
age() < 18 ⇒ ¬vote(). // axiom: if you are less than 18, you may not vote.
prescriptive() ⇒ (age() ≥ 18 ⇒ vote()). // axiom: if prescriptive: if you are at least 18, you must vote
}
In this code, A Such knowledge base can be turned automatically into an Interactive Lawyer[6] (see here[7]) References
External links |