Skip to main content

etymology - Is there a word spelled with a silent B at the start?


My dad and I were playing a game in the car where we picked a letter and then each alternated saying a word that started with that letter. We did it with b, for example, it might go:



Dad: bath
me: ball
dad: buffalo
me: bank
etc.



As we were playing/debating the rules of our game, I noticed that there were no b-words that I could think of that started with a sound other than /b/. Whereas, for example, for words starting with the letter t, some of them begin with the sound /ð/ or /θ/ rather than /t/.


Am I missing some obvious contradictions to this 'rule'? Is there any sort of etymological explanation for this?


To clarify as requested by a comment:


I am looking for



  1. A word that starts with a b that makes a sound other than /b/.

  2. More broadly, whether or not there is an etymologically explained pattern among starting letters that shows whether or not there exists the non-phonetic sound at the beginning of a word for a certain letter (or the commonality of the existence of those cases).


From here I'm looking at which starting letters of words have a tendency to be pronounced non-phonetically.



Answer



There are English words that start with the letter B in spelling but that don't start with the "B sound" /b/ in speech, but not very many, and none of them is very common. An example is bdellium, from Greek, although Wiktionary indicates that some people use a "nonstandard" pronunciation /ˈb(ə)dɛliəm/ that does start with the sound /b/. (Compare the fairly common, but I would say nonstandard, pronunciation of yttrium as /jɪtriəm/ "yittrium" instead of /ɪtriəm/ "ittrium".)


The existence of complicated spellings in English is largely based on etymological factors, but there are too many to explain in one answer post on this site. There are a number of good books about the ways English spelling is related to English pronunciation; e.g. Dictionary of the British English Spelling System by Greg Brooks (despite the title, much in that book is relevant to any variety of English, and you can view it for free online.)


I would say that sound changes are one of the main things to consider as possible explanations for the patterns of present-day English spelling. For example, sound changes related to palatalization are responsible for the somewhat complex relationship between spellings like "c", "k", "ch", "g" and sounds like /k/, /s/, /tʃ/, /g/, /dʒ/. Not all of these sound changes occurred in English: the use of "g" as a spelling for the sound /dʒ/ (as in the word "gentle") is based on a French sound change that turned inherited /g/ sounds into /dʒ/ in certain contexts. (Modern French has further changed /dʒ/ into /ʒ/, but most English words of French origin are too old to have been affected by that French sound change.)


I can't think of any sound changes like this that have affected word-initial /b/ sounds in English or any language that has significantly influenced it. It's not impossible in principle for a sound change to affect word-initial /b/ and thereby complicate a language's spelling system: in Irish, the digraph "bh" is used to represent the consonant sounds /w/~/vˠ/ and /vʲ/, which developed from weakening of the "b sounds" /bˠ/ and /bʲ/ in certain contexts. As a result, certain types of words in Irish show alternation between initial "b" and "bh" depending on the grammatical context, such as bean "woman" (pronounced with /bʲ/) and an bhean "the woman" (pronounced with /vʲ/). (The "b/bh" alternation is one of several grammatical "consonant mutations" occurring in Irish words.)


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