Verb phrase (infinitival)
Equations
Instances For
Control verb: takes VP, gives VP (e.g., "helpen" = help)
Instances For
Perception verb: takes VP, gives TV-like (e.g., "zag" = saw)
Equations
Instances For
Infinitival transitive: VP/NP (e.g., "zwemmen" when taking object)
Equations
Instances For
Infinitival verb needing subject (for cross-serial): (S\NP)/NP
In Dutch verb-raising constructions, the infinitive's subject appears in what looks like an object position. This category allows the embedded subject to be picked up via composition.
zwemmen : (S\NP)/NP -- "swim" needing its subject as argument
This differs from the simple intransitive VP = S\NP.
Instances For
Forward Composition² (B²): X/Y (Y/Z)/W → (X/Z)/W
Allows "reaching through" one extra argument.
Equations
Instances For
Forward Composition³ (B³): X/Y ((Y/Z)/W)/V → ((X/Z)/W)/V
Allows "reaching through" two extra arguments.
Equations
Instances For
Extended derivation with generalized composition.
- lex : LexEntry → ExtDerivStep
- fapp : ExtDerivStep → ExtDerivStep → ExtDerivStep
- bapp : ExtDerivStep → ExtDerivStep → ExtDerivStep
- fcomp : ExtDerivStep → ExtDerivStep → ExtDerivStep
- fcomp2 : ExtDerivStep → ExtDerivStep → ExtDerivStep
- fcomp3 : ExtDerivStep → ExtDerivStep → ExtDerivStep
- ftr : ExtDerivStep → Cat → ExtDerivStep
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Get category from extended derivation
Equations
- (CCG.CrossSerial.ExtDerivStep.lex a).cat = some a.cat
- (a.fapp a_1).cat = do let c1 ← a.cat let c2 ← a_1.cat CCG.forwardApp c1 c2
- (a.bapp a_1).cat = do let c1 ← a.cat let c2 ← a_1.cat CCG.backwardApp c1 c2
- (a.fcomp a_1).cat = do let c1 ← a.cat let c2 ← a_1.cat CCG.forwardComp c1 c2
- (a.fcomp2 a_1).cat = do let c1 ← a.cat let c2 ← a_1.cat CCG.CrossSerial.forwardComp2 c1 c2
- (a.fcomp3 a_1).cat = do let c1 ← a.cat let c2 ← a_1.cat CCG.CrossSerial.forwardComp3 c1 c2
- (a.ftr a_1).cat = do let x ← a.cat some (CCG.forwardTypeRaise x a_1)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- CCG.CrossSerial.jan_lex = CCG.CrossSerial.ExtDerivStep.lex { form := "Jan", cat := CCG.NP }
Instances For
Equations
- CCG.CrossSerial.piet_lex = CCG.CrossSerial.ExtDerivStep.lex { form := "Piet", cat := CCG.NP }
Instances For
Equations
- CCG.CrossSerial.marie_lex = CCG.CrossSerial.ExtDerivStep.lex { form := "Marie", cat := CCG.NP }
Instances For
Equations
- CCG.CrossSerial.karel_lex = CCG.CrossSerial.ExtDerivStep.lex { form := "Karel", cat := CCG.NP }
Instances For
Equations
- CCG.CrossSerial.zag_lex = CCG.CrossSerial.ExtDerivStep.lex { form := "zag", cat := CCG.CrossSerial.PercV }
Instances For
Equations
- CCG.CrossSerial.helpen_lex = CCG.CrossSerial.ExtDerivStep.lex { form := "helpen", cat := CCG.CrossSerial.ControlV }
Instances For
Equations
- CCG.CrossSerial.laten_lex = CCG.CrossSerial.ExtDerivStep.lex { form := "laten", cat := CCG.CrossSerial.ControlV }
Instances For
zwemmen with InfSubj category for verb-raising
Equations
- CCG.CrossSerial.zwemmen_vr = CCG.CrossSerial.ExtDerivStep.lex { form := "zwemmen", cat := CCG.CrossSerial.InfSubj }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
The cross-serial language {aⁿbⁿcⁿ | n ≥ 1} is NOT context-free.
CCG can generate this via generalized composition, proving CCG is mildly context-sensitive.
Equations
- CCG.CrossSerial.crossSerialLanguage n = List.replicate n "a" ++ List.replicate n "b" ++ List.replicate n "c"