Skip to main content

The Sound of Languages

People tell me that my pronunciation is good in foreign languages (except for Spanish, since I'm incapable of rolling my r's - if anyone can teach me how to do it, I will consider naming my first-born after you). But I want to clear up a common misconception - this is not due to any natural "talent" with languages. I'm extremely conscious of every sound that comes out of my mouth, and I strive for accuracy in my pronunciation. It takes effort. Constant effort =P.

Which got me thinking - I wonder if studying music when you're little is correlated with improved foreign language pronunciation. I played guitar for a couple years when I was little, and I was fairly perfectionist with respect to the music. Sometimes for assignments I had to tape record (yes, cassette tapes) myself playing some piece, and it would take me forever to capture a good enough version that I was satisfied with. Of course, little did I know that professional musicians do hundreds of takes and split their songs up into segments, later cobbling them back together into a finished product.

Anyway, I grew up with a perfectionist's ear for sound and rhythm. For example, it annoys the hell out of me how large groups of people (e.g., at a stadium) cannot clap in beat to music, and always end up ahead of the beat. The fact that they're not on beat bothers me at an almost visceral level. Another example was watching Michael Jackson's This Is It. There's a scene where they're rehearsing the opening of "The Way You Make Me Feel", and the guy playing keyboard is trying to rush through the opening at a rhythm that doesn't make sense (Michael tells him that he needs to let one of the pauses "simmer"). The way the other guy wanted it just sounded "off". Michael got it. I got it. I wish I was there to back Michael up. I felt frustrated for MJ trying to explain to the guy why it sounded better his way, but it just did. It made more sense.

Now, with languages, I try to pay attention to not just the sounds of the words, but the overall pitch progression of the sentence, and the rhythm that the words are strung together. I love the rhythm and pitch variations of Korean. It's very sing-songy. It's not a tonal language, but it just sounds weird if you speak it with the wrong pitch.

I hear a lot of people speaking with pretty poor accents, and it makes me wonder what their musical background is. Some people actually can't hear the differences between sounds. My favorite example is how Americans not hailing from the Northeast are completely incapable of distinguishing between the vowel sounds in the words "Mary", "merry", and "marry" (they're all different, people!). Is this an ability that can be learned later in life after your primary auditory neural development is done? For that matter, how does your auditory system continue to develop later in life? Can you train yourself to hear sounds that you didn't grow up hearing? I don't know the answers, but my guesses are yes, your auditory system continues to develop later in life, it's just more difficult. Yes, you can train yourself to hear sounds that you didn't grow up hearing. And yes, having a musical background (i.e., a good "ear") has a direct effect on pronunciation of foreign languages.

Comments

Popular posts from this blog

Why Korean Is Hard For Native English Speakers

A couple of days ago, as an experiment, I wrote my first blog post ever in a non-English language . It was an attempt to explain some of the reasons that Korean is hard to learn for native English speakers, so I figured I might as well try to write it in Korean. Those of you who actually read Korean can see how awkward the attempt was =). In any case, the post came from an email conversation I had with The Korean from  Ask a Korean , a fantastically well-written blog about all things Korea from the perspective of a Korean who moved to the United States during high school. Since I tend to geek out on language things, I figured I might as well post part of that conversation. An edited version follows. --------- Out of the languages that I've attempted to learn so far, Korean has been the hardest. I've done a lot of meta thinking about learning Korean, and I think there are a number of reasons it's difficult for non-Koreans (and especially Westerners) to learn: 1) Obvi...

10 other things South Korea does better than anywhere else

Recently this article about 10 things that South Korea does better than anywhere else  has been making the rounds on social media, but when I first read it, I couldn't tell if it was sincere or satire. A few of the items on the list are not very positive, such as "overworking" and "using credit cards". So, I thought I would try to put together a better list. Here are 10 other things South Korea does better than anywhere else: 1) Small side dishes, a.k.a. " banchan " (반찬) Banchan are by far my favorite aspect of Korean cuisine. Rather than the "appetizer and main dish" approach of the West, a Korean meal is essentially built around small dishes. Even a 5,000 won (about $5 USD) meal at a mall food court will come with two to four banchan in addition to the "main", and often people will actually choose restaurants based  on the banchan (e.g., seolleongtang , or beef bone broth soup, places tend to have the tastiest kimchi). Ther...

Pushing Python Performance With Parallelization

TL;DR: For certain types of programs, you can take advantage of idiosyncrasies in the Python interpreter and the host operating system to create real shared memory between processes and get some pretty good parallelization. Premature optimization is the root of all evil. As a developer, you've probably heard this before, and what it means basically is that you shouldn't waste time optimizing code unless it's already doing what you want it to do. We also live in an era of seemingly unlimited resources with AWS/Google Compute, and often the easiest way to get higher throughput in your programs or service is just to pay for more instances. But sometimes it's fun to see what sort of performance we can get on a simple laptop (and save some cash at the same time). So anyway ... I've been working on this thing, and it took too damn long to run, and I needed to run it lots and lots of times ... so, it was time to optimize. Basic optimization has two main steps: 1) P...