Where’s The Verb?

Ubiquity’s proposed new parser design is based on a [[principles and parameters]] philosophy: we can build an underlying universal parser and, for each individual language, we simply set some “parameters” to tell the parser how to act. As we consider the design’s pros and cons, it’s important to reflect back on the linguistic data and see if this architecture can adequately handle the range of linguistic data attested in our languages.

Today I’ll examine highlight some disparate typological data to help us understand these questions: where’s the verb? and what does the verb look like? There are broadly three different verb forms taken in commands in different languages:

1

  1. the [[infinitive]],
  2. [[subjunctive mood]], or
  3. a special verb form such as [[imperative]], [[participial]], or conjunctive (such as Japanese [[Japanese verb conjugations#Te_form て form]])

Let’s give an example of each:

Infinitive (English):2 <pre lang="English" line='1'>Hit me!</pre>

Subjunctive mood (Modern Greek): “Eat it all!” <pre lang="English" line='2'>Na to fas olo! SUBJ it eat all</pre>

Imperative form (French): “Eat it!” <pre lang="French" line='4'>Mange -le! eat.IMP it</pre>

It’s important to note that some languages have multiple forms available for the same command. For example:

Dutch: three ways to say “watch out!” with the same verb

  1. Infinitive: Oppassen!
  2. Imperative: Pas op!
  3. Participial: Opgepast!

Similarly, I received a great comment by PhiliKON on German and associated data by Robert Kaiser on my blog post yesterday:

German: “search hello with google”

  1. Infinitive: hello mit google suchen
  2. Imperative: suche hello mit google
In addition, German and Dutch are interesting as they are [[V2 word order verb second (V2)]] languages, so the verb may surface at the beginning or the end of the sentence, depending on the form.
The new parser design (which you can demo) assumes for simplicity that the verb should be found at the beginning or the end of the input, which is consistent with the data I’ve seen (modulo [[Clitic#Clitics_in_Romance_languages clitics]]). Multiple verb forms could be accounted for by supporting “synonyms” of the verbs.

What are the different ways verbs are expressed in commands in your language? Is the verb always found at the beginning or the end of the sentence? Is it ever somewhere in the middle?

  1. Some of the data and theoretical support for this section comes from, among other sources, Sabine Iatridou’s De Modo Imperativo lecture notes. 

  2. Many refer to this in English as an “imperative form,” but in Modern English this is arguably the same as the infinitive.