Difficulty: Easy
Correct Answer: 120
Explanation:
Introduction / Context:This is a combinations question: each strictly increasing triple corresponds to a set of three distinct indices i < j < k chosen from 10 positions. The actual values do not affect the count because the ordering is already strict by index.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
Number of triplets = C(10,3) = 10 * 9 * 8 / (3 * 2 * 1) = 120Verification / Alternative check:Any attempt to count by “sliding windows” would undercount (e.g., 8). The correct method uses combinations of indices, not adjacency of terms.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:120
Discussion & Comments