Editing
Phonology
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== <span style="color: #FFFFFF;">Applying</span> == '''The Logic of Plural Allomorphs:''' <syntaxhighlight lang="python"> def get_plural_ending(noun): """ Shows how phonology dictates the sound of the English plural '-s'. Rules: 1. If ends in sibilant (s, z, sh, ch) -> /iz/ (e.g., buses) 2. If ends in voiceless consonant -> /s/ (e.g., cats) 3. If ends in voiced sound -> /z/ (e.g., dogs) """ last_char = noun[-1].lower() if last_char in ['s', 'z', 'x']: return noun + "es (/iz/)" elif last_char in ['p', 't', 'k', 'f']: return noun + "s (/s/)" else: return noun + "s (/z/)" print(f"Cat -> {get_plural_ending('cat')}") print(f"Dog -> {get_plural_ending('dog')}") print(f"Bus -> {get_plural_ending('bus')}") # This is an unconscious rule we all follow perfectly. </syntaxhighlight> ; Practical Impact : '''Language Learning''' β Adults often struggle with "new" phonemes because their brain has already categorized all sounds into their native system. : '''Speech Recognition''' β Computers must be trained to recognize phonemes across different accents and levels of noise. : '''Forensic Linguistics''' β Analyzing the unique "phonological profile" of a speaker to identify them from a recording. : '''Branding''' β Creating brand names (like "Kodak") that are phonologically "crisp" or "soft" to evoke certain emotions. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information