Difficulty: Medium
Correct Answer: V = (D/2) * [A1 + An + 2*(A2 + A3 + ... + A_{n-1})]
Explanation:
Introduction / Context:
For linear earthworks such as roads and canals, volumes are commonly computed from a sequence of cross-sections spaced at equal distances. Two widely used numerical methods are the Trapezoidal Rule and Simpson’s Rule. Correct identification of each formula avoids systematic bias in estimated quantities and costs.
Given Data / Assumptions:
Concept / Approach:
The Trapezoidal Rule treats each adjacent pair of sections as forming a prismoid whose end areas are averaged, then multiplied by spacing D. Summing across all intervals leads to the compact weighted sum with coefficients 1 for the ends and 2 for all interior areas. Simpson’s Rule, in contrast, uses alternating 4 and 2 coefficients and requires an odd number of segments (even number of intervals) with D/3 as the multiplier.
Step-by-Step Solution:
Verification / Alternative check:
Dimensional check: Areas in m^2 times D in m gives m^3. Weighting matches the trapezoidal composite integration rule.
Why Other Options Are Wrong:
Option B/C are Simpson-type formulas (require D/3 and alternating 4,2 weights), not trapezoidal.
Option D ignores interior areas beyond the ends and is incomplete.
Option E lacks proper weighting and overcounts interior sections.
Common Pitfalls:
Confusing trapezoidal and Simpson weights; using D instead of D/2; forgetting to include all interior areas with coefficient 2.
Final Answer:
V = (D/2) * [A1 + An + 2*(A2 + A3 + ... + A_{n-1})]
Discussion & Comments