Many-sorted logic explained
Many-sorted logic can reflect formally our intention not to handle the universe as a homogeneous collection of objects, but to partition it in a way that is similar to types in typeful programming. Both functional and assertive "parts of speech" in the language of the logic reflect this typeful partitioning of the universe, even on the syntax level: substitution and argument passing can be done only accordingly, respecting the "sorts".
There are various ways to formalize the intention mentioned above; a many-sorted logic is any package of information which fulfils it. In most cases, the following are given:
- a set of sorts, S
- an appropriate generalization of the notion of signature to be able to handle the additional information that comes with the sorts.
The domain of discourse of any structure of that signature is then fragmented into disjoint subsets, one for every sort.
Example
When reasoning about biological organisms, it is useful to distinguish two sorts:
and
. While a function
mother\colonanimal\toanimal
makes sense, a similar function
mother\colonplant\toplant
usually does not. Many-sorted logic allows one to have terms like
, but to discard terms like
as syntactically ill-formed.
Algebraization
The algebraization of many-sorted logic is explained in an article by Caleiro and Gonçalves,[1] which generalizes abstract algebraic logic to the many-sorted case, but can also be used as introductory material.
Order-sorted logic
While many-sorted logic requires two distinct sorts to have disjoint universe sets, order-sorted logic allows one sort
to be declared a subsort of another sort
, usually by writing
or similar syntax. In the above biology example, it is desirable to declare
,
,
,
,
,
, and so on; cf. picture.
Wherever a term of some sort
is required, a term of any subsort of
may be supplied instead (
Liskov substitution principle). For example, assuming a function declaration
mother:animal\longrightarrowanimal
, and a constant declaration
, the term
is perfectly valid and has the sort
. In order to supply the information that the mother of a dog is a dog in turn, another declaration
mother:dog\longrightarrowdog
may be issued; this is called
function overloading, similar to
overloading in programming languages.
Order-sorted logic can be translated into unsorted logic, using a unary predicate
for each sort
, and an axiom
for each subsort declaration
. The reverse approach was successful in automated theorem proving: in 1985,
Christoph Walther could solve a then benchmark problem by translating it into order-sorted logic, thereby boiling it down an order of magnitude, as many unary predicates turned into sorts.
[2] In order to incorporate order-sorted logic into a clause-based automated theorem prover, a corresponding order-sorted unification algorithm is necessary, which requires for any two declared sorts
their intersection
to be declared, too: if
and
are variables of sort
and
, respectively, the equation
has the solution
, where
.
Smolka generalized order-sorted logic to allow for parametric polymorphism.[3] In his framework, subsort declarations are propagated to complex type expressions.As a programming example, a parametric sort
may be declared (with
being a type parameter as in a C++ template), and from a subsort declaration
the relation
list(int)\subseteqlist(float)
is automatically inferred, meaning that each list of integers is also a list of floats.
Schmidt-Schauß generalized order-sorted logic to allow for term declarations.[4] As an example, assuming subsort declarations
and
, a term declaration like
allows to declare a property of integer addition that could not be expressed by ordinary overloading.
See also
References
Early papers on many-sorted logic include:
- Wang, Hao. Logic of many-sorted theories. Journal of Symbolic Logic. 1952. 17. 2. 105–116. 10.2307/2266241. 2266241., collected in the author's Computation, Logic, Philosophy. A Collection of Essays, Beijing: Science Press; Dordrecht: Kluwer Academic, 1990.
- Gilmore, P.C.. An addition to "Logic of many-sorted theories". Compositio Mathematica. 1958. 13. 277–281.
- A. Oberschelp. Untersuchungen zur mehrsortigen Quantorenlogik. Mathematische Annalen. 1962. 145. 4. 297–333. 10.1007/bf01396685. 123363080. 2013-09-11. https://web.archive.org/web/20150220005037/http://gdz.sub.uni-goettingen.de/index.php?id=11&L=4&PPN=GDZPPN002289989&L=1. 2015-02-20. dead.
- F. Jeffry Pelletier. Sortal Quantification and Restricted Quantification. Philosophical Studies. 1972. 23. 6. 400–404. 10.1007/bf00355532. 170303654.
External links
Notes and References
- Book: Carlos Caleiro, Ricardo Gonçalves. On the algebraization of many-sorted logics. Proc. 18th int. conf. on Recent trends in algebraic development techniques (WADT). 2006. 21–36. Springer. 978-3-540-71997-7.
- Christoph. Walther. A Mechanical Solution of Schubert's Steamroller by Many-Sorted Resolution. Artif. Intell.. 26. 2. 217–224. 1985. 10.1016/0004-3702(85)90029-3.
- Gert. Smolka. Logic Programming with Polymorphically Order-Sorted Types. Int. Workshop Algebraic and Logic Programming. Springer. LNCS. 343. 53–70. Nov 1988.
- Book: Manfred. Schmidt-Schauß. Computational Aspects of an Order-Sorted Logic with Term Declarations. Springer. LNAI. 395. Apr 1988.