{ (LOVE,2),
(CUSTOMER,1),
(ROBBER,1),
(MIA,0),
(VINCENT,0),
(HONEY-BUNNY,0),
(YOLANDA,0) }.
Describe the given vocabulary using the right terminology (constants, relation, property, arity)
Devise a simple Prolog notation for representing vocabularies (for example, take our set-theoretic notation and use Prolog lists in place of the curly-brackets and ordered pairs). Write a program which checks that something written in your notation really is a first-order vocabulary. For example, it should check that each symbol is associated with a number giving its arity, and that no symbol is used in two different ways.
A model is an ordered pair with domain and interpretation function .
D3 = { d1 , d2, d3, d4, d5}
F3(MIA) = d2
F3(HONEY-BUNNY) = d1
F3(VINCENT) = d4
F3(YOLANDA) = d1
F3(CUSTOMER) = {d1,d2,d4}
F3(ROBBER) = {d3,d5}
F3(LOVE) = {(d3,d4)}.
A first-order language over a vocabulary uses the following ingredients:
Some terminology:
Defintion of well formed formulas (wffs):
- All atomic formulas are wffs.
- If and are wffs then so are .
- If is a wff, and x is variable, then both and are wffs. (We call the matrix of such wffs.)
- Nothing else is a wff.
Brackets can be ommited (take care of the precedence of the Boolean operators).
free/bound variables:
- Any occurrence of any variable is free in any atomic formula.
- If an occurrence of any variable is free in or in , then that same occurrence is free in , , , and .
- If an occurrence of a variable is free in , then that occurrence is free in and (for any variable y distinct from x). However, no occurrence of x is free in and .
- The only free variables in a formula are those whose freeness follows from the preceding clauses. Any variable in a formula that is not free is said to be bound.
A formula that contains no occurrences of free variables is called a sentence of first-order logic.
Exercise 1.1.5 Represent the following English sentences in first-order logic:
Exercise 1.1.8 Give an inductive definition of subformulahood. That is, for each kind of formula in the language (atomic, boolean, and quantified) specify exactly what its subformulas are. The subformulas of a formula are itself and all the formulas used to build .
Why is it not trivial to define the truth of a sentence inductively (in terms of subformulas)?
satisfaction formulas models assignments
Given a model M = (D, F), an assignment of values to variables in M (or more simply, an assignment in M) is a function g from the set of variables to D.
Let M = (D, F) be a model, let g be an assignment in M, and let be a term. Then the interpretation of with respect to M and g is F() if is a constant, and g() if is a variable. We denote the interpretation of by .
Let g be an assignment in some model M, and let x be a variable. If g’ is also an assignment in M, and for all variables y distinct from x we have that g’(y)= g(y), then we say that g’ is an x-variant of g.
Let be a formula, let M = (D, F) be a model, and let g be an assignment in M. Then the relation ( is satisfied in M with respect to the assignment g) is defined inductively as follows:
A sentence is true in a model M if and only if for any assignment g of values to variables in M, we have that . If is true in M we write .
- All constants and variables are terms.
- If f is a function symbol of arity n, and are terms, then is also a term.
- Nothing else is a term.
A term is said to be closed if and only if it contains no variables.
If is a term of the form , then we define to be .
is a two-place relational symbol with fixed interpretation (logical symbol): For any model M, any assignment g in M, and any terms and :
The domain can be sorted into subclasses (animate/inanimate ). The interpretation of a sorted variable is restricted to its corresponding subclass.
Exercise 1.1.18 There is a famous analysis, due to the philosopher Bertrand Russell, of the meaning of the determiner the in sentences like The robber is screaming. Russell claims that this sentence would be true in some situation if (a) there was at least one robber in the situation, (b) there was at most one robber in the situation, and (c) that robber was screaming. Write down a first-order sentence which expresses this analysis of The robber is screaming. Note: you will have to use the equality symbol.
some analogies made in the text:
The Querying Task: Given a model M and a first-order formula , is satisfied in M or not?
pretheoretic concept:
A first-order formula is called satisfiable if it is satisfied in at least one model. A formula that is not satisfiable in any model is called unsatisfiable.
A finite set of formulas is satisfiable if is satisfiable.
Note that satisfiability (and unsatisfiability) are model-theoretic or (as it is sometimes put) semantic concepts. That is, both concepts are defined using the notion of satisfaction in a model, and nothing else. Furthermore, note that satisfiability (and unsatisfiability) are mathematically precise concepts: we know exactly what first-order languages and first-order models are, and we know exactly what it means when we claim that a formula is satisfied in a model.
The Consistency Checking Task: Given a first-order formula , is consistent (that is: satisfiable) or inconsistent (that is: unsatisfiable)?
A valid formula is a formula that is satisfied in all models (of the appropriate vocabulary) given any variable assignment. If is a valid formula we write . A formula that is not valid is called invalid ().
Suppose , and are a finite collection of first-order formulas. Then we say that the argument with premises and conclusion is a valid argument if and only if whenever all the premises are satisfied in some model, using some variable assignment, then the conclusion is satisfied in the same model using the same variable assignment. The notation
means that the argument with premises and conclusion is valid.
Alternative terminology:
The Informativity Checking Task: Given a first-order formula , is informative (that is: invalid) or uninformative (that is: valid)?
% Prolog representation of a vocabulary
relation(love,2).
relation(hate,2).
relation(tell,2).
relation(customer,1).
relation(robber,1).
constant(mia).
constant(vincent).
constant(honey_bunny).
constant(pumpkin).
% example(Number, Model)
test(_).
member(X,"hello").
test(X).
example(1,[customer(mia),customer(vincent),
robber(pumpkin),robber(honey_bunny),
love(pumpkin,honey_bunny)]).
example(2,[customer(mia),
robber(pumpkin),robber(honey_bunny),
love(pumpkin,honey_bunny)]).
% Representing Models in Prolog
% model(Domain,InterpretationFunctionF)
model([d1,d2,d3,d4,d5],
[f(O,jules,d1),
f(O,vincent,d2),
f(O,pumpkin,d3),
f(O,honey_bunny,d4),
f(O,yolanda,d5),
f(1,customer,[d1,d2]),
f(1,robber,[d3,d4]),
f(2,love,[(d3,d4)])]).
% satisfy/4
% statisfy(Formula,Model,Assignment,Polarity)
%% complex formulas
% not
satisfy(not(Formula),Model,G,pos):
satisfy(Formula,Model,G,neg).
satisfy(not(Formula),Model,G,neg):
satisfy(Formula,Model,G,pos).
% and
satisfy(and(Formula1,Formula2),Model,G,pos):
satisfy(Formula1,Model,G,pos),
satisfy(Formula2,Model,G,pos).
satisfy(and(Formula1,Formula2),Model,G,neg):
satisfy(Formula1,Model,G,neg);
satisfy(Formula2,Model,G,neg).
% or
satisfy(or(Formula1,Formula2),Model,G,pos):
satisfy(Formula1,Model,G,pos);
satisfy(Formula2,Model,G,pos).
satisfy(or(Formula1,Formula2),Model,G,neg):
satisfy(Formula1,Model,G,neg),
satisfy(Formula2,Model,G,neg).
% imp
satisfy(imp(Formula1,Formula2),Model,G,Pol):
satisfy(or(not(Formula1),Formula2),Model,G,Pol).
Warum ist satisfy
4-stellig? Wozu benötigen wir das Polarity
-Argument?
% satisfy/4
% statisfy(Formula,Model,Assignment,Polarity)
%% Quantifiers
% some
satisfy(some(X,Formula),model(D,F),G,pos):-
memberList(V,D),
satisfy(Formula,model(D,F),[g(X,V)|G],pos).
satisfy(some(X,Formula),model(D,F),G,neg):
setof(V,(
memberList(V,D),
satisfy(Formula,model(D,F),[g(X,V)|G],neg)
),
Dom),
setof(V,memberList(V,D),Dom).
% all
satisfy(all(X,Formula),Model,G,Pol):
satisfy(not(some(X,not(Formula))),Model,G,Pol).
memberList/2
hat dieselbe Definition wie member
.setof(V,memberList(V,D),Dom)
, könneten wir nicht direkt mit D
anstelle von Dom
in den Zeilen darüber arbeiten? ```{.prolog} % satisfy/4 % statisfy(Formula,Model,Assignment,Polarity)%% atomic formulas % 1-place predicates satisfy(Formula,model(D,F),G,pos): compose(Formula,Symbol,[Argument]), i(Argument,model(D,F),G,Value), memberList(f(1,Symbol,Values),F), memberList(Value,Values). satisfy(Formula,model(D,F),G,neg): compose(Formula,Symbol, [Argument]), i(Argument,model(D,F),G,Value), memberList(f(1,Symbol,Values),F), + memberList(Value,Values).
% 2-place predicates satisfy(Formula,model(D,F),G,pos): compose(Formula,Symbol,[Arg1,Arg2]), i(Arg1,model(D,F),G,Value1), i(Arg2,model(D,F),G,Value2), memberList(f(2,Symbol,Values),F), memberList((Value1,Value2),Values). satisfy(Formula,model(D,F),G,neg): compose(Formula,Symbol,[Arg1,Arg2]), i(Arg1,model(D,F),G,Value1), i(Arg2,model(D,F),G,Value2), memberList(f(2,Symbol,Values),F), + memberList((Value1,Value2),Values).
% equality (2-place predicate with fixed interpretation)
satisfy(eq(X,Y),Model,G,pos): i(X,Model,G,Value1), i(Y,Model,G,Value2),
Value1=Value2. satisfy(eq(X,Y),Model,G,neg): i(X,Model,G,Value1),
i(Y,Model,G,Value2), + Value1=Value2. ``* Warum haben wir in der equality-Definition
Value1=Value2und nicht
Value1==Value2`?
compose(Term,Symbol,ArgList):-
Term = .. [SymbollArgList].
% i/4
% i(Variable,Model,Assignment,AssignedValue)
i(X,model(_,F),G,Value):-
(var(X),
memberList(g(Y,Value),G),
Y==X, !
atom(X),
memberList(f(O,X,Value),F)
).
satisfy/4
lauten, um die Formel some(X,and(customer(X),some(X,robber(X))))
in Model 1 zu evaluieren?X
in zwei unterschiedlichen Bindungskontexten vorkommt.customer(X)
erfüllen, wie muss die Anfrage lauten?How can we automate the process of associating semantic representations with natural language expressions?
%%%%%%%%%%%%%%%%%
% Syntax-Semantics Rules
%%%%%%%%%%%%%%%%%
% quantifier free sentences
s(Sem)--> np(SemNP), vp(Sem),
{
arg(1,Sem,SemNP)
}.
np(Sem)--> pn(Sem).
vp(Sem)--> tv(Sem), np(SemNP),
{
arg(2,Sem,SemNP)
}.
%%%%%%%%%%%%%%%%%
% quantifier sentences
s(Sem)--> np(Sem), vp(SemVP),
{
arg(1,SemVP,X),
arg(1,Sem,X),
arg(2,Sem,Matrix),
arg(2,Matrix,SemVP)
}.
np(Sem)--> det(Sem), noun(SemNoun),
{
arg(1,SemNoun,X),
arg(1,Sem,X),
arg(2,Sem,Matrix),
arg(1,Matrix,SemNoun)
}.
vp(Sem)--> tv(SemTV), np(Sem),
{
arg(2,SemTV,X),
arg(1,Sem,X),
arg(2,Sem,Matrix),
arg(2,Matrix,SemTV)
}.
vp(Sem)--> iv(Sem).
%%%%%%%%%%%%%%%%%
% Lexicon
%%%%%%%%%%%%%%%%%
% Proper Names
pn(mia)--> [mia].
% Transitive Verbs
tv(love(_,_))--> [loves].
% Intransitive Verbs
iv(snort(_))--> [snorts].
% Determiners
det(exists(_,_ & _))--> [a].
% Nouns
noun(woman(_))--> [woman].
* Wie arbeitet die Regel NP -> PN?