Scoring notes

Scoring the /s/ sound

IPA
/s/
ARPAbet
S
Manner
voiceless alveolar fricative

The /s/ sound is a voiceless alveolar fricative, produced by channelling a narrow stream of air along a groove in the tongue toward the alveolar ridge. It is one of the most frequently treated sounds in speech therapy, and it divides cleanly into two error classes for automatic scoring: substitutions, which phoneme scoring detects well, and lisps, which are distortions and which it largely cannot detect at all.

Typical age of mastery

Developmental norms for the /s/ sound: commonly cited as mastered between ages 6 and 7 in conversational speech.

Why this sound is hard

  • /s/ requires a precise midline groove in the tongue plus sustained, controlled airflow through a very narrow constriction. Small deviations in tongue placement change the sound audibly without changing which phoneme it is.
  • It is highly sensitive to dentition. Missing front teeth — extremely common in the exact age range when /s/ is being mastered — change the acoustics substantially, and a child may produce a temporarily distorted /s/ for entirely mechanical reasons.
  • The two most common /s/ disorders are both distortions rather than substitutions. In a frontal or interdental lisp the tongue protrudes between the teeth, producing something close to "th". In a lateral lisp the air escapes over the sides of the tongue, producing a wet, slushy quality that is not any other English phoneme.
  • /s/ appears in a huge number of English clusters — /st/, /sp/, /sk/, /sl/, /sn/, /sm/, /str/ — and in inflectional endings, so an /s/ error affects both intelligibility and apparent grammar.

Common errors

Common /s/ errors and how they are classified
PatternExampleError type
Stopping"sun" → "tun"substitution
Interdental lisp"sun" → "thun"distortion
Lateral lispa slushy /s/ with lateral airflowdistortion
Cluster reduction"spoon" → "poon"omission

How ArticScore handles it

  • Stopping of /s/ — producing /t/ instead — is one of the more visible error types to an acoustic model, because a stop burst and sustained frication are very different signals. ArticScore scores the /s/ target low and names /t/ as the sound heard.
  • An interdental lisp sits in an interesting middle ground: because the resulting sound is close to /θ/, which is a real phoneme in the inventory, it sometimes surfaces as a substitution the engine can name. This is not guaranteed and depends on how far the production has moved.
  • Because /s/ appears in so many positions and clusters, per-phoneme scoring is especially valuable for it: an application can build a profile showing that a child manages final /s/ in "bus" but not initial /s/ in "sun" or /s/ in a cluster in "spoon".

What the API returns

A single word from the response, showing the per-phoneme rows ArticScore produces for a target containing /s/.

Response — the word “sun”
{
  "word": "sun",
  "score": 58.9,
  "phonemes": [
    {
      "phone": "S",
      "phone_ipa": "s",
      "score": 22.4,
      "sound_most_like": "T",
      "sound_most_like_ipa": "t",
      "extent": [80, 210],
      "flagged": true,
      "error_type": "substitution",
      "tier": "flag"
    },
    { "phone": "AH", "phone_ipa": "\u028c", "score": 84.7, "extent": [210, 330], "flagged": false, "tier": "clean" },
    { "phone": "N",  "phone_ipa": "n",       "score": 91.2, "extent": [330, 430], "flagged": false, "tier": "clean" }
  ]
}

Scoring the /s/ sound — questions

Can software detect a lisp automatically?
It depends on the type. An interdental lisp, where /s/ moves toward "th", is sometimes detectable because the result resembles a different real phoneme. A lateral lisp, where air escapes over the sides of the tongue, is not detectable by phoneme-based scoring — the production is still an /s/ attempt and is not any other phoneme, so a closed-phone-set scorer has no way to represent it and will usually score it as correct.
At what age should a child master the /s/ sound?
Commonly cited norms place /s/ mastery in conversational speech at around ages 6 to 7. Stopping of /s/ — saying "tun" for "sun" — is expected to resolve considerably earlier, at around age 3 to 3;6, so a child still stopping /s/ at 4 is a different concern from a child with a distorted /s/ at 6.
Why does losing front teeth affect the /s/ sound?
The /s/ sound is produced by directing a narrow airstream against the teeth, so the acoustics depend directly on the dentition. Children lose their front teeth during the same period they are consolidating /s/, and a temporary distortion during that window is often mechanical rather than a speech sound disorder. An SLP will take dentition into account; an automatic scorer does not know anything about it.
Does ArticScore score /s/ in clusters separately?
Yes. Every phoneme of the target word is scored separately, including each member of a cluster, so "spoon" returns individual rows for /s/, /p/, /uː/ and /n/. That is what lets an application report that the /s/ specifically was missing rather than that the word was wrong.