‹
✏️
Patterns
· Examples✏️ Worked Examples — Step by Step
E1
EasyNext term in 5, 10, 15, 20, ?
💡 Constant difference.
👁 Show Solution
Add 5 each time → 25. ✅ Answer: 25
✅25
E2
MediumNext 2 Fibonacci numbers after 5, 8, 13:
💡 Each = sum of previous two.
👁 Show Solution
13 + 8 = 21; 21 + 13 = 34. ✅ Answer: 21, 34
✅21, 34
E3
Challenging7th term of GP with a=3, r=2:
💡 aⁿ⁻¹ × first term.
👁 Show Solution
a × r⁶ = 3 × 64 = 192. ✅ Answer: 192
✅192