Spaces:
Paused
Paused
File size: 3,096 Bytes
cae2059 22c56ed cae2059 22c56ed cae2059 22c56ed cae2059 22c56ed cae2059 22c56ed cae2059 22c56ed cae2059 22c56ed cae2059 22c56ed cae2059 22c56ed cae2059 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | ---
exercise_type: pattern_recognition
grammar_point: gender_patterns
difficulty: all
lesson_number: 1
---
# Pattern Recognition Exercise Examples
## Beginner Examples
### Example 1
```json
{
"question": "What pattern do these words share: ู
ูุฏูุฑูุณูุฉุ ุทูุงููููุฉุ ููุงููุฐูุฉ?\nWhat do you notice?",
"answer": "All end with ุฉ (taa marbuuta) - they are feminine nouns",
"type": "pattern_recognition",
"difficulty": "beginner"
}
```
### Example 2
```json
{
"question": "Identify the pattern: ุงูููุชูุงุจุ ุงูููููู
ุ ุงูุจูููุช\nWhat's common?",
"answer": "All start with ุงู (definite article)",
"type": "pattern_recognition",
"difficulty": "beginner"
}
```
### Example 3
```json
{
"question": "Group by pattern: ููุชูุงุจูุ ู
ูุฏูุฑูุณูุฉูุ ููููู
ูุ ุทูุงููููุฉู\nWhich are feminine?",
"answer": "ู
ูุฏูุฑูุณูุฉูุ ุทูุงููููุฉู (words with ุฉ)",
"type": "pattern_recognition",
"difficulty": "beginner"
}
```
## Intermediate Examples
### Example 1
```json
{
"question": "What pattern links these: ุงูููุชูุงุจ ุงูููุจููุฑุ ุงูููููู
ุงูุตููุบููุฑุ ุงูุจูููุช ุงูุฌูุฏููุฏ?\nDescribe the structure.",
"answer": "Definite noun + definite adjective with gender agreement (all masculine)",
"type": "pattern_recognition",
"difficulty": "intermediate"
}
```
### Example 2
```json
{
"question": "Find the pattern: ููููุชูุจูุ ููููุฑูุฃูุ ููุฏูุฑูุณู\nWhat verb form is this?",
"answer": "Present tense, 3rd person masculine singular (he writes, he reads, he studies)",
"type": "pattern_recognition",
"difficulty": "intermediate"
}
```
### Example 3
```json
{
"question": "Identify broken vs. sound plurals: ููุชูุจุ ุฃูููููุงู
vs. ู
ูุนููููู
ูููุ ุทูุงููุจูุงุช\nWhat's the difference?",
"answer": "First group: broken plurals (internal change). Second group: sound plurals (suffix added)",
"type": "pattern_recognition",
"difficulty": "intermediate"
}
```
## Advanced Examples
### Example 1
```json
{
"question": "Analyze the pattern: ููุชูุจูุ ุฏูุฑูุณูุ ุฐูููุจู\nWhat's the root structure?",
"answer": "All follow ููุนููู pattern (Form I past tense verbs with 3 consonant roots)",
"type": "pattern_recognition",
"difficulty": "advanced"
}
```
### Example 2
```json
{
"question": "Find the morphological pattern: ู
ูุนููููู
ุ ู
ูุฏูุฑููุณุ ู
ููููููุฏ\nWhat do these share?",
"answer": "All follow ู
ูููุนููู pattern (Form II active participle - profession/occupation)",
"type": "pattern_recognition",
"difficulty": "advanced"
}
```
### Example 3
```json
{
"question": "Identify case pattern: ุงูุทููุงููุจู ูู ุงูู
ูุฏูุฑูุณูุฉูุ ุฑูุฃูููุชู ุงูุทููุงููุจูุ ููุชูุงุจู ุงูุทููุงููุจู\nWhat changes?",
"answer": "Case endings: nominative (ู), accusative (ู), genitive (ู) based on grammatical function",
"type": "pattern_recognition",
"difficulty": "advanced"
}
```
|