Problem Overview:
The task is to sort words into three categories based on their short vowel sounds:
/e/,
/o/, and
/u/
- The words provided are:
`hot, wet, hunt, pot, egg, mud, pet, cup, box, rock, under, grunt, bed, yes, crumb, mess, fun, them`
- The goal is to categorize each word according to the short vowel sound it contains.
Solution Approach:
1.
Identify the Short Vowel Sounds:
-
Short /e/: Words containing the sound as in "egg" (e.g., "bed," "wet").
-
Short /o/: Words containing the sound as in "pot" (e.g., "hot," "box").
-
Short /u/: Words containing the sound as in "cup" (e.g., "mud," "fun").
2.
Analyze Each Word:
- For each word, determine which short vowel sound it contains by focusing on the middle vowel sound.
- Place the word in the appropriate category.
3.
Categorize the Words:
- Use the phonetic sound of each word to decide its category.
Step-by-Step Categorization:
####
Short /e/ Sound:
- Words with the short /e/ sound include:
-
wet: The middle vowel is "e" and sounds like /e/.
-
pet: The middle vowel is "e" and sounds like /e/.
-
bed: The middle vowel is "e" and sounds like /e/.
-
yes: The middle vowel is "e" and sounds like /e/.
####
Short /o/ Sound:
- Words with the short /o/ sound include:
-
hot: The middle vowel is "o" and sounds like /o/.
-
pot: The middle vowel is "o" and sounds like /o/.
-
box: The middle vowel is "o" and sounds like /o/.
-
rock: The middle vowel is "o" and sounds like /o/.
-
mess: The middle vowel is "e," but the ending "-ess" creates an /o/ sound.
####
Short /u/ Sound:
- Words with the short /u/ sound include:
-
hunt: The middle vowel is "u" and sounds like /u/.
-
mud: The middle vowel is "u" and sounds like /u/.
-
cup: The middle vowel is "u" and sounds like /u/.
-
crumb: The middle vowel is "u" and sounds like /u/.
-
fun: The middle vowel is "u" and sounds like /u/.
-
grunt: The middle vowel is "u" and sounds like /u/.
-
them: The middle vowel is "e," but the combination "em" creates a /u/ sound.
Final Categories:
####
Short /e/ Sound:
- wet
- pet
- bed
- yes
####
Short /o/ Sound:
- hot
- pot
- box
- rock
- mess
####
Short /u/ Sound:
- hunt
- mud
- cup
- crumb
- fun
- grunt
- them
Final Answer:
\[
\boxed{
\begin{array}{|c|c|c|}
\hline
\text{Short /e/} & \text{Short /o/} & \text{Short /u/} \\
\hline
\text{wet} & \text{hot} & \text{hunt} \\
\text{pet} & \text{pot} & \text{mud} \\
\text{bed} & \text{box} & \text{cup} \\
\text{yes} & \text{rock} & \text{crumb} \\
& \text{mess} & \text{fun} \\
& & \text{grunt} \\
& & \text{them} \\
\hline
\end{array}
}
\]
Parent Tip: Review the logic above to help your child master the concept of short vowels worksheet.