Skip to main content

american english - "Grit" vs "gritted"


Dictionary sources tell me that the past tense of grit is gritted rather than grit. Why does that sound weird to me? Am I delusional, or is this one of those words changing in current usage? Pet is a similar case - I rarely hear petted used as a past tense.



Answer



Why does that sound weird to you?


Because there is a small group of irregular monosyllabic English verbs ending in -t (e.g, hit, spit, shit, knit, fit, pet, let) that share the peculiarity of having Zero as their past tense and past participle form, too. So it's



  • Present: He lets her in. She hits him in the face.

  • Past: He let her in. She hit him in the face.

  • Perfect He has let her in. She has hit him in the face.


Now, this is a small class, and the verbs in it are pretty common -- this is how they stay irregular, of course; verbs that aren't often encountered rapidly become regular. And with a verb like grit, there's a natural tendency to conjugate it like hit, spit, knit, fit; but grit is rare enough that maybe it ought to be regular. One can't know everything, after all; so pick whatever sounds good to you and stick with it.


I was surprised to hear petted, too; but I don't know how recent it is. Note that it's transitive, though. One thing to watch out for is differential regularity -- transitive usages, especially causative transitive usages, of irregular verbs may well become regular independently of the irregular corresponding intransitive.



  • He shined his shoes ~ Those shoes shone brilliantly -- but not the reverse.


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