Icelandic Case Fragment #
@cite{thrainsson-2007} @cite{yip-maling-jackendoff-1987} @cite{zaenen-maling-thrainsson-1985}
Icelandic has 4 morphological cases: NOM, ACC, DAT, GEN. The signature phenomenon is quirky case: non-nominative subjects (DAT, ACC, rarely GEN) that pass virtually all standard subject diagnostics except verb agreement.
Case Frames (@cite{thrainsson-2007} §4.1.2.2, ex. 4.48) #
Of the 16 logically possible two-case combinations (4 × 4), only 5 are reasonably common for dyadic verbs (@cite{yip-maling-jackendoff-1987}): NA, ND, NG, DN, AA. Two more (AN, GN) are extremely rare or restricted to one construction each. Seven (DA, DD, DG, GA, GD, GG, and transitive NN) do not occur at all.
Quirky Subject Properties (@cite{thrainsson-2007} §4.1.2.1) #
Oblique subjects pass 9 of 10 subject diagnostics (@cite{zaenen-maling-thrainsson-1985}, @cite{thrainsson-2007} §4.1.1):
- Precede verb in default word order (§4.1.1.1)
- Invert with verb in yes/no questions (§4.1.1.1)
- Block expletive það constructions (§4.1.1.3)
- Bind clause-internal reflexives sig (§4.1.1.4)
- Bind long-distance reflexives (§4.1.1.5)
- License conjunction reduction / subject ellipsis (§4.1.1.6)
- Embed under ECM verbs, preserving case (§4.1.1.7)
- Control PRO in infinitival complements (§4.1.1.8, limited)
- Extract from embedded clauses (§4.1.1.9)
The ONE diagnostic they fail: verb agreement. The finite verb agrees with the nominative argument (regardless of position), not the quirky subject. When no nominative argument is present, the verb shows default 3sg agreement (@cite{thrainsson-2007} ex. 4.47).
Triadic (Ditransitive) Frames (@cite{thrainsson-2007} §4.1.2.3, ex. 4.62) #
Subject is always nominative in ditransitives. Six patterns are attested for the two objects: NDA (>220 verbs), NAD (~40), NDG (~30), NDD (~30), NAG (~20), NAA (~2).
Case Assignment (@cite{zaenen-maling-thrainsson-1985}) #
Quirky case is fixed (lexical): it is preserved under raising and is
not affected by passivization. Structural case (NOM, ACC in standard
frames) is derived: it changes under passivization (ACC object →
NOM subject in passive). This distinction is encoded via CaseAssignment
from Core.Case.
Icelandic 4-case inventory (@cite{thrainsson-2007} §4.1).
Equations
Instances For
Contiguous on Blake's hierarchy (ranks 6, 6, 5, 4).
A verb's case frame: the cases assigned to its arguments. Theory-neutral — records the morphological facts without committing to a particular analysis of WHY these cases appear.
The two post-verbal argument slots follow linear order: firstObject
is the first NP after the verb (typically IO in NDA frames),
secondObject is the second (typically DO in NDA frames).
@cite{thrainsson-2007} §4.1.2.3 discusses the difficulty of labeling
these as "direct" vs "indirect" in Icelandic.
- form : String
Icelandic citation form
- gloss : String
English gloss
- subjectCase : Core.Case
Case of the subject (first argument)
Case of the first post-verbal argument, if any
Case of the second post-verbal argument, if any
- subjectCaseAssignment : Core.CaseAssignment
How the subject's case is assigned:
.derived(structural — changes under passivization/raising) or.fixed(lexical/quirky — preserved under raising). Default: NOM → derived, all others → fixed.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
- Fragments.Icelandic.Case.instBEqVerbCaseFrame.beq x✝¹ x✝ = false
Instances For
Is the subject non-nominative (quirky)? Derived from the case frame, not stored redundantly.
Equations
- v.quirkySubject = (v.subjectCase != Core.Case.nom)
Instances For
elska 'love' — NA frame (@cite{thrainsson-2007} ex. 4.56a). Hann elskar hana. 'He(N) loves her(A).'
Equations
- Fragments.Icelandic.Case.elska = { form := "elska", gloss := "love", subjectCase := Core.Case.nom, firstObject := some Core.Case.acc }
Instances For
lesa 'read' — NA frame (@cite{thrainsson-2007} ex. 4.56b). Hún las bókina. 'She(N) read book-the(A).'
Equations
- Fragments.Icelandic.Case.lesa = { form := "lesa", gloss := "read", subjectCase := Core.Case.nom, firstObject := some Core.Case.acc }
Instances For
hjálpa 'help' — ND frame (@cite{thrainsson-2007} ex. 4.57a). Hún hjálpaði honum. 'She(N) helped him(D).'
Equations
- Fragments.Icelandic.Case.hjalpa = { form := "hjálpa", gloss := "help", subjectCase := Core.Case.nom, firstObject := some Core.Case.dat }
Instances For
strauka 'pet' — ND frame (@cite{thrainsson-2007} ex. 4.57b). Ég strauk kettinum. 'I(N) petted cat-the(D).'
Equations
- Fragments.Icelandic.Case.strauka = { form := "strauka", gloss := "pet", subjectCase := Core.Case.nom, firstObject := some Core.Case.dat }
Instances For
kasta 'throw' — ND frame (@cite{thrainsson-2007} ex. 4.57c). Hann kastaði boltanum. 'He(N) threw ball-the(D).'
Equations
- Fragments.Icelandic.Case.kasta = { form := "kasta", gloss := "throw", subjectCase := Core.Case.nom, firstObject := some Core.Case.dat }
Instances For
sakna 'miss' — NG frame (@cite{thrainsson-2007} ex. 4.58a). Hann saknar hennar. 'He(N) misses her(G).'
Equations
- Fragments.Icelandic.Case.sakna = { form := "sakna", gloss := "miss", subjectCase := Core.Case.nom, firstObject := some Core.Case.gen }
Instances For
krefja 'demand' — NG frame (@cite{thrainsson-2007} ex. 4.58b). Ég krefst bóta. 'I(N) demand compensation(G).'
Equations
- Fragments.Icelandic.Case.krefja = { form := "krefja", gloss := "demand", subjectCase := Core.Case.nom, firstObject := some Core.Case.gen }
Instances For
líka 'like' — DN frame (@cite{thrainsson-2007} ex. 4.61b). Henni líkuðu hestarnir. 'Her(D) liked(pl.) horses-the(Npl.).' Verb agrees with NOM object hestarnir, not DAT subject henni.
Equations
- Fragments.Icelandic.Case.lika = { form := "líka", gloss := "like", subjectCase := Core.Case.dat, firstObject := some Core.Case.nom }
Instances For
batna 'get better' — DN frame (@cite{thrainsson-2007} ex. 4.61c). Barninu batnaði veikin. 'Child-the(D) got-better sickness(N).'
Equations
- Fragments.Icelandic.Case.batna = { form := "batna", gloss := "get better/recover", subjectCase := Core.Case.dat, firstObject := some Core.Case.nom }
Instances For
leiðast 'be bored' — DN frame (@cite{thrainsson-2007} ex. 4.61d). Stráknum leiddust kennararnir. 'Boy-the(D) bored(pl.) teachers-the(Npl.).' Also an -st verb (see Predicates.lean).
Equations
- Fragments.Icelandic.Case.leidastCF = { form := "leiðast", gloss := "be bored", subjectCase := Core.Case.dat, firstObject := some Core.Case.nom }
Instances For
áskotnast 'get by luck' — DN frame (@cite{thrainsson-2007} ex. 4.61a). Mér áskotnuðust peningar. 'Me(D) lucked-onto(pl.) money(Npl.).'
Equations
- Fragments.Icelandic.Case.askotnast = { form := "áskotnast", gloss := "get by luck", subjectCase := Core.Case.dat, firstObject := some Core.Case.nom }
Instances For
vanta 'lack/need' — AA frame (@cite{thrainsson-2007} ex. 4.60a). Hana vantar vinnu. 'Her(A) lacks work(A).'
Equations
- Fragments.Icelandic.Case.vanta = { form := "vanta", gloss := "lack/need", subjectCase := Core.Case.acc, firstObject := some Core.Case.acc }
Instances For
dreyma 'dream' — AA frame (@cite{thrainsson-2007} ex. 4.60b). Mig dreymdi draum. 'Me(A) dreamt dream(A).'
Equations
- Fragments.Icelandic.Case.dreyma = { form := "dreyma", gloss := "dream", subjectCase := Core.Case.acc, firstObject := some Core.Case.acc }
Instances For
bresta 'fail (of courage)' — AA frame (@cite{thrainsson-2007} ex. 4.60c). Harald brast kjark. 'Harold(A) failed courage(A).'
Equations
- Fragments.Icelandic.Case.bresta = { form := "bresta", gloss := "fail (of courage)", subjectCase := Core.Case.acc, firstObject := some Core.Case.acc }
Instances For
ACC-NOM impersonal — extremely rare, possibly one construction (@cite{thrainsson-2007} ex. 4.52a, parenthesized in ex. 4.48 grid). Hana hefur líklega sótt syfja. 'Her(A) has probably sought sleepiness(N).' The ACC experiencer occupies subject position; the NOM theme syfja 'sleepiness' is a nominative noun, not a verb. The verbal predicate in this construction is sækja (pp. sótt).
Equations
- Fragments.Icelandic.Case.syfja = { form := "syfja", gloss := "sleepiness (ACC-NOM impersonal)", subjectCase := Core.Case.acc, firstObject := some Core.Case.nom }
Instances For
GEN-NOM — extremely restricted, all examples involve the copula vera and a fixed predicative noun (@cite{thrainsson-2007} ex. 4.54-4.55). Þess var þá enginn kostur. 'Of-that(G) was then no(N) choice(N).' 'That was not possible then.'
Equations
- Fragments.Icelandic.Case.vera_kostur = { form := "vera (kostur)", gloss := "be an option (copula + pred. noun)", subjectCase := Core.Case.gen, firstObject := some Core.Case.nom }
Instances For
gefa 'give' — NDA frame (@cite{thrainsson-2007} ex. 4.63a). María gaf Haraldi bókina. 'Mary(N) gave Harold(D) book-the(A).' Most common ditransitive pattern (>220 verbs).
Equations
- Fragments.Icelandic.Case.gefa = { form := "gefa", gloss := "give", subjectCase := Core.Case.nom, firstObject := some Core.Case.dat, secondObject := some Core.Case.acc }
Instances For
segja 'tell' — NDA frame (@cite{thrainsson-2007} ex. 4.62).
Equations
- Fragments.Icelandic.Case.segja = { form := "segja", gloss := "tell", subjectCase := Core.Case.nom, firstObject := some Core.Case.dat, secondObject := some Core.Case.acc }
Instances For
svipta 'deprive' — NAD frame (@cite{thrainsson-2007} ex. 4.65a). Lögreglan svipti hann ökuleyfinu. 'Police-the(N) deprived him(A) driver's-licence-the(D).'
Equations
- Fragments.Icelandic.Case.svipta = { form := "svipta", gloss := "deprive", subjectCase := Core.Case.nom, firstObject := some Core.Case.acc, secondObject := some Core.Case.dat }
Instances For
leyna 'conceal' — NAD frame (@cite{thrainsson-2007} ex. 4.65b). Þeir leyndu hana sannleikanum. 'They(N) concealed her(A) truth-the(D).'
Equations
- Fragments.Icelandic.Case.leyna = { form := "leyna", gloss := "conceal", subjectCase := Core.Case.nom, firstObject := some Core.Case.acc, secondObject := some Core.Case.dat }
Instances For
lofa 'promise' — NDD frame (@cite{thrainsson-2007} ex. 4.72a). Ég lofaði henni því. 'I(N) promised her(D) it(D).'
Equations
- Fragments.Icelandic.Case.lofa = { form := "lofa", gloss := "promise", subjectCase := Core.Case.nom, firstObject := some Core.Case.dat, secondObject := some Core.Case.dat }
Instances For
skila 'return' — NDD frame (@cite{thrainsson-2007} ex. 4.72b). Hún skilaði mér bókinni. 'She(N) returned me(D) book-the(D).'
Equations
- Fragments.Icelandic.Case.skila = { form := "skila", gloss := "return", subjectCase := Core.Case.nom, firstObject := some Core.Case.dat, secondObject := some Core.Case.dat }
Instances For
spyrja 'ask' — NAG frame (@cite{thrainsson-2007} ex. 4.70a). Þeir spurðu hana margra spurninga. 'They(N) asked her(A) many questions(G).'
Equations
- Fragments.Icelandic.Case.spyrja = { form := "spyrja", gloss := "ask", subjectCase := Core.Case.nom, firstObject := some Core.Case.acc, secondObject := some Core.Case.gen }
Instances For
óska 'wish' — NDG frame (@cite{thrainsson-2007} ex. 4.69a). Ég óska þér velfarnaðar. 'I(N) wish you(D) well-being(G).'
Equations
- Fragments.Icelandic.Case.oska = { form := "óska", gloss := "wish", subjectCase := Core.Case.nom, firstObject := some Core.Case.dat, secondObject := some Core.Case.gen }
Instances For
kosta 'cost' — NAA frame (@cite{thrainsson-2007} ex. 4.74). Maturinn kostaði mig fjóra dollara. 'Food-the(N) cost me(A) four dollars(A).' Extremely rare pattern (~2 verbs).
Equations
- Fragments.Icelandic.Case.kosta = { form := "kosta", gloss := "cost", subjectCase := Core.Case.nom, firstObject := some Core.Case.acc, secondObject := some Core.Case.acc }
Instances For
The 10 standard subject diagnostics for Icelandic (@cite{thrainsson-2007} §4.1.1, @cite{zaenen-maling-thrainsson-1985}).
- defaultPosition : SubjectDiagnostic
- yesNoInversion : SubjectDiagnostic
- blockExpletive : SubjectDiagnostic
- reflexiveBinding : SubjectDiagnostic
- longDistanceReflexive : SubjectDiagnostic
- conjunctionReduction : SubjectDiagnostic
- ecmEmbedding : SubjectDiagnostic
- proControl : SubjectDiagnostic
- extraction : SubjectDiagnostic
- verbAgreement : SubjectDiagnostic
Instances For
Equations
- Fragments.Icelandic.Case.instBEqSubjectDiagnostic.beq x✝ y✝ = (x✝.ctorIdx == y✝.ctorIdx)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Does a quirky (non-nominative) subject pass this diagnostic? Quirky subjects pass all diagnostics EXCEPT verb agreement (@cite{thrainsson-2007} §4.1.2.1).
Equations
Instances For
Which argument does the finite verb agree with? In Icelandic, the verb agrees with the nominative argument, regardless of whether it is the subject or the object (@cite{thrainsson-2007} §4.1.2.1, ex. 4.47). When no nominative argument is present, default 3sg appears.
- nominativeArg : AgreementTarget
- default3sg : AgreementTarget
Instances For
Equations
- Fragments.Icelandic.Case.instBEqAgreementTarget.beq x✝ y✝ = (x✝.ctorIdx == y✝.ctorIdx)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Determine the agreement target for a verb's case frame. If any argument is nominative, the verb agrees with it. Otherwise, default 3sg.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Dyadic verbs with nominative subjects.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Dyadic verbs with quirky (non-nominative) subjects.
Equations
- One or more equations did not get rendered due to their size.
Instances For
All dyadic verb entries.
Equations
Instances For
Ditransitive verb entries.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The 5 productive dyadic case patterns in Icelandic (@cite{thrainsson-2007} §4.1.2.2, @cite{yip-maling-jackendoff-1987}). Out of 16 logically possible combinations (4 cases × 4 cases), 7 do not occur (DA, DD, DG, GA, GD, GG, transitive NN) and 4 are very rare (AN, AG, GN, NN-copular).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Every verb in the fragment uses one of the 7 attested patterns (5 productive + AN + GN).
All verbs in the quirky list have non-nominative subjects.
No verb in the nominative-subject list has a quirky subject.
Quirky subjects have fixed (lexical) case assignment.
Nominative subjects have derived (structural) case assignment.
NA verbs: agreement target is the nominative subject.
DN verbs: agreement target is the nominative OBJECT (not the dative subject). This is the key quirky-case agreement fact.
AA verbs (no nominative argument): default 3sg agreement.
AN verbs: agreement target is the nominative object.
Comprehensive: quirky verbs with NOM objects agree with that object.
Comprehensive: quirky verbs without any NOM argument default to 3sg.
Quirky subjects pass 9 of 10 diagnostics.
Verb agreement is the only diagnostic quirky subjects fail.
All ditransitive verbs have nominative subjects.
All 6 attested ditransitive object patterns are represented.
leiðast 'be bored' is both an -st verb AND a quirky-subject verb (DAT-NOM frame). The form and gloss match between this fragment and Predicates.lean — verified by inspection (structural link requires a study file that imports both).