Difficulty: Medium
Correct Answer: n = 9, r = 3
Explanation:
Introduction / Context:This reiterates and confirms the ratio-based method for adjacent binomial coefficients to ensure conceptual clarity for learners reviewing contiguous values in Pascal rows.
Given Data / Assumptions:Same as earlier: 36, 84, 126 for C(n, r−1), C(n, r), C(n, r+1) respectively.
Concept / Approach:Use identities of consecutive ratios to produce two linear equations in n and r, then solve.
Step-by-Step Solution:
(n − r + 1)/r = 84/36 = 7/3 ⇒ 3n + 3 = 10r(n − r)/(r + 1) = 126/84 = 3/2 ⇒ 2n = 5r + 3Solving gives n = 9, r = 3Verification / Alternative check:Direct substitution matches all three numbers.
Why Other Options Are Wrong:Other pairs fail one or more of the three equalities.
Common Pitfalls:Mixing the ratio direction or losing the +1 term.
Final Answer:n = 9, r = 3
Discussion & Comments