Solutions Quantifiers3 2: Difference between revisions

From Lexical Resource Semantics
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 2: Line 2:


<!-- ∀x (PERSON (x) &sup; ∃y (PERSON (y) & LOVE (x, y)) -->
<!-- ∀x (PERSON (x) &sup; ∃y (PERSON (y) & LOVE (x, y)) -->
&forall;''x'' ('''person'''(''x'') &sup; &exist;''y'' ('''person'''(''y'') &and; '''love'''(''x'',''y'')
&forall;''x'' ('''person'''(''x'') &sup; &exist;''y'' ('''person'''(''y'') &and; '''love'''(''x'',''y'')


Or, in restricted-quantifier notation:
Or, in restricted-quantifier notation: &forall;''x'' ('''person'''(''x'') : &exist;''y'' ('''person'''(''y'') : '''love'''(''x'',''y'')
 
&forall;''x'' ('''person'''(''x'') : &exist;''y'' ('''person'''(''y'') : '''love'''(''x'',''y'')


2. There is one person that is loved by everyone:
2. There is one person that is loved by everyone:


<!-- ∃x (PERSON (x) → ∀y (PERSON (y) & LOVE (y, x)) -->
<!-- ∃x (PERSON (x) → ∀y (PERSON (y) & LOVE (y, x)) -->
&exist;''y'' ('''person'''(''y'') &sup; &forall;''x'' ('''person'''(''x'') &and; '''love'''(''x'',''y'')
&exist;''y'' ('''person'''(''y'') &sup; &forall;''x'' ('''person'''(''x'') &and; '''love'''(''x'',''y'')


Or, in restricted-quantifier notation:
Or, in restricted-quantifier notation: &forall;''x'' ('''person'''(''x'') : &exist;''y'' ('''person'''(''y'') : '''love'''(''x'',''y'')
 
&forall;''x'' ('''person'''(''x'') : &exist;''y'' ('''person'''(''y'') : '''love'''(''x'',''y'')






[[Exercise_Quantifiers#Scopal_Ambiguity|Return to Excercise]]
[[Exercise_Quantifiers#Scopal_Ambiguity|Return to Excercise]]

Latest revision as of 00:12, 15 November 2013

1. For every person there is at least one person who loves him / her:

x (person(x) ⊃ ∃y (person(y) ∧ love(x,y)

Or, in restricted-quantifier notation: ∀x (person(x) : ∃y (person(y) : love(x,y)

2. There is one person that is loved by everyone:

y (person(y) ⊃ ∀x (person(x) ∧ love(x,y)

Or, in restricted-quantifier notation: ∀x (person(x) : ∃y (person(y) : love(x,y)


Return to Excercise