Skip to main content

etymology - Unpossible / Impossible


While reading Richard II, I came across the word unpossible:


BUSHY: For us to levy power proportionable to the enemy is all unpossible.


This is the only use of unpossible in all of Shakespeare's plays. Impossible is used 44 times. I don't think the answer to "Why did Shakespeare only use unpossible once?" can be answered "Who knows? It's Shakespeare, anything goes." The use of unpossible is also in the 1597 quarto.


I also had difficulty finding online information about unpossible, other than that it is archaic and not used. I recently saw a game listed on Itunes and Googleplay called Unpossible.


When did the change to impossible happen? Why did it happen? There are many words in English that use the "un" prefix to say "not something:" Unjust, unfair, unloved, unhealthy, etc. When did unpossible stop being considered useable?



Answer



Ngram shows a prevalent usage of impossible vs unpossible also in the past centuries. It appears that unpossible has always been a less common variant:


Unpossible:





  • (Etymology) from Middle English unpossible, equivalent to un- ‎(“not”) +‎ possible.




  • (now rare, nonstandard) Impossible.




  • 1526, William Tyndale, New Testament, British Library 2000, p. 119:



    • And this is the. vj. moneth to her, which was called barren, for with god shall nothinge be unpossible.



  • 1621, Robert Burton, The Anatomy of Melancholy, New York Review of Books, 2001, p.280:

    • ’Tis a hard matter therefore to confine them, being they are so various and many, unpossible to apprehend all.





Impossible:




  • (Etymology) from Old French impossible, from Latin impossibilis, from in- ‎(“not”) + possibilis ‎(“possible”), from possum ‎(“to be able”) + suffix -ibilis ‎(“-able”).


  • Not possible; not able to be done or happen.




  • 1300 Cursor M. 14761 It es bot foli al þi talking, And als an inpossibile [Gött. impossible] thing.



  • 1340 Hampole Pr. Consc. 6281 Swa witty and myghty es he Þat na-thyng til hym impossibel may be.



Un-versus In- from Word Wide Words:




  • In general, words take un- when they are of English (Germanic) origin and in- if they come from Latin. (The forms im-, il-, and ir- are variations on in-.) Apart from that, there’s really no good guide to which one you should choose. You’re just going to have to stick to learning them by rote.

  • If it’s any consolation to you, the battle between in- and un- has been going on for centuries, with sometimes one form winning and sometimes the other, which suggests that the problem has been troubling English speakers for a very long time. As an example, for several centuries English had both inability and unability, but the latter disappeared in the eighteenth century for no very obvious reason.

  • Another is familiar from the American Declaration of Independence: “We hold these truths to be self-evident, that all men are created equal, that they are endowed by their Creator with certain unalienable rights ...”; these days, it’s inalienable (it should always have been, by the rule, since alien comes from the Latin alienus, of or belonging to another person or place).



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