나 na — 1sg plain.
Equations
- Fragments.Korean.Pronouns.na = { form := "na", person := some UD.Person.first, number := some Number.sg, script := some "나" }
Instances For
저 jeo — 1sg humble.
Equations
- Fragments.Korean.Pronouns.jeo = { form := "jeo", person := some UD.Person.first, number := some Number.sg, register := Core.Register.Level.formal, script := some "저" }
Instances For
우리 uri — 1pl.
Equations
- Fragments.Korean.Pronouns.uri = { form := "uri", person := some UD.Person.first, number := some Number.pl, script := some "우리" }
Instances For
너 neo — 2sg plain.
Equations
- Fragments.Korean.Pronouns.neo = { form := "neo", person := some UD.Person.second, number := some Number.sg, script := some "너" }
Instances For
당신 dangsin — 2sg polite.
Equations
- Fragments.Korean.Pronouns.dangsin = { form := "dangsin", person := some UD.Person.second, number := some Number.sg, register := Core.Register.Level.formal, script := some "당신" }
Instances For
그 geu — 3sg masculine.
Equations
- Fragments.Korean.Pronouns.geu = { form := "geu", person := some UD.Person.third, number := some Number.sg, script := some "그" }
Instances For
그녀 geunyeo — 3sg feminine.
Equations
- Fragments.Korean.Pronouns.geunyeo = { form := "geunyeo", person := some UD.Person.third, number := some Number.sg, script := some "그녀" }
Instances For
그들 geudeul — 3pl.
Equations
- Fragments.Korean.Pronouns.geudeul = { form := "geudeul", person := some UD.Person.third, number := some Number.pl, script := some "그들" }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
-yo polite particle.
Equations
- Fragments.Korean.Pronouns.yo = { form := "-yo", register := Core.Register.Level.neutral, gloss := "POL" }
Instances For
-(su)pnida formal particle.
Equations
- Fragments.Korean.Pronouns.supnida = { form := "-(su)pnida", register := Core.Register.Level.formal, gloss := "FORM" }
Instances For
A verb form showing speech-level inflection.
- form : String
- gloss : String
- register : Core.Register.Level
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
가 ga — "go" (plain/intimate).
Equations
- Fragments.Korean.Pronouns.ga = { form := "ga", gloss := "go.PLN", register := Core.Register.Level.informal }
Instances For
가요 gayo — "go" (polite).
Equations
- Fragments.Korean.Pronouns.gayo = { form := "gayo", gloss := "go.POL", register := Core.Register.Level.neutral }
Instances For
갑니다 gamnida — "go" (formal).
Equations
- Fragments.Korean.Pronouns.gamnida = { form := "gamnida", gloss := "go.FORM", register := Core.Register.Level.formal }
Instances For
theorem
Fragments.Korean.Pronouns.has_all_persons :
(allPronouns.any fun (x : Core.Pronouns.PronounEntry) => x.person == some UD.Person.first) = true ∧ (allPronouns.any fun (x : Core.Pronouns.PronounEntry) => x.person == some UD.Person.second) = true ∧ (allPronouns.any fun (x : Core.Pronouns.PronounEntry) => x.person == some UD.Person.third) = true
All three persons are attested.
theorem
Fragments.Korean.Pronouns.has_both_numbers :
(allPronouns.any fun (x : Core.Pronouns.PronounEntry) => x.number == some Number.sg) = true ∧ (allPronouns.any fun (x : Core.Pronouns.PronounEntry) => x.number == some Number.pl) = true
Both singular and plural are attested.
1st person has plain/humble register distinction.
theorem
Fragments.Korean.Pronouns.second_person_all_2p :
(secondPersonPronouns.all fun (x : Core.Pronouns.PronounEntry) => x.person == some UD.Person.second) = true
2nd person pronouns are all second person.
theorem
Fragments.Korean.Pronouns.tv_distinction :
(secondPersonPronouns.any fun (x : Core.Pronouns.PronounEntry) => x.register == Core.Register.Level.informal) = true ∧ (secondPersonPronouns.any fun (x : Core.Pronouns.PronounEntry) => x.register == Core.Register.Level.formal) = true
The T/V register distinction is present in 2nd person.
Verb forms span all three speech levels.