I'm new to logical programming and find it difficult to understand the difference between rules and queries, I feel they are basically the same. Any help to clarify this would be greatly appreciated.
feedback
|
|
Syntactically, they are largely the same; " Semantically, they are not. | |||
|
feedback
|
|
A rule is a definition such as
as it appears in a Prolog program. A query is either the right hand side of a definition like the above, i.e. | |||||
feedback
|
|
A query is a statement you are asking to have proven (which in the process of doing so may instantiate variables, which can server as your "output"); rules make up the "program" used to develop that proof. | |||
|
feedback
|
|
Your intuition is correct: they're both variations on a Horn clause. The basic structure of a Horn clause is:
If you have a head without a body, you have a fact. If you have both, you have a predicate. If you have just a body, then you have a query. | |||||
feedback
|