Skip to main content

grammatical number - 'phenomena' as singular: usage


We know phenomena is a plural whose singular form is phenomenon. However, I have seen frequent of use of phenomena itself as singular, as in 'this is a phenomena ...', 'this phenomena is ...', etc.


This Google Ngram shows such use may also have been present in literature, 'this phenomena' being more frequent.


enter image description here


How do we explain this discrepancy and suggest that the usage is wrong?




[Edit 1]: Will usage eventually redefine grammar in such cases as 'phenomena' and 'criteria' then? (inspired by @Barrie England 's comment.)



Answer



There is a tendency for the plurals of Latin words to be treated over time as singular in English and eventually to lose their singular forms, changing their meanings in doing so. Agenda, stamina and data are three examples. This doesn’t seem to happen as much with Greek words such as criterion/a. The reason is possibly that such words are more learnèd and less frequent and may be used by people who know and insist on the difference between the singular and plural. However, as far as phenomena is concerned, ‘The Cambridge Guide to English Usage’ reports that there are instances of its singular use as early as the sixteenth century and that there is good corpus evidence that is gaining ground now. Research in Australia in the 1970s, the article continues, showed that most young people there thought of the word as singular. The article concludes that ‘phenomena seems to be consolidating its position for plural uses, apart from extending its influence into the singular' (my emphasis).


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...