arabic-teacher / data /rag_database /exercises /pattern_recognition.md
Kelly Diabagate
Fix Agent 3 RAG schema mismatch - remove 'correct' field
22c56ed
|
Raw
History Blame Contribute Delete
3.1 kB
---
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"
}
```