Skip to main content

Which nouns can be used as verbs?


Someone told me that the English language is special (compared to German, at least) in the way that every noun could be used as a verb. I think this phenomenon is called supine. Is this correct?


Examples:



  • house → to house

  • well → to well

  • phone → to phone

  • table → to table

  • lamp → to lamp


At first it seemed to me that this would work with all nouns. But then I thought of the following nouns, and I think they can't be used as a verb, am I right?



  • person →(?) to person

  • human →(?) to human

  • baker →(?) to baker

  • computer →(?) to computer

  • example →(?) to example


It seems that nouns describing people (person, human, baker) are exceptions? But it works for "author" ("to author"). Hmm. "Computer" seems smiliar to a person's job to me (could be a human instead of a machine that computes).


But what about "example"? I think "to example (something/someone)" is not possible, is it? What would a native speaker understand/think if someone says:



He examples.


I want to example it/him.



Which are the nouns that can't be used as a verb?



Answer



Theoretically, any, absolutely any noun — and indeed any, absolutely any word — in English can be used as a verb. Nothing prevents you from exampling, betweening, egadsing or greating. Theoretically.


In practice, there are of course a variety of reasons why not everything gets verbified. For starters, there are only so many words you really need in everyday conversation. You don't use example as a verb, but you also don't use amaranthine as an adjective. For all you know, both are sitting in a dictionary somewhere, but for all you care, both might as well not exist.


Secondly, there is that linguistic phenomenon called "blocking". We already have the word "to compute", so its existence blocks the verb "to computer" from getting any traction, or indeed from being created in the first place. If it is to be introduced and get any traction, then only in a meaning different from that of "to compute". The difference can be very slight; it can also be one of register or dialect rather than one of meaning, but it will be a difference nonetheless.


Likewise, there is no way to tell what "he examples" might end up meaning should it ever get introduced, but it's likely to be something entirely different from "he demonstrates", or "he leads by example", because we already have other words for those which everybody uses.


Comments

Popular posts from this blog

Is there a word/phrase for "unperformant"?

As a software engineer, I need to sometimes describe a piece of code as something that lacks performance or was not written with performance in mind. Example: This kind of coding style leads to unmaintainable and unperformant code. Based on my Google searches, this isn't a real word. What is the correct way to describe this? EDIT My usage of "performance" here is in regard to speed and efficiency. For example, the better the performance of code the faster the application runs. My question and example target the negative definition, which is in reference to preventing inefficient coding practices. Answer This kind of coding style leads to unmaintainable and unperformant code. In my opinion, reads more easily as: This coding style leads to unmaintainable and poorly performing code. The key to well-written documentation and reports lies in ease of understanding. Adding poorly understood words such as performant decreases that ease. In addressing the use of such a poorly ...

A man has a garden measuring 84 meters by 56 meters. He divides it into the minimum number of square plots. What is the length of the square plots?

We wish to divide this man's garden into the minimum number of square plots possible. A square has all four sides with the same length.Our garden is a rectangle, so the answer is clearly not 1 square plot. If we choose the wrong length for our squares, we may end up with missing holes or we may not be able to fit our squares inside the garden. So we have 84 meters in one direction and 56 meters in the other direction. When we start dividing the garden in square plots, we are "filling" those lengths in their respective directions. At each direction, there must be an integer number of squares (otherwise, we get holes or we leave the garden), so that all the square plots fill up the garden nicely. Thus, our job here is to find the greatest common divisor of 84 and 56. For this, we prime factor both of them: `56 = 2*2*2*7` `84 = 2*2*3*7` We can see that the prime factors and multiplicities in common are `2*2*7 = 28` . This is the desired length of the square plots. If you wi...