SlideShare a Scribd company logo
1 of 31
Download to read offline
Dependent Types in Natural Language Semantics
Daisuke Bekki†‡ §
†Ochanomizu University
‡CREST, Japan Science and Technology Agency
National Institute of Informatics
§National Institute of Advanced Industrial Science and Technology
4th July, 2015
The Second International Workshop on Linguistics of BA
at Future University Hakodate
1. Proof-theoretic turn in discourse
representation
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 2/31
1.1. Donkey and E-type anaphora
Since 1980, the enterprise of dynamic semantics has pursued an alternative frame-
work to Montagovian semantics, which compensates for the gap between syntactic
structures of natural language sentences involving dynamic binding. The difficulty
of this pursuit implies that there is tension between dynamism and compositionality,
which have not yet been unified in a coherent semantic theory that accounts for both
aspects.
This tension has been the driving force behind dynamic semantics, and in fact
some theories have achieved partial success in unifying the two aspects. Thus, I
should clarify what I mean by dynamism and compositionality. Dynamic semantics
explores various empirical data concerning dynamic binding, whose nature is exem-
plified by the two paradigms of donkey sentences in (1) by Geach (1962) and E-type
anaphora in (2) by Evans (1980).
(1) a. Every farmer who owns [a donkey]i beats iti.
b. If [a farmer]i owns [a donkey]j , hei beats itj.
(2) [A man]i entered. Hei whistled.
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 3/31
1.1. Donkey and E-type anaphora
As discussed elsewhere, (1a), for example, is problematic in terms of composition-
ality. Compositional semantic theory is such that it provides a way to calculate any
semantic representation of any target sentence from the semantic representations
of its parts. The structural analogue of (1a) (and (1b)), which allows us to give
a straightforward compositional analysis, is (3). However, it is not an appropriate
semantic representation for (1a) since variable y occurs as a free variable outside of
the scope of ∃y.
(3) ∀x(Farmer(x) ∧ ∃y(Donkey(y) ∧ Own(x, y)) → Beat(x, y))
In the same way, the structural analogue of (2) is (4), which is not an appropriate
representation for (2) since variable x in Whistle(x) is not bound by ∃x.
(4) ∃x(Man(x) ∧ Enter(x)) ∧ Whistle(x)
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 4/31
1.1. Donkey and E-type anaphora
The first-order representations for sentences (1) and (2) necessary in order to
correctly calculate their entailment relations are (5) and (6), respectively.
(5) ∀x(Farmer(x) → ∀y(Donkey(y) ∧ Own(x, y) → Beat(x, y)))
(6) ∃x(Man(x) ∧ Enter(x)∧Whistle(x))
These represent proper information that the sentences (1) and (2) contain, in
a sense that any proof system for first-order predicate logic will prove that the
inferences in Example 1 and Example 2 are valid.
On the other hand, the structural similarity to the original sentences is lost in
(5) and (6), so their direct decomposition does not lead to the respective lexicalized
representations.
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 5/31
1.1. Donkey and E-type anaphora
Example 1 (Donkey Syllogism).
Every farmer who owns [a donkey]i beats iti.
John is a farmer.
Bill is a donkey.
John owns Bill.
John beats Bill.
Example 2 (E-type Syllogisms).
[A man]i entered.
Hei whistled.
A man entered.
[A man]i entered.
Hei whistled.
A man whistled.
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 6/31
1.2. Proof-theoretic turn: Sundholm and Ranta
Sundholm (1986) noticed fairly early that dependent type theory provides se-
mantic representations for donkey sentences whose structures are parallel to their
syntactic structures in a different way from DRT Kamp (1981), Kamp and Reyle
(1993), DPL Groenendijk and Stokhof (1991), and their successors.
(7) a. A man entered. He whistled.
⎡
⎢
⎢
⎣
u:
⎡
⎣
x:entity
man(x)
enter(x)
⎤
⎦
whistle(π1(u))
⎤
⎥
⎥
⎦
(8) a. Every farmer who owns a donkey beats it.
(x:entity) →
⎛
⎜
⎜
⎝u:
⎡
⎢
⎢
⎣
farmer(x)⎡
⎣
y:entity
donkey(y)
own(x, y)
⎤
⎦
⎤
⎥
⎥
⎦
⎞
⎟
⎟
⎠ → beat(x, π1π2(u))
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 7/31
1.3. Key concepts
1. Proof-theoretic semantics (vs. Model-theoretic semantics)
2. Curry-Howard Correspondence (between logic type theory)
3. Dependent types (vs. Simple types)
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 8/31
2. Proof-theoretic Semantics,
Curry-Howard Correspondence,
and Dependent Types
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 9/31
2.1. Proof-theoretic vs. model-theoretic semantics
The ‘meaning’ of a given proposition φ:
The Proof-theoretic Semantics Model-theoretic Semantics
Provability, or {Γ | Γ φ} Truth-condition, or {(M, g) | φ M,g = 1}
Inference rules Semantic Values
(natural deduction): (classical logic):
A....
B
i
A → B
(→I ),i
A A → B
B
(→E)
A B
A ∧ B
(∧I )
A1 ∧ A2
Ai
(∧E),i=1,2
A → B M,g = 1
⇐⇒ A M,g = 0 or B M,g = 1
A ∧ B M,g = 1
⇐⇒ A M,g = 1 and B M,g = 1
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 10/31
2.2. Curry-Howard Correspondence
Propositional Logic Simply-Typed Lambda Calculus
A....
B
i
A → B
(→I ),i
x : A....
B
i
λx.M : A → B
(→I ),i
A A → B
B
(→E)
N : A M : A → B
MN : B
(→E)
A B
A ∧ B
(∧I )
M : A N : B
(M, N) : A × B
(∧I )
A1 ∧ A2
Ai
(∧E),i=1,2
(M1, M2) : A1 × A2
πi(M) : Ai
(×E),i=1,2
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 11/31
2.3. Curry-Howard Isomorphism
The correspondence between the notions of logic and type theory:
Logic Type Theory
proposition type
proof term
axiom constant symbol
assumption variable
provability inhabitance
cut substitution
normalization reduction
. . . . . .
• A term is an encoding of a proof of a type(=proposition)
• A proposition can be regarded as a collection of proofs.
• φ is true under Γ iff φ is inhabited under Γ.
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 12/31
2.4. Dependent function/sum Types
• Dependent function type (x:A) → B is a generalized form of the function/implication
type A → B:
A → B
def
≡ (x:A) → B where x /∈ fv(B).
∀xB
def
≡ (x:entity) → B
• Dependent sum type
x:A
B
is a generalized form of the product/conjunction
type A × B:
A ∧ B
def
≡
x:A
B
where x /∈ fv(B).
∃xB
def
≡
x:entity
B
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 13/31
2.4. Dependent function/sum Types
Natural deduction rules for dependent types:
(x:A) → B : s
x : A....
M : B
i
λx : A.M : (x:A) → B
(ΠI ),i
M : (x:A) → B N : A
MN : B[N/x]
(ΠE)
M : A N : B[M/x]
(M, N) :
x:A
B
(ΣI )
M :
x:A
B
π1(M) : A
(ΣE)
M :
x:A
B
π2(M) : B[π1(M)/x]
(ΣE)
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 14/31
2.5. Dependent Types in Natural Language
Semantics
(9) Donkey anaphora: Sundholm (1986)
a. Every farmer who owns a donkey beats it.
b. (x:entity) →
⎛
⎜
⎜
⎝u:
⎡
⎢
⎢
⎣
farmer(x)⎡
⎣
y:entity
donkey(y)
own(x, y)
⎤
⎦
⎤
⎥
⎥
⎦
⎞
⎟
⎟
⎠ → beat(x, π1π2(u))
(10) E-type anaphora: Ranta (1994)
a. A man entered. He whistled.
b.
⎡
⎢
⎢
⎣
u:
⎡
⎣
x:entity
man(x)
enter(x)
⎤
⎦
whistle(π1(u))
⎤
⎥
⎥
⎦
Recall that (x:A) → B is a type for functions from A to B[x], and
x:A
B
is a
type for pairs of A and B[x].
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 15/31
2.6. Previous Works
Subsequently, the following three approaches have been proposed to obtain Sund-
holmian representations:
1. Ahn and Kolb (1990) provides a set of translation rules from DRS to Dependent
Type representations
2. D´avila-P´erez (1995) presented a reformulation of Montague Grammar Mon-
tague (1973) in terms of MLTT.
3. Ranta (1994) proposed a generative theory of grammar based on MLTT, known
as Type-Theoretical Grammar (TTG).
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 16/31
2.6. Previous Works
• Relative and Implicational Donkey Sentences, Branching Quantifiers, Inten-
sionality, Tense: Ranta (1994)
• Summation: Fox (1994a,b)
• Presupposition Binding and Accommodation, Bridging: Krahmer and Piwek
(1999), Piwek and Krahmer (2000)
• Coercion: Luo (1997, 1999, 2010, 2012b), Asher and Luo (2012)
• Adverbs: Chatzikyriakidis (2014)
• New frameworks: Cooper (2005), Luo (2012a), Bekki (2014), Martin and Pol-
lard (2014)
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 17/31
2.6. Previous Works
Recent works in our group:
• Generalized Quantifiers: Tanaka et al. (2013), Tanaka (2014)
• Type checking/inference in DTS and its implementation: Bekki and Sato
(2015)
• Modal Subordination: Tanaka et al. (2014)
• Factive Presupposition: Tanaka et al. (2015)
• Conventional Implicature: Bekki and McCready (2014), Watanabe et al. (2014)
• Double-Negated Antecedents: Bekki (2013)
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 18/31
A. Appendix
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 19/31
A.1. Dependent Types in Mathematics and Logic
• The notion of dependent types originates from:
– Martin-L¨of Type Theory (MLTT) (Martin-L¨of (1975, 1984)), which was
proposed as a foundation of constructive mathematics.
– Calculus of Constructions (CoC) (Coquand and Huet (1988)), which was
proposed as a foundation of functional programming and mathematical
proofs.
• Lately, fragments of MLTT and CoC have been integrated into a general the-
ory of the λ-cube (Barendregt (1992)) and Pure Type Systems (PTS) (Berardi
(1990); Barendregt (1991)) with other important type theories, such as Gi-
rard’s F (Girard et al. (1989)).
• Calculus of Inductive Constructions (CoIC) (=CoC with inductive types) is
known as an underlying language of proof assistants Coq (Bertot and Cast´eran
(2004)) and Agda (Nordstr¨om et al. (1990), Bove and Dybjer (2008)).
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 20/31
A.1. Dependent Types in Mathematics and Logic
The term “Dependent Type Theory” usually covers:
• λP is an extention of Simple Type Theory (λ→) with dependent functional
type Π. (cf. Barendregt Cube) λω λC
λ2

λP2

λω λPω
λ→

λP

• Martin-L¨of/Constructive/Intuitionistic/Modern Type Theory is an extention
of λP with dependent sum type Σ, (dependent) record type, Equational type,
and Natural Numbers, Inductive types, etc.
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 21/31
A.2. What is NOT Dependent Type Theory
• Type-Theoretic Semantics (ex. Montague (1973), Gallin (1975)), where a
proposition is a term of type t, while in Dependent Type Theory, a propo-
sition is a type (=a collection of proofs).
• Dependent Type Theory is proof-theoretic, but it has a denotational semantics
(cf. fibred category theory: Jacobs (1999)) and other types of semantics (cf.
game-theoretic semantics) as well.
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 22/31
References
References
Ahn, R. and H.-P. Kolb. (1990) “Discourse Representation meets Constructive Math-
ematics”, In: L. Kalman and L. Polos (eds.): Papers from the Second Symposium
on Logic and Language. Akademiai Kiado.
Asher, N. and Z. Luo. (2012) “Formalisation of coercions in lexical semantics”, In
the Proceedings of Sinn und Bedeutung 17. Paris, pp.63–80.
Barendregt, H. P. (1991) “Introduction to generalized type systems”, Journal of
Functional Programming 1(2), pp.125–154.
Barendregt, H. P. (1992) “Lambda Calculi with Types”, In: S. Abramsky, D. M.
Gabbay, and T. Maibaum (eds.): Handbook of Logic in Computer Science, Vol. 2.
Oxford Science Publications, pp.117–309.
Bekki, D. (2013) “A Type-theoretic Approach to Double Negation Elimination in
Anaphora”, In the Proceedings of Logic and Engineering of Natural Language
Semantics 10 (LENLS 10). Tokyo.
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 23/31
References
Bekki, D. (2014) “Representing Anaphora with Dependent Types”, In the Proceed-
ings of N. Asher and S. V. Soloviev (eds.): Logical Aspects of Computational Lin-
guistics (8th international conference, LACL2014, Toulouse, France, June 2014
Proceedings), LNCS 8535. Toulouse, pp.14–29, Springer, Heiderburg.
Bekki, D. and E. McCready. (2014) “CI via DTS”, In the Proceedings of LENLS11.
Tokyo, pp.110–123.
Bekki, D. and M. Sato. (2015) “Calculating Projections via Type Checking”, In the
Proceedings of TYpe Theory and LExical Semantics (TYTLES), ESSLLI2015
workshop. Barcelona, Spain.
Berardi, S. (1990) “Type Dependence and Constructive Mathematics”, Ph.d thesis,
Mathematical Institute.
Bertot, Y. and P. Cast´eran. (2004) Interactive Theorem Proving and Program De-
velopment. Springer.
Bove, A. and P. Dybjer. (2008) “Dependent Types at Work”.
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 24/31
References
Chatzikyriakidis, S. (2014) “Adverbs in a Modern Type Theory”, In: N. Asher and
S. V. Soloviev (eds.): Logical Aspect of Computational Linguistics, 8th Interna-
tional Conference, LACL2014, Toulouse, France, June 18-20, 2014 Proceedings.
Springer.
Cooper, R. (2005) “Austinian truth, attitudes and type theory”, Research on Lan-
guage and Computation 3, pp.333–362.
Coquand, T. and G. Huet. (1988) “The Calculus of Constructions”, Information and
Computation 76(2-3), pp.95–120.
D´avila-P´erez, R. (1995) “Semantics and Parsing in Intuitionistic Categorial Gram-
mar”, Ph.d. thesis, University of Essex.
Evans, G. (1980) “Pronouns”, Linguistic Inquiry 11, pp.337–362.
Fox, C. (1994a) “Discourse Representation, Type Theory and Property Theory”, In
the Proceedings of H. Bunt, R. Muskens, and G. Rentier (eds.): the International
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 25/31
References
Workshop on Computational Semantics. Institute for Language Technology and
Artificial Intelligence (ITK), Tilburg, pp.71–80.
Fox, C. (1994b) “Existence Presuppositions and Category Mistakes”, Acta Linguis-
tica Hungarica 42(3/4), pp.325–339. Published 1996.
Gallin, D. (1975) Intensional and Higher-Order Modal Logic. With Application to
Montague Semantics. Amsterdam, New York, North-Holland Publisher/Elsevier
Publisher.
Geach, P. (1962) Reference and Generality: An Examination of Some Medieval and
Modern Theories. Ithaca, New York, Cornell University Press.
Girard, J.-Y., Y. Lafont, and P. Taylor. (1989) Proofs and Types, Cambridge Tracts
in Theoretical Computer Science 7. Cambridge University Press.
Groenendijk, J. and M. Stokhof. (1991) “Dynamic Predicate Logic”, Linguistics and
Philosophy 14, pp.39–100.
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 26/31
References
Jacobs, B. (1999) Categorical Logic and Type Theory, Vol. 141 of Studies in Logic
and the Foundations of Mathematics. North Holland, Elsevier.
Kamp, H. (1981) “A Theory of Truth and Semantic Representation”, In: J. Groe-
nendijk, T. M. Janssen, and M. Stokhof (eds.): Formal Methods in the Study of
Language. Amsterdam, Mathematical Centre Tract 135.
Kamp, H. and U. Reyle. (1993) From Discourse to Logic. Kluwer Academic Pub-
lishers.
Krahmer, E. and P. Piwek. (1999) “Presupposition Projection as Proof Construc-
tion”, In: H. Bunt and R. Muskens (eds.): Computing Meanings: Current Issues
in Computational Semantics, Studies in Linguistics Philosophy Series. Dordrecht,
Kluwer Academic Publishers.
Luo, Z. (1997) “Coercive subtyping in type theory”, In: D. van Dalen and M. Bezem
(eds.): CSL 1996. LNCS, vol. 1258. Heidelberg, Springer.
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 27/31
References
Luo, Z. (1999) “Coercive subtyping”, Journal of Logic and Computation 9(1),
pp.105–130.
Luo, Z. (2010) “Type-theoretical semantics with coercive subtyping”, In the Pro-
ceedings of Semantics and Linguistic Theory 20 (SALT 20). Vancouver.
Luo, Z. (2012a) “Common Nouns as Types”, In: D. B´echet and A. Dikovsky
(eds.): Logical Aspects of Computational Linguistics, 7th International Confer-
ence, LACL2012, Nantes, France, July 2012 Proceedings. Springer, pp.173–185.
Luo, Z. (2012b) “Formal Semantics in Modern Type Theories with Coercive Sub-
typing”, Linguistics and Philosophy 35(6).
Martin, S. and C. J. Pollard. (2014) “A dynamic categorial grammar”, In the Pro-
ceedings of Formal Grammar 19, LNCS 8612.
Martin-L¨of, P. (1975) “An intuitionistic theory of types”, In: H. E. Rose and J.
Shepherdson (eds.): Logic Colloquium ’73. Amsterdam, North-Holland, pp.73–
118.
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 28/31
References
Martin-L¨of, P. (1984) Intuitionistic Type Theory, Vol. 17. Naples, Italy: Bibliopolis.
Sambin, Giovanni (ed.).
Montague, R. (1973) “The proper treatment of quantification in ordinary English”,
In: J. Hintikka, J. Moravcsic, and P. Suppes (eds.): Approaches to Natural Lan-
guage. Dordrecht, Reidel, pp.221–242.
Nordstr¨om, B., K. Petersson, and J. Smith. (1990) Programming in Martin-L¨of’s
Type Theory. Oxford University Press.
Piwek, P. and E. Krahmer. (2000) “Presuppositions in Context: Constructing
Bridges”, In: P. Bonzon, M. Cavalcanti, and R. Nossum (eds.): Formal Aspects
of Context, Applied Logic Series. Dordrecht, Kluwer Academic Publishers.
Ranta, A. (1994) Type-Theoretical Grammar. Oxford University Press.
Sundholm, G. (1986) “Proof theory and meaning”, In: D. Gabbay and F. Guenthner
(eds.): Handbook of Philosophical Logic, Vol. III. Reidel, Kluwer, pp.471–506.
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 29/31
References
Tanaka, R. (2014) “A Proof-Theoretic Approach to Generalized Quantifiers in De-
pendent Type Semantics”, In the Proceedings of R. de Haan (ed.): the ESSLLI
2014 Student Session, 26th European Summer School in Logic, Language and In-
formation. T¨ubingen, Germany, pp.140–151.
Tanaka, R., K. Mineshima, and D. Bekki. (2014) “Resolving Modal Anaphora in
Dependent Type Semantics”, In the Proceedings of the Eleventh International
Workshop on Logic and Engineering of Natural Language Semantics (LENLS11),
JSAI International Symposia on AI 2014. Tokyo, pp.43–56.
Tanaka, R., K. Mineshima, and D. Bekki. (2015) “Factivity and Presupposition in
Dependent Type Semantics”, In the Proceedings of TYpe Theory and LExical
Semantics (TYTLES), ESSLLI2015 workshop.
Tanaka, R., Y. Nakano, and D. Bekki. (2013) “Constructive Generalized Quantifiers
Revisited”, In the Proceedings of Logic and Engineering of Natural Language
Semantics 10 (LENLS 10). Tokyo, pp.69–78.
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 30/31
References
Watanabe, N., E. McCready, and D. Bekki. (2014) “Japanese Honorification: Com-
positionality and Expressivity”, In the Proceedings of S. Kawahara and M.
Igarashi (eds.): FAJL 7: Formal Approaches to Japanese Linguistics, the MIT
Working Papers in Linguistics 73. International Christian University, Japan,
pp.265–276.
“Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 31/31

More Related Content

What's hot

Representing and Reasoning with Modular Ontologies (2007)
Representing and Reasoning with Modular Ontologies (2007)Representing and Reasoning with Modular Ontologies (2007)
Representing and Reasoning with Modular Ontologies (2007)Jie Bao
 
A course on mathematical logic
A course on mathematical logicA course on mathematical logic
A course on mathematical logicSpringer
 
Harnessing Deep Neural Networks with Logic Rules
Harnessing Deep Neural Networks with Logic RulesHarnessing Deep Neural Networks with Logic Rules
Harnessing Deep Neural Networks with Logic RulesSho Takase
 
Cs6503 theory of computation book notes
Cs6503 theory of computation book notesCs6503 theory of computation book notes
Cs6503 theory of computation book notesappasami
 
Predicate calculus
Predicate calculusPredicate calculus
Predicate calculusRajendran
 
Artificial intelligence and first order logic
Artificial intelligence and first order logicArtificial intelligence and first order logic
Artificial intelligence and first order logicparsa rafiq
 
Jarrar: Description Logic
Jarrar: Description LogicJarrar: Description Logic
Jarrar: Description LogicMustafa Jarrar
 
Topic model an introduction
Topic model an introductionTopic model an introduction
Topic model an introductionYueshen Xu
 
Modular Ontologies: Package-based Description Logics Approach
Modular Ontologies: Package-based Description Logics ApproachModular Ontologies: Package-based Description Logics Approach
Modular Ontologies: Package-based Description Logics ApproachJie Bao
 
Predicate Logic
Predicate LogicPredicate Logic
Predicate Logicgiki67
 
Logic programming (1)
Logic programming (1)Logic programming (1)
Logic programming (1)Nitesh Singh
 
Theory of Computation Lecture Notes
Theory of Computation Lecture NotesTheory of Computation Lecture Notes
Theory of Computation Lecture NotesFellowBuddy.com
 
Contexts 4 quantification (CommonSense2013)
Contexts 4 quantification (CommonSense2013)Contexts 4 quantification (CommonSense2013)
Contexts 4 quantification (CommonSense2013)Valeria de Paiva
 
First order predicate logic(fopl)
First order predicate logic(fopl)First order predicate logic(fopl)
First order predicate logic(fopl)surbhi jha
 
Jarrar: Introduction to logic and Logic Agents
Jarrar: Introduction to logic and Logic Agents Jarrar: Introduction to logic and Logic Agents
Jarrar: Introduction to logic and Logic Agents Mustafa Jarrar
 
Topic Models - LDA and Correlated Topic Models
Topic Models - LDA and Correlated Topic ModelsTopic Models - LDA and Correlated Topic Models
Topic Models - LDA and Correlated Topic ModelsClaudia Wagner
 

What's hot (20)

Representing and Reasoning with Modular Ontologies (2007)
Representing and Reasoning with Modular Ontologies (2007)Representing and Reasoning with Modular Ontologies (2007)
Representing and Reasoning with Modular Ontologies (2007)
 
A course on mathematical logic
A course on mathematical logicA course on mathematical logic
A course on mathematical logic
 
Icml12
Icml12Icml12
Icml12
 
Harnessing Deep Neural Networks with Logic Rules
Harnessing Deep Neural Networks with Logic RulesHarnessing Deep Neural Networks with Logic Rules
Harnessing Deep Neural Networks with Logic Rules
 
AI Lesson 11
AI Lesson 11AI Lesson 11
AI Lesson 11
 
Cs6503 theory of computation book notes
Cs6503 theory of computation book notesCs6503 theory of computation book notes
Cs6503 theory of computation book notes
 
Predicate calculus
Predicate calculusPredicate calculus
Predicate calculus
 
Artificial intelligence and first order logic
Artificial intelligence and first order logicArtificial intelligence and first order logic
Artificial intelligence and first order logic
 
Semantics
SemanticsSemantics
Semantics
 
Jarrar: Description Logic
Jarrar: Description LogicJarrar: Description Logic
Jarrar: Description Logic
 
Topic model an introduction
Topic model an introductionTopic model an introduction
Topic model an introduction
 
Modular Ontologies: Package-based Description Logics Approach
Modular Ontologies: Package-based Description Logics ApproachModular Ontologies: Package-based Description Logics Approach
Modular Ontologies: Package-based Description Logics Approach
 
Predicate Logic
Predicate LogicPredicate Logic
Predicate Logic
 
Logic programming (1)
Logic programming (1)Logic programming (1)
Logic programming (1)
 
Chaps 1-3-ai-prolog
Chaps 1-3-ai-prologChaps 1-3-ai-prolog
Chaps 1-3-ai-prolog
 
Theory of Computation Lecture Notes
Theory of Computation Lecture NotesTheory of Computation Lecture Notes
Theory of Computation Lecture Notes
 
Contexts 4 quantification (CommonSense2013)
Contexts 4 quantification (CommonSense2013)Contexts 4 quantification (CommonSense2013)
Contexts 4 quantification (CommonSense2013)
 
First order predicate logic(fopl)
First order predicate logic(fopl)First order predicate logic(fopl)
First order predicate logic(fopl)
 
Jarrar: Introduction to logic and Logic Agents
Jarrar: Introduction to logic and Logic Agents Jarrar: Introduction to logic and Logic Agents
Jarrar: Introduction to logic and Logic Agents
 
Topic Models - LDA and Correlated Topic Models
Topic Models - LDA and Correlated Topic ModelsTopic Models - LDA and Correlated Topic Models
Topic Models - LDA and Correlated Topic Models
 

Viewers also liked

証明論的意味論の具体例
証明論的意味論の具体例証明論的意味論の具体例
証明論的意味論の具体例Shunsuke Yatabe
 
Compositional Distributional Models of Meaning
Compositional Distributional Models of MeaningCompositional Distributional Models of Meaning
Compositional Distributional Models of MeaningDimitrios Kartsaklis
 
Towards a Smarter Data Driven Future
Towards a Smarter Data Driven FutureTowards a Smarter Data Driven Future
Towards a Smarter Data Driven FuturePiyush Malik
 
Ph.D. Defense - Enhanced Vector Space Models for Content-based Recommender Sy...
Ph.D. Defense - Enhanced Vector Space Models for Content-based Recommender Sy...Ph.D. Defense - Enhanced Vector Space Models for Content-based Recommender Sy...
Ph.D. Defense - Enhanced Vector Space Models for Content-based Recommender Sy...Cataldo Musto
 
Semantics, Deep Learning, and the Transformation of Business
Semantics, Deep Learning, and the Transformation of BusinessSemantics, Deep Learning, and the Transformation of Business
Semantics, Deep Learning, and the Transformation of BusinessSteve Omohundro
 

Viewers also liked (7)

Monads functional group
Monads   functional groupMonads   functional group
Monads functional group
 
証明論的意味論の具体例
証明論的意味論の具体例証明論的意味論の具体例
証明論的意味論の具体例
 
Compositional Distributional Models of Meaning
Compositional Distributional Models of MeaningCompositional Distributional Models of Meaning
Compositional Distributional Models of Meaning
 
Towards a Smarter Data Driven Future
Towards a Smarter Data Driven FutureTowards a Smarter Data Driven Future
Towards a Smarter Data Driven Future
 
What is the category system
What is the category systemWhat is the category system
What is the category system
 
Ph.D. Defense - Enhanced Vector Space Models for Content-based Recommender Sy...
Ph.D. Defense - Enhanced Vector Space Models for Content-based Recommender Sy...Ph.D. Defense - Enhanced Vector Space Models for Content-based Recommender Sy...
Ph.D. Defense - Enhanced Vector Space Models for Content-based Recommender Sy...
 
Semantics, Deep Learning, and the Transformation of Business
Semantics, Deep Learning, and the Transformation of BusinessSemantics, Deep Learning, and the Transformation of Business
Semantics, Deep Learning, and the Transformation of Business
 

Similar to Dependent Types in Natural Language Semantics

ESSLLI2016 DTS Lecture Day 4-1: Common Noun
ESSLLI2016 DTS Lecture Day 4-1: Common NounESSLLI2016 DTS Lecture Day 4-1: Common Noun
ESSLLI2016 DTS Lecture Day 4-1: Common NounDaisuke BEKKI
 
Dependent Types and Dynamics of Natural Language
Dependent Types and Dynamics of Natural LanguageDependent Types and Dynamics of Natural Language
Dependent Types and Dynamics of Natural LanguageDaisuke BEKKI
 
Dependent Types and Dynamics of Natural Language
Dependent Types and Dynamics of Natural LanguageDependent Types and Dynamics of Natural Language
Dependent Types and Dynamics of Natural LanguageDaisuke BEKKI
 
ESSLLI2016 DTS Lecture Day 5-2: Proof-theoretic Turn
ESSLLI2016 DTS Lecture Day 5-2: Proof-theoretic TurnESSLLI2016 DTS Lecture Day 5-2: Proof-theoretic Turn
ESSLLI2016 DTS Lecture Day 5-2: Proof-theoretic TurnDaisuke BEKKI
 
StarSpace: Embed All The Things!
StarSpace: Embed All The Things!StarSpace: Embed All The Things!
StarSpace: Embed All The Things!☕ Keita Watanabe
 
Correspondence and Isomorphism Theorems for Intuitionistic fuzzy subgroups
Correspondence and Isomorphism Theorems for Intuitionistic fuzzy subgroupsCorrespondence and Isomorphism Theorems for Intuitionistic fuzzy subgroups
Correspondence and Isomorphism Theorems for Intuitionistic fuzzy subgroupsjournal ijrtem
 
Lecture14 xing fei-fei
Lecture14 xing fei-feiLecture14 xing fei-fei
Lecture14 xing fei-feiTianlu Wang
 
Tensor-based Models of Natural Language Semantics
Tensor-based Models of Natural Language SemanticsTensor-based Models of Natural Language Semantics
Tensor-based Models of Natural Language SemanticsDimitrios Kartsaklis
 
AI3391 Artificial intelligence session 27 inference and unification.pptx
AI3391 Artificial intelligence session 27 inference and unification.pptxAI3391 Artificial intelligence session 27 inference and unification.pptx
AI3391 Artificial intelligence session 27 inference and unification.pptxAsst.prof M.Gokilavani
 
ESSLLI2016 DTS Lecture Day 2: Dependent Type Semantics (DTS)
ESSLLI2016 DTS Lecture Day 2: Dependent Type Semantics (DTS)ESSLLI2016 DTS Lecture Day 2: Dependent Type Semantics (DTS)
ESSLLI2016 DTS Lecture Day 2: Dependent Type Semantics (DTS)Daisuke BEKKI
 
A Coq Library for the Theory of Relational Calculus
A Coq Library for the Theory of Relational CalculusA Coq Library for the Theory of Relational Calculus
A Coq Library for the Theory of Relational CalculusYoshihiro Mizoguchi
 
AI_session 22 inference and unification.pptx
AI_session 22 inference and unification.pptxAI_session 22 inference and unification.pptx
AI_session 22 inference and unification.pptxAsst.prof M.Gokilavani
 
Calculating Projections via Type Checking
Calculating Projections via Type CheckingCalculating Projections via Type Checking
Calculating Projections via Type CheckingDaisuke BEKKI
 
Compact Monothetic C semirings
Compact Monothetic C semiringsCompact Monothetic C semirings
Compact Monothetic C semiringsijtsrd
 
Dialectica and Kolmogorov Problems
Dialectica and Kolmogorov ProblemsDialectica and Kolmogorov Problems
Dialectica and Kolmogorov ProblemsValeria de Paiva
 
Jarrar.lecture notes.aai.2011s.ch8.fol.introduction
Jarrar.lecture notes.aai.2011s.ch8.fol.introductionJarrar.lecture notes.aai.2011s.ch8.fol.introduction
Jarrar.lecture notes.aai.2011s.ch8.fol.introductionPalGov
 
A survey on different definitions of soft points: limitations, comparisons and...
A survey on different definitions of soft points: limitations, comparisons and...A survey on different definitions of soft points: limitations, comparisons and...
A survey on different definitions of soft points: limitations, comparisons and...Journal of Fuzzy Extension and Applications
 

Similar to Dependent Types in Natural Language Semantics (20)

ESSLLI2016 DTS Lecture Day 4-1: Common Noun
ESSLLI2016 DTS Lecture Day 4-1: Common NounESSLLI2016 DTS Lecture Day 4-1: Common Noun
ESSLLI2016 DTS Lecture Day 4-1: Common Noun
 
Dependent Types and Dynamics of Natural Language
Dependent Types and Dynamics of Natural LanguageDependent Types and Dynamics of Natural Language
Dependent Types and Dynamics of Natural Language
 
Dependent Types and Dynamics of Natural Language
Dependent Types and Dynamics of Natural LanguageDependent Types and Dynamics of Natural Language
Dependent Types and Dynamics of Natural Language
 
ESSLLI2016 DTS Lecture Day 5-2: Proof-theoretic Turn
ESSLLI2016 DTS Lecture Day 5-2: Proof-theoretic TurnESSLLI2016 DTS Lecture Day 5-2: Proof-theoretic Turn
ESSLLI2016 DTS Lecture Day 5-2: Proof-theoretic Turn
 
StarSpace: Embed All The Things!
StarSpace: Embed All The Things!StarSpace: Embed All The Things!
StarSpace: Embed All The Things!
 
Correspondence and Isomorphism Theorems for Intuitionistic fuzzy subgroups
Correspondence and Isomorphism Theorems for Intuitionistic fuzzy subgroupsCorrespondence and Isomorphism Theorems for Intuitionistic fuzzy subgroups
Correspondence and Isomorphism Theorems for Intuitionistic fuzzy subgroups
 
Lecture14 xing fei-fei
Lecture14 xing fei-feiLecture14 xing fei-fei
Lecture14 xing fei-fei
 
Tensor-based Models of Natural Language Semantics
Tensor-based Models of Natural Language SemanticsTensor-based Models of Natural Language Semantics
Tensor-based Models of Natural Language Semantics
 
AI3391 Artificial intelligence session 27 inference and unification.pptx
AI3391 Artificial intelligence session 27 inference and unification.pptxAI3391 Artificial intelligence session 27 inference and unification.pptx
AI3391 Artificial intelligence session 27 inference and unification.pptx
 
ESSLLI2016 DTS Lecture Day 2: Dependent Type Semantics (DTS)
ESSLLI2016 DTS Lecture Day 2: Dependent Type Semantics (DTS)ESSLLI2016 DTS Lecture Day 2: Dependent Type Semantics (DTS)
ESSLLI2016 DTS Lecture Day 2: Dependent Type Semantics (DTS)
 
A Coq Library for the Theory of Relational Calculus
A Coq Library for the Theory of Relational CalculusA Coq Library for the Theory of Relational Calculus
A Coq Library for the Theory of Relational Calculus
 
AI_session 22 inference and unification.pptx
AI_session 22 inference and unification.pptxAI_session 22 inference and unification.pptx
AI_session 22 inference and unification.pptx
 
Calculating Projections via Type Checking
Calculating Projections via Type CheckingCalculating Projections via Type Checking
Calculating Projections via Type Checking
 
Compact Monothetic C semirings
Compact Monothetic C semiringsCompact Monothetic C semirings
Compact Monothetic C semirings
 
AI_Session 21 First order logic.pptx
AI_Session 21 First order logic.pptxAI_Session 21 First order logic.pptx
AI_Session 21 First order logic.pptx
 
Dialectica and Kolmogorov Problems
Dialectica and Kolmogorov ProblemsDialectica and Kolmogorov Problems
Dialectica and Kolmogorov Problems
 
Jarrar.lecture notes.aai.2011s.ch8.fol.introduction
Jarrar.lecture notes.aai.2011s.ch8.fol.introductionJarrar.lecture notes.aai.2011s.ch8.fol.introduction
Jarrar.lecture notes.aai.2011s.ch8.fol.introduction
 
A survey on different definitions of soft points: limitations, comparisons and...
A survey on different definitions of soft points: limitations, comparisons and...A survey on different definitions of soft points: limitations, comparisons and...
A survey on different definitions of soft points: limitations, comparisons and...
 
Logic 2
Logic 2Logic 2
Logic 2
 
Report
ReportReport
Report
 

More from Daisuke BEKKI

Why parsing is a part of Language Faculty Science (by Daisuke Bekki)
Why parsing is a part of Language Faculty Science (by Daisuke Bekki)Why parsing is a part of Language Faculty Science (by Daisuke Bekki)
Why parsing is a part of Language Faculty Science (by Daisuke Bekki)Daisuke BEKKI
 
A hybrid approach toward Natural Language Understanding (by Daisuke Bekki)
A hybrid approach toward Natural Language Understanding (by Daisuke Bekki)A hybrid approach toward Natural Language Understanding (by Daisuke Bekki)
A hybrid approach toward Natural Language Understanding (by Daisuke Bekki)Daisuke BEKKI
 
ESSLLI2016 DTS Lecture Day 5-1: Introduction to day 5
ESSLLI2016 DTS Lecture Day 5-1: Introduction to day 5ESSLLI2016 DTS Lecture Day 5-1: Introduction to day 5
ESSLLI2016 DTS Lecture Day 5-1: Introduction to day 5Daisuke BEKKI
 
ESSLLI2016 DTS Lecture Day 4-3: Generalized Quantifiers (guest lecture by Rib...
ESSLLI2016 DTS Lecture Day 4-3: Generalized Quantifiers (guest lecture by Rib...ESSLLI2016 DTS Lecture Day 4-3: Generalized Quantifiers (guest lecture by Rib...
ESSLLI2016 DTS Lecture Day 4-3: Generalized Quantifiers (guest lecture by Rib...Daisuke BEKKI
 
ESSLLI2016 DTS Lecture Day 4-2: More Dependent Types
ESSLLI2016 DTS Lecture Day 4-2: More Dependent TypesESSLLI2016 DTS Lecture Day 4-2: More Dependent Types
ESSLLI2016 DTS Lecture Day 4-2: More Dependent TypesDaisuke BEKKI
 
ESSLLI2016 DTS Lecture Day3: Presupposition
ESSLLI2016 DTS Lecture Day3: PresuppositionESSLLI2016 DTS Lecture Day3: Presupposition
ESSLLI2016 DTS Lecture Day3: PresuppositionDaisuke BEKKI
 
ESSLLI2016 DTS Lecture Day 1: From natural deduction to dependent type theory
ESSLLI2016 DTS Lecture Day 1: From natural deduction to dependent type theoryESSLLI2016 DTS Lecture Day 1: From natural deduction to dependent type theory
ESSLLI2016 DTS Lecture Day 1: From natural deduction to dependent type theoryDaisuke BEKKI
 
Conventional Implicature via Dependent Type Semantics
Conventional Implicature via Dependent Type SemanticsConventional Implicature via Dependent Type Semantics
Conventional Implicature via Dependent Type SemanticsDaisuke BEKKI
 
Two types of Japanese scrambling in combinatory categorial grammar
Two types of Japanese scrambling in combinatory categorial grammarTwo types of Japanese scrambling in combinatory categorial grammar
Two types of Japanese scrambling in combinatory categorial grammarDaisuke BEKKI
 

More from Daisuke BEKKI (9)

Why parsing is a part of Language Faculty Science (by Daisuke Bekki)
Why parsing is a part of Language Faculty Science (by Daisuke Bekki)Why parsing is a part of Language Faculty Science (by Daisuke Bekki)
Why parsing is a part of Language Faculty Science (by Daisuke Bekki)
 
A hybrid approach toward Natural Language Understanding (by Daisuke Bekki)
A hybrid approach toward Natural Language Understanding (by Daisuke Bekki)A hybrid approach toward Natural Language Understanding (by Daisuke Bekki)
A hybrid approach toward Natural Language Understanding (by Daisuke Bekki)
 
ESSLLI2016 DTS Lecture Day 5-1: Introduction to day 5
ESSLLI2016 DTS Lecture Day 5-1: Introduction to day 5ESSLLI2016 DTS Lecture Day 5-1: Introduction to day 5
ESSLLI2016 DTS Lecture Day 5-1: Introduction to day 5
 
ESSLLI2016 DTS Lecture Day 4-3: Generalized Quantifiers (guest lecture by Rib...
ESSLLI2016 DTS Lecture Day 4-3: Generalized Quantifiers (guest lecture by Rib...ESSLLI2016 DTS Lecture Day 4-3: Generalized Quantifiers (guest lecture by Rib...
ESSLLI2016 DTS Lecture Day 4-3: Generalized Quantifiers (guest lecture by Rib...
 
ESSLLI2016 DTS Lecture Day 4-2: More Dependent Types
ESSLLI2016 DTS Lecture Day 4-2: More Dependent TypesESSLLI2016 DTS Lecture Day 4-2: More Dependent Types
ESSLLI2016 DTS Lecture Day 4-2: More Dependent Types
 
ESSLLI2016 DTS Lecture Day3: Presupposition
ESSLLI2016 DTS Lecture Day3: PresuppositionESSLLI2016 DTS Lecture Day3: Presupposition
ESSLLI2016 DTS Lecture Day3: Presupposition
 
ESSLLI2016 DTS Lecture Day 1: From natural deduction to dependent type theory
ESSLLI2016 DTS Lecture Day 1: From natural deduction to dependent type theoryESSLLI2016 DTS Lecture Day 1: From natural deduction to dependent type theory
ESSLLI2016 DTS Lecture Day 1: From natural deduction to dependent type theory
 
Conventional Implicature via Dependent Type Semantics
Conventional Implicature via Dependent Type SemanticsConventional Implicature via Dependent Type Semantics
Conventional Implicature via Dependent Type Semantics
 
Two types of Japanese scrambling in combinatory categorial grammar
Two types of Japanese scrambling in combinatory categorial grammarTwo types of Japanese scrambling in combinatory categorial grammar
Two types of Japanese scrambling in combinatory categorial grammar
 

Recently uploaded

Is RISC-V ready for HPC workload? Maybe?
Is RISC-V ready for HPC workload? Maybe?Is RISC-V ready for HPC workload? Maybe?
Is RISC-V ready for HPC workload? Maybe?Patrick Diehl
 
Pests of Bengal gram_Identification_Dr.UPR.pdf
Pests of Bengal gram_Identification_Dr.UPR.pdfPests of Bengal gram_Identification_Dr.UPR.pdf
Pests of Bengal gram_Identification_Dr.UPR.pdfPirithiRaju
 
Davis plaque method.pptx recombinant DNA technology
Davis plaque method.pptx recombinant DNA technologyDavis plaque method.pptx recombinant DNA technology
Davis plaque method.pptx recombinant DNA technologycaarthichand2003
 
Solution chemistry, Moral and Normal solutions
Solution chemistry, Moral and Normal solutionsSolution chemistry, Moral and Normal solutions
Solution chemistry, Moral and Normal solutionsHajira Mahmood
 
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...lizamodels9
 
Pests of jatropha_Bionomics_identification_Dr.UPR.pdf
Pests of jatropha_Bionomics_identification_Dr.UPR.pdfPests of jatropha_Bionomics_identification_Dr.UPR.pdf
Pests of jatropha_Bionomics_identification_Dr.UPR.pdfPirithiRaju
 
Pests of castor_Binomics_Identification_Dr.UPR.pdf
Pests of castor_Binomics_Identification_Dr.UPR.pdfPests of castor_Binomics_Identification_Dr.UPR.pdf
Pests of castor_Binomics_Identification_Dr.UPR.pdfPirithiRaju
 
RESPIRATORY ADAPTATIONS TO HYPOXIA IN HUMNAS.pptx
RESPIRATORY ADAPTATIONS TO HYPOXIA IN HUMNAS.pptxRESPIRATORY ADAPTATIONS TO HYPOXIA IN HUMNAS.pptx
RESPIRATORY ADAPTATIONS TO HYPOXIA IN HUMNAS.pptxFarihaAbdulRasheed
 
FREE NURSING BUNDLE FOR NURSES.PDF by na
FREE NURSING BUNDLE FOR NURSES.PDF by naFREE NURSING BUNDLE FOR NURSES.PDF by na
FREE NURSING BUNDLE FOR NURSES.PDF by naJASISJULIANOELYNV
 
User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)Columbia Weather Systems
 
Microteaching on terms used in filtration .Pharmaceutical Engineering
Microteaching on terms used in filtration .Pharmaceutical EngineeringMicroteaching on terms used in filtration .Pharmaceutical Engineering
Microteaching on terms used in filtration .Pharmaceutical EngineeringPrajakta Shinde
 
BUMI DAN ANTARIKSA PROJEK IPAS SMK KELAS X.pdf
BUMI DAN ANTARIKSA PROJEK IPAS SMK KELAS X.pdfBUMI DAN ANTARIKSA PROJEK IPAS SMK KELAS X.pdf
BUMI DAN ANTARIKSA PROJEK IPAS SMK KELAS X.pdfWildaNurAmalia2
 
Base editing, prime editing, Cas13 & RNA editing and organelle base editing
Base editing, prime editing, Cas13 & RNA editing and organelle base editingBase editing, prime editing, Cas13 & RNA editing and organelle base editing
Base editing, prime editing, Cas13 & RNA editing and organelle base editingNetHelix
 
User Guide: Capricorn FLX™ Weather Station
User Guide: Capricorn FLX™ Weather StationUser Guide: Capricorn FLX™ Weather Station
User Guide: Capricorn FLX™ Weather StationColumbia Weather Systems
 
GenBio2 - Lesson 1 - Introduction to Genetics.pptx
GenBio2 - Lesson 1 - Introduction to Genetics.pptxGenBio2 - Lesson 1 - Introduction to Genetics.pptx
GenBio2 - Lesson 1 - Introduction to Genetics.pptxBerniceCayabyab1
 
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptxTHE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptxNandakishor Bhaurao Deshmukh
 
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.PraveenaKalaiselvan1
 
Transposable elements in prokaryotes.ppt
Transposable elements in prokaryotes.pptTransposable elements in prokaryotes.ppt
Transposable elements in prokaryotes.pptArshadWarsi13
 
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptxSTOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptxMurugaveni B
 
Pests of soyabean_Binomics_IdentificationDr.UPR.pdf
Pests of soyabean_Binomics_IdentificationDr.UPR.pdfPests of soyabean_Binomics_IdentificationDr.UPR.pdf
Pests of soyabean_Binomics_IdentificationDr.UPR.pdfPirithiRaju
 

Recently uploaded (20)

Is RISC-V ready for HPC workload? Maybe?
Is RISC-V ready for HPC workload? Maybe?Is RISC-V ready for HPC workload? Maybe?
Is RISC-V ready for HPC workload? Maybe?
 
Pests of Bengal gram_Identification_Dr.UPR.pdf
Pests of Bengal gram_Identification_Dr.UPR.pdfPests of Bengal gram_Identification_Dr.UPR.pdf
Pests of Bengal gram_Identification_Dr.UPR.pdf
 
Davis plaque method.pptx recombinant DNA technology
Davis plaque method.pptx recombinant DNA technologyDavis plaque method.pptx recombinant DNA technology
Davis plaque method.pptx recombinant DNA technology
 
Solution chemistry, Moral and Normal solutions
Solution chemistry, Moral and Normal solutionsSolution chemistry, Moral and Normal solutions
Solution chemistry, Moral and Normal solutions
 
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
 
Pests of jatropha_Bionomics_identification_Dr.UPR.pdf
Pests of jatropha_Bionomics_identification_Dr.UPR.pdfPests of jatropha_Bionomics_identification_Dr.UPR.pdf
Pests of jatropha_Bionomics_identification_Dr.UPR.pdf
 
Pests of castor_Binomics_Identification_Dr.UPR.pdf
Pests of castor_Binomics_Identification_Dr.UPR.pdfPests of castor_Binomics_Identification_Dr.UPR.pdf
Pests of castor_Binomics_Identification_Dr.UPR.pdf
 
RESPIRATORY ADAPTATIONS TO HYPOXIA IN HUMNAS.pptx
RESPIRATORY ADAPTATIONS TO HYPOXIA IN HUMNAS.pptxRESPIRATORY ADAPTATIONS TO HYPOXIA IN HUMNAS.pptx
RESPIRATORY ADAPTATIONS TO HYPOXIA IN HUMNAS.pptx
 
FREE NURSING BUNDLE FOR NURSES.PDF by na
FREE NURSING BUNDLE FOR NURSES.PDF by naFREE NURSING BUNDLE FOR NURSES.PDF by na
FREE NURSING BUNDLE FOR NURSES.PDF by na
 
User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)
 
Microteaching on terms used in filtration .Pharmaceutical Engineering
Microteaching on terms used in filtration .Pharmaceutical EngineeringMicroteaching on terms used in filtration .Pharmaceutical Engineering
Microteaching on terms used in filtration .Pharmaceutical Engineering
 
BUMI DAN ANTARIKSA PROJEK IPAS SMK KELAS X.pdf
BUMI DAN ANTARIKSA PROJEK IPAS SMK KELAS X.pdfBUMI DAN ANTARIKSA PROJEK IPAS SMK KELAS X.pdf
BUMI DAN ANTARIKSA PROJEK IPAS SMK KELAS X.pdf
 
Base editing, prime editing, Cas13 & RNA editing and organelle base editing
Base editing, prime editing, Cas13 & RNA editing and organelle base editingBase editing, prime editing, Cas13 & RNA editing and organelle base editing
Base editing, prime editing, Cas13 & RNA editing and organelle base editing
 
User Guide: Capricorn FLX™ Weather Station
User Guide: Capricorn FLX™ Weather StationUser Guide: Capricorn FLX™ Weather Station
User Guide: Capricorn FLX™ Weather Station
 
GenBio2 - Lesson 1 - Introduction to Genetics.pptx
GenBio2 - Lesson 1 - Introduction to Genetics.pptxGenBio2 - Lesson 1 - Introduction to Genetics.pptx
GenBio2 - Lesson 1 - Introduction to Genetics.pptx
 
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptxTHE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
 
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
 
Transposable elements in prokaryotes.ppt
Transposable elements in prokaryotes.pptTransposable elements in prokaryotes.ppt
Transposable elements in prokaryotes.ppt
 
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptxSTOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
 
Pests of soyabean_Binomics_IdentificationDr.UPR.pdf
Pests of soyabean_Binomics_IdentificationDr.UPR.pdfPests of soyabean_Binomics_IdentificationDr.UPR.pdf
Pests of soyabean_Binomics_IdentificationDr.UPR.pdf
 

Dependent Types in Natural Language Semantics

  • 1. Dependent Types in Natural Language Semantics Daisuke Bekki†‡ § †Ochanomizu University ‡CREST, Japan Science and Technology Agency National Institute of Informatics §National Institute of Advanced Industrial Science and Technology 4th July, 2015 The Second International Workshop on Linguistics of BA at Future University Hakodate
  • 2. 1. Proof-theoretic turn in discourse representation “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 2/31
  • 3. 1.1. Donkey and E-type anaphora Since 1980, the enterprise of dynamic semantics has pursued an alternative frame- work to Montagovian semantics, which compensates for the gap between syntactic structures of natural language sentences involving dynamic binding. The difficulty of this pursuit implies that there is tension between dynamism and compositionality, which have not yet been unified in a coherent semantic theory that accounts for both aspects. This tension has been the driving force behind dynamic semantics, and in fact some theories have achieved partial success in unifying the two aspects. Thus, I should clarify what I mean by dynamism and compositionality. Dynamic semantics explores various empirical data concerning dynamic binding, whose nature is exem- plified by the two paradigms of donkey sentences in (1) by Geach (1962) and E-type anaphora in (2) by Evans (1980). (1) a. Every farmer who owns [a donkey]i beats iti. b. If [a farmer]i owns [a donkey]j , hei beats itj. (2) [A man]i entered. Hei whistled. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 3/31
  • 4. 1.1. Donkey and E-type anaphora As discussed elsewhere, (1a), for example, is problematic in terms of composition- ality. Compositional semantic theory is such that it provides a way to calculate any semantic representation of any target sentence from the semantic representations of its parts. The structural analogue of (1a) (and (1b)), which allows us to give a straightforward compositional analysis, is (3). However, it is not an appropriate semantic representation for (1a) since variable y occurs as a free variable outside of the scope of ∃y. (3) ∀x(Farmer(x) ∧ ∃y(Donkey(y) ∧ Own(x, y)) → Beat(x, y)) In the same way, the structural analogue of (2) is (4), which is not an appropriate representation for (2) since variable x in Whistle(x) is not bound by ∃x. (4) ∃x(Man(x) ∧ Enter(x)) ∧ Whistle(x) “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 4/31
  • 5. 1.1. Donkey and E-type anaphora The first-order representations for sentences (1) and (2) necessary in order to correctly calculate their entailment relations are (5) and (6), respectively. (5) ∀x(Farmer(x) → ∀y(Donkey(y) ∧ Own(x, y) → Beat(x, y))) (6) ∃x(Man(x) ∧ Enter(x)∧Whistle(x)) These represent proper information that the sentences (1) and (2) contain, in a sense that any proof system for first-order predicate logic will prove that the inferences in Example 1 and Example 2 are valid. On the other hand, the structural similarity to the original sentences is lost in (5) and (6), so their direct decomposition does not lead to the respective lexicalized representations. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 5/31
  • 6. 1.1. Donkey and E-type anaphora Example 1 (Donkey Syllogism). Every farmer who owns [a donkey]i beats iti. John is a farmer. Bill is a donkey. John owns Bill. John beats Bill. Example 2 (E-type Syllogisms). [A man]i entered. Hei whistled. A man entered. [A man]i entered. Hei whistled. A man whistled. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 6/31
  • 7. 1.2. Proof-theoretic turn: Sundholm and Ranta Sundholm (1986) noticed fairly early that dependent type theory provides se- mantic representations for donkey sentences whose structures are parallel to their syntactic structures in a different way from DRT Kamp (1981), Kamp and Reyle (1993), DPL Groenendijk and Stokhof (1991), and their successors. (7) a. A man entered. He whistled. ⎡ ⎢ ⎢ ⎣ u: ⎡ ⎣ x:entity man(x) enter(x) ⎤ ⎦ whistle(π1(u)) ⎤ ⎥ ⎥ ⎦ (8) a. Every farmer who owns a donkey beats it. (x:entity) → ⎛ ⎜ ⎜ ⎝u: ⎡ ⎢ ⎢ ⎣ farmer(x)⎡ ⎣ y:entity donkey(y) own(x, y) ⎤ ⎦ ⎤ ⎥ ⎥ ⎦ ⎞ ⎟ ⎟ ⎠ → beat(x, π1π2(u)) “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 7/31
  • 8. 1.3. Key concepts 1. Proof-theoretic semantics (vs. Model-theoretic semantics) 2. Curry-Howard Correspondence (between logic type theory) 3. Dependent types (vs. Simple types) “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 8/31
  • 9. 2. Proof-theoretic Semantics, Curry-Howard Correspondence, and Dependent Types “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 9/31
  • 10. 2.1. Proof-theoretic vs. model-theoretic semantics The ‘meaning’ of a given proposition φ: The Proof-theoretic Semantics Model-theoretic Semantics Provability, or {Γ | Γ φ} Truth-condition, or {(M, g) | φ M,g = 1} Inference rules Semantic Values (natural deduction): (classical logic): A.... B i A → B (→I ),i A A → B B (→E) A B A ∧ B (∧I ) A1 ∧ A2 Ai (∧E),i=1,2 A → B M,g = 1 ⇐⇒ A M,g = 0 or B M,g = 1 A ∧ B M,g = 1 ⇐⇒ A M,g = 1 and B M,g = 1 “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 10/31
  • 11. 2.2. Curry-Howard Correspondence Propositional Logic Simply-Typed Lambda Calculus A.... B i A → B (→I ),i x : A.... B i λx.M : A → B (→I ),i A A → B B (→E) N : A M : A → B MN : B (→E) A B A ∧ B (∧I ) M : A N : B (M, N) : A × B (∧I ) A1 ∧ A2 Ai (∧E),i=1,2 (M1, M2) : A1 × A2 πi(M) : Ai (×E),i=1,2 “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 11/31
  • 12. 2.3. Curry-Howard Isomorphism The correspondence between the notions of logic and type theory: Logic Type Theory proposition type proof term axiom constant symbol assumption variable provability inhabitance cut substitution normalization reduction . . . . . . • A term is an encoding of a proof of a type(=proposition) • A proposition can be regarded as a collection of proofs. • φ is true under Γ iff φ is inhabited under Γ. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 12/31
  • 13. 2.4. Dependent function/sum Types • Dependent function type (x:A) → B is a generalized form of the function/implication type A → B: A → B def ≡ (x:A) → B where x /∈ fv(B). ∀xB def ≡ (x:entity) → B • Dependent sum type x:A B is a generalized form of the product/conjunction type A × B: A ∧ B def ≡ x:A B where x /∈ fv(B). ∃xB def ≡ x:entity B “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 13/31
  • 14. 2.4. Dependent function/sum Types Natural deduction rules for dependent types: (x:A) → B : s x : A.... M : B i λx : A.M : (x:A) → B (ΠI ),i M : (x:A) → B N : A MN : B[N/x] (ΠE) M : A N : B[M/x] (M, N) : x:A B (ΣI ) M : x:A B π1(M) : A (ΣE) M : x:A B π2(M) : B[π1(M)/x] (ΣE) “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 14/31
  • 15. 2.5. Dependent Types in Natural Language Semantics (9) Donkey anaphora: Sundholm (1986) a. Every farmer who owns a donkey beats it. b. (x:entity) → ⎛ ⎜ ⎜ ⎝u: ⎡ ⎢ ⎢ ⎣ farmer(x)⎡ ⎣ y:entity donkey(y) own(x, y) ⎤ ⎦ ⎤ ⎥ ⎥ ⎦ ⎞ ⎟ ⎟ ⎠ → beat(x, π1π2(u)) (10) E-type anaphora: Ranta (1994) a. A man entered. He whistled. b. ⎡ ⎢ ⎢ ⎣ u: ⎡ ⎣ x:entity man(x) enter(x) ⎤ ⎦ whistle(π1(u)) ⎤ ⎥ ⎥ ⎦ Recall that (x:A) → B is a type for functions from A to B[x], and x:A B is a type for pairs of A and B[x]. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 15/31
  • 16. 2.6. Previous Works Subsequently, the following three approaches have been proposed to obtain Sund- holmian representations: 1. Ahn and Kolb (1990) provides a set of translation rules from DRS to Dependent Type representations 2. D´avila-P´erez (1995) presented a reformulation of Montague Grammar Mon- tague (1973) in terms of MLTT. 3. Ranta (1994) proposed a generative theory of grammar based on MLTT, known as Type-Theoretical Grammar (TTG). “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 16/31
  • 17. 2.6. Previous Works • Relative and Implicational Donkey Sentences, Branching Quantifiers, Inten- sionality, Tense: Ranta (1994) • Summation: Fox (1994a,b) • Presupposition Binding and Accommodation, Bridging: Krahmer and Piwek (1999), Piwek and Krahmer (2000) • Coercion: Luo (1997, 1999, 2010, 2012b), Asher and Luo (2012) • Adverbs: Chatzikyriakidis (2014) • New frameworks: Cooper (2005), Luo (2012a), Bekki (2014), Martin and Pol- lard (2014) “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 17/31
  • 18. 2.6. Previous Works Recent works in our group: • Generalized Quantifiers: Tanaka et al. (2013), Tanaka (2014) • Type checking/inference in DTS and its implementation: Bekki and Sato (2015) • Modal Subordination: Tanaka et al. (2014) • Factive Presupposition: Tanaka et al. (2015) • Conventional Implicature: Bekki and McCready (2014), Watanabe et al. (2014) • Double-Negated Antecedents: Bekki (2013) “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 18/31
  • 19. A. Appendix “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 19/31
  • 20. A.1. Dependent Types in Mathematics and Logic • The notion of dependent types originates from: – Martin-L¨of Type Theory (MLTT) (Martin-L¨of (1975, 1984)), which was proposed as a foundation of constructive mathematics. – Calculus of Constructions (CoC) (Coquand and Huet (1988)), which was proposed as a foundation of functional programming and mathematical proofs. • Lately, fragments of MLTT and CoC have been integrated into a general the- ory of the λ-cube (Barendregt (1992)) and Pure Type Systems (PTS) (Berardi (1990); Barendregt (1991)) with other important type theories, such as Gi- rard’s F (Girard et al. (1989)). • Calculus of Inductive Constructions (CoIC) (=CoC with inductive types) is known as an underlying language of proof assistants Coq (Bertot and Cast´eran (2004)) and Agda (Nordstr¨om et al. (1990), Bove and Dybjer (2008)). “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 20/31
  • 21. A.1. Dependent Types in Mathematics and Logic The term “Dependent Type Theory” usually covers: • λP is an extention of Simple Type Theory (λ→) with dependent functional type Π. (cf. Barendregt Cube) λω λC λ2  λP2  λω λPω λ→  λP  • Martin-L¨of/Constructive/Intuitionistic/Modern Type Theory is an extention of λP with dependent sum type Σ, (dependent) record type, Equational type, and Natural Numbers, Inductive types, etc. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 21/31
  • 22. A.2. What is NOT Dependent Type Theory • Type-Theoretic Semantics (ex. Montague (1973), Gallin (1975)), where a proposition is a term of type t, while in Dependent Type Theory, a propo- sition is a type (=a collection of proofs). • Dependent Type Theory is proof-theoretic, but it has a denotational semantics (cf. fibred category theory: Jacobs (1999)) and other types of semantics (cf. game-theoretic semantics) as well. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 22/31
  • 23. References References Ahn, R. and H.-P. Kolb. (1990) “Discourse Representation meets Constructive Math- ematics”, In: L. Kalman and L. Polos (eds.): Papers from the Second Symposium on Logic and Language. Akademiai Kiado. Asher, N. and Z. Luo. (2012) “Formalisation of coercions in lexical semantics”, In the Proceedings of Sinn und Bedeutung 17. Paris, pp.63–80. Barendregt, H. P. (1991) “Introduction to generalized type systems”, Journal of Functional Programming 1(2), pp.125–154. Barendregt, H. P. (1992) “Lambda Calculi with Types”, In: S. Abramsky, D. M. Gabbay, and T. Maibaum (eds.): Handbook of Logic in Computer Science, Vol. 2. Oxford Science Publications, pp.117–309. Bekki, D. (2013) “A Type-theoretic Approach to Double Negation Elimination in Anaphora”, In the Proceedings of Logic and Engineering of Natural Language Semantics 10 (LENLS 10). Tokyo. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 23/31
  • 24. References Bekki, D. (2014) “Representing Anaphora with Dependent Types”, In the Proceed- ings of N. Asher and S. V. Soloviev (eds.): Logical Aspects of Computational Lin- guistics (8th international conference, LACL2014, Toulouse, France, June 2014 Proceedings), LNCS 8535. Toulouse, pp.14–29, Springer, Heiderburg. Bekki, D. and E. McCready. (2014) “CI via DTS”, In the Proceedings of LENLS11. Tokyo, pp.110–123. Bekki, D. and M. Sato. (2015) “Calculating Projections via Type Checking”, In the Proceedings of TYpe Theory and LExical Semantics (TYTLES), ESSLLI2015 workshop. Barcelona, Spain. Berardi, S. (1990) “Type Dependence and Constructive Mathematics”, Ph.d thesis, Mathematical Institute. Bertot, Y. and P. Cast´eran. (2004) Interactive Theorem Proving and Program De- velopment. Springer. Bove, A. and P. Dybjer. (2008) “Dependent Types at Work”. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 24/31
  • 25. References Chatzikyriakidis, S. (2014) “Adverbs in a Modern Type Theory”, In: N. Asher and S. V. Soloviev (eds.): Logical Aspect of Computational Linguistics, 8th Interna- tional Conference, LACL2014, Toulouse, France, June 18-20, 2014 Proceedings. Springer. Cooper, R. (2005) “Austinian truth, attitudes and type theory”, Research on Lan- guage and Computation 3, pp.333–362. Coquand, T. and G. Huet. (1988) “The Calculus of Constructions”, Information and Computation 76(2-3), pp.95–120. D´avila-P´erez, R. (1995) “Semantics and Parsing in Intuitionistic Categorial Gram- mar”, Ph.d. thesis, University of Essex. Evans, G. (1980) “Pronouns”, Linguistic Inquiry 11, pp.337–362. Fox, C. (1994a) “Discourse Representation, Type Theory and Property Theory”, In the Proceedings of H. Bunt, R. Muskens, and G. Rentier (eds.): the International “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 25/31
  • 26. References Workshop on Computational Semantics. Institute for Language Technology and Artificial Intelligence (ITK), Tilburg, pp.71–80. Fox, C. (1994b) “Existence Presuppositions and Category Mistakes”, Acta Linguis- tica Hungarica 42(3/4), pp.325–339. Published 1996. Gallin, D. (1975) Intensional and Higher-Order Modal Logic. With Application to Montague Semantics. Amsterdam, New York, North-Holland Publisher/Elsevier Publisher. Geach, P. (1962) Reference and Generality: An Examination of Some Medieval and Modern Theories. Ithaca, New York, Cornell University Press. Girard, J.-Y., Y. Lafont, and P. Taylor. (1989) Proofs and Types, Cambridge Tracts in Theoretical Computer Science 7. Cambridge University Press. Groenendijk, J. and M. Stokhof. (1991) “Dynamic Predicate Logic”, Linguistics and Philosophy 14, pp.39–100. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 26/31
  • 27. References Jacobs, B. (1999) Categorical Logic and Type Theory, Vol. 141 of Studies in Logic and the Foundations of Mathematics. North Holland, Elsevier. Kamp, H. (1981) “A Theory of Truth and Semantic Representation”, In: J. Groe- nendijk, T. M. Janssen, and M. Stokhof (eds.): Formal Methods in the Study of Language. Amsterdam, Mathematical Centre Tract 135. Kamp, H. and U. Reyle. (1993) From Discourse to Logic. Kluwer Academic Pub- lishers. Krahmer, E. and P. Piwek. (1999) “Presupposition Projection as Proof Construc- tion”, In: H. Bunt and R. Muskens (eds.): Computing Meanings: Current Issues in Computational Semantics, Studies in Linguistics Philosophy Series. Dordrecht, Kluwer Academic Publishers. Luo, Z. (1997) “Coercive subtyping in type theory”, In: D. van Dalen and M. Bezem (eds.): CSL 1996. LNCS, vol. 1258. Heidelberg, Springer. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 27/31
  • 28. References Luo, Z. (1999) “Coercive subtyping”, Journal of Logic and Computation 9(1), pp.105–130. Luo, Z. (2010) “Type-theoretical semantics with coercive subtyping”, In the Pro- ceedings of Semantics and Linguistic Theory 20 (SALT 20). Vancouver. Luo, Z. (2012a) “Common Nouns as Types”, In: D. B´echet and A. Dikovsky (eds.): Logical Aspects of Computational Linguistics, 7th International Confer- ence, LACL2012, Nantes, France, July 2012 Proceedings. Springer, pp.173–185. Luo, Z. (2012b) “Formal Semantics in Modern Type Theories with Coercive Sub- typing”, Linguistics and Philosophy 35(6). Martin, S. and C. J. Pollard. (2014) “A dynamic categorial grammar”, In the Pro- ceedings of Formal Grammar 19, LNCS 8612. Martin-L¨of, P. (1975) “An intuitionistic theory of types”, In: H. E. Rose and J. Shepherdson (eds.): Logic Colloquium ’73. Amsterdam, North-Holland, pp.73– 118. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 28/31
  • 29. References Martin-L¨of, P. (1984) Intuitionistic Type Theory, Vol. 17. Naples, Italy: Bibliopolis. Sambin, Giovanni (ed.). Montague, R. (1973) “The proper treatment of quantification in ordinary English”, In: J. Hintikka, J. Moravcsic, and P. Suppes (eds.): Approaches to Natural Lan- guage. Dordrecht, Reidel, pp.221–242. Nordstr¨om, B., K. Petersson, and J. Smith. (1990) Programming in Martin-L¨of’s Type Theory. Oxford University Press. Piwek, P. and E. Krahmer. (2000) “Presuppositions in Context: Constructing Bridges”, In: P. Bonzon, M. Cavalcanti, and R. Nossum (eds.): Formal Aspects of Context, Applied Logic Series. Dordrecht, Kluwer Academic Publishers. Ranta, A. (1994) Type-Theoretical Grammar. Oxford University Press. Sundholm, G. (1986) “Proof theory and meaning”, In: D. Gabbay and F. Guenthner (eds.): Handbook of Philosophical Logic, Vol. III. Reidel, Kluwer, pp.471–506. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 29/31
  • 30. References Tanaka, R. (2014) “A Proof-Theoretic Approach to Generalized Quantifiers in De- pendent Type Semantics”, In the Proceedings of R. de Haan (ed.): the ESSLLI 2014 Student Session, 26th European Summer School in Logic, Language and In- formation. T¨ubingen, Germany, pp.140–151. Tanaka, R., K. Mineshima, and D. Bekki. (2014) “Resolving Modal Anaphora in Dependent Type Semantics”, In the Proceedings of the Eleventh International Workshop on Logic and Engineering of Natural Language Semantics (LENLS11), JSAI International Symposia on AI 2014. Tokyo, pp.43–56. Tanaka, R., K. Mineshima, and D. Bekki. (2015) “Factivity and Presupposition in Dependent Type Semantics”, In the Proceedings of TYpe Theory and LExical Semantics (TYTLES), ESSLLI2015 workshop. Tanaka, R., Y. Nakano, and D. Bekki. (2013) “Constructive Generalized Quantifiers Revisited”, In the Proceedings of Logic and Engineering of Natural Language Semantics 10 (LENLS 10). Tokyo, pp.69–78. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 30/31
  • 31. References Watanabe, N., E. McCready, and D. Bekki. (2014) “Japanese Honorification: Com- positionality and Expressivity”, In the Proceedings of S. Kawahara and M. Igarashi (eds.): FAJL 7: Formal Approaches to Japanese Linguistics, the MIT Working Papers in Linguistics 73. International Christian University, Japan, pp.265–276. “Contexts in DTS” Future University Hakodate, 4th July, 2015 Page 31/31