Minimal Pairs for Greek Phonology
-
- Posts: 4188
- Joined: May 5th, 2011, 5:34 pm
- Location: Durham, NC
- Contact:
Minimal Pairs for Greek Phonology
I am looking for a set of minimal pairs that can be used to teach the Greek alphabet. In this context, I am looking for pairs of words that differ by a single sound. A few examples:
ἄν / ἐν
ἀββα / ἀλλά
γέ / τέ
δέ / γέ
τέ / ὅτε
ὅτε / πότε
ὅτε / ὥστε
πότε / τότε
Does anyone know of a list of minimal pairs that illustrates the sounds of each letter and diphthong in the Greek language?
ἄν / ἐν
ἀββα / ἀλλά
γέ / τέ
δέ / γέ
τέ / ὅτε
ὅτε / πότε
ὅτε / ὥστε
πότε / τότε
Does anyone know of a list of minimal pairs that illustrates the sounds of each letter and diphthong in the Greek language?
ἐξίσταντο δὲ πάντες καὶ διηποροῦντο, ἄλλος πρὸς ἄλλον λέγοντες, τί θέλει τοῦτο εἶναι;
http://jonathanrobie.biblicalhumanities.org/
http://jonathanrobie.biblicalhumanities.org/
-
- Posts: 3353
- Joined: May 11th, 2011, 10:51 am
- Location: Melbourne
- Contact:
Re: Minimal Pairs for Greek Phonology
I’ve wondered about this myself, and thought that it ought to be fairly straightforward to program a search to find all the minimal pairs in a corpus (e.g. strings with an edit distance of one, as a rough cut approximation).
Stephen C. Carlson, Ph.D.
Melbourne, Australia
Melbourne, Australia
-
- Posts: 5
- Joined: January 11th, 2018, 4:44 am
Re: Minimal Pairs for Greek Phonology
I did it for Hebrew here: https://github.com/ETCBC/bhsa/blob/mast ... airs.ipynb
It should work for Greek as well: if you make a list of all words, this program can compute all minimal pairs of that list.
Written in Python (3), with a Levenshtein module. Follow the link, and you'll see how to install that module.
It should work for Greek as well: if you make a list of all words, this program can compute all minimal pairs of that list.
Written in Python (3), with a Levenshtein module. Follow the link, and you'll see how to install that module.
Re: Minimal Pairs for Greek Phonology
Randall Buth's Living Koine Greek course does this to introduce the alphabet. It begins with a set of words which only have one sound, so every pair of them differs by a single sound. e.g. α, ου, αι, οι, η; and I think it does what you're asking for, but presumably it's copyright.
-
- Posts: 4188
- Joined: May 5th, 2011, 5:34 pm
- Location: Durham, NC
- Contact:
Re: Minimal Pairs for Greek Phonology
Excellent! Thanks, Dirk!dirkroorda wrote: ↑January 11th, 2018, 4:47 am I did it for Hebrew here: https://github.com/ETCBC/bhsa/blob/mast ... airs.ipynb
It should work for Greek as well: if you make a list of all words, this program can compute all minimal pairs of that list.
Written in Python (3), with a Levenshtein module. Follow the link, and you'll see how to install that module.
ἐξίσταντο δὲ πάντες καὶ διηποροῦντο, ἄλλος πρὸς ἄλλον λέγοντες, τί θέλει τοῦτο εἶναι;
http://jonathanrobie.biblicalhumanities.org/
http://jonathanrobie.biblicalhumanities.org/
-
- Posts: 4188
- Joined: May 5th, 2011, 5:34 pm
- Location: Durham, NC
- Contact:
Re: Minimal Pairs for Greek Phonology
Since Dirk's notebook provides the code but not the data, I decided to post the data separately. And that somehow turned into a blog post, which you can read here:
Minimal Pairs for Greek and Hebrew
Thanks again to Dirk for his solution!
Minimal Pairs for Greek and Hebrew
Thanks again to Dirk for his solution!
ἐξίσταντο δὲ πάντες καὶ διηποροῦντο, ἄλλος πρὸς ἄλλον λέγοντες, τί θέλει τοῦτο εἶναι;
http://jonathanrobie.biblicalhumanities.org/
http://jonathanrobie.biblicalhumanities.org/
Re: Minimal Pairs for Greek Phonology
That is pretty cool.
These pairs seem wrong for different reasons:
You could `s/[άέό]ω/ω` and add all the inflected forms of a single verb (perhaps λύω!) to get more results. Or perhaps skipping the lemmatization step would give better results, with real words as they appear in the texts?
These pairs seem wrong for different reasons:
The first pair differs by more than one sound ('bara'/'bore'/'bora' vs. 'bo' -- I think it's still a consistent list, just not phonological). The second pair don't seem to be real, inflected words at all, and the real words they correspond to differ by zero.ברא בוא
ζάω ζέω
You could `s/[άέό]ω/ω` and add all the inflected forms of a single verb (perhaps λύω!) to get more results. Or perhaps skipping the lemmatization step would give better results, with real words as they appear in the texts?
-
- Posts: 62
- Joined: June 10th, 2011, 12:38 am
- Location: Portland, OR, USA
- Contact:
Re: Minimal Pairs for Greek Phonology
This has been a stimulating topic for me. Now I'm looking into how the python Levenshtein module handles diacritics.
A question arose for me: Are there any minimal pairs (in terms of Greek phonology) which have an edit distance of two or greater? Presumably a diphthong swapped with a single vowel would fit into this category (one edit and one additional = edit distance of 2). I feel certain that English would have many of these, but I'm not sure if Greek would.
A question arose for me: Are there any minimal pairs (in terms of Greek phonology) which have an edit distance of two or greater? Presumably a diphthong swapped with a single vowel would fit into this category (one edit and one additional = edit distance of 2). I feel certain that English would have many of these, but I'm not sure if Greek would.
Re: Minimal Pairs for Greek Phonology
Yes, morphology doesn't match phonology perfectly. καινος and κενος have a Levenshtein distance of 2 but phonologically identical (in imperial/modern); then ἑνος is a 'minimal pair' with both of them phonologically, but 3 edits from καινος. To get the result Jonathan originally set out for, one would have to first convert the words into a phonetic representation (e.g. IPA). Should accents be ignored or represented and allowed for in some way?
Furthermore, if the goal is learning to write, showing the different ways to write the same sounds is another task not covered by the 'pairs of words that differ by a single sound.'
Furthermore, if the goal is learning to write, showing the different ways to write the same sounds is another task not covered by the 'pairs of words that differ by a single sound.'
-
- Posts: 4188
- Joined: May 5th, 2011, 5:34 pm
- Location: Durham, NC
- Contact:
Re: Minimal Pairs for Greek Phonology
Excellent examples.
Right - I originally asked for pairs of words that differ by a single sound. If you first converted to IPA, then computed Levinshtein distance, it would give you that. Dirk's result is pretty useful, though, converting to IPA would be better. Of course, to do that, we would have to agree on one pronunciation ;->
Does anyone have a Greek to IPA utility for any pronunciation? If so, it could be easily adapted. It would have to be sophisticated enough to understand the tricky cases of how letters are pronounced in context.
Yes, for reading or writing, I think.
ἐξίσταντο δὲ πάντες καὶ διηποροῦντο, ἄλλος πρὸς ἄλλον λέγοντες, τί θέλει τοῦτο εἶναι;
http://jonathanrobie.biblicalhumanities.org/
http://jonathanrobie.biblicalhumanities.org/