Introduction
Numerical Integration में Trapezoidal Rule एक important method है जिसका use curve के नीचे का area approximate करने के लिए किया जाता है।
इसमें:
curve को straight lines से join करके trapezoids (समलम्ब चतुर्भुज) बनाए जाते हैं
Basic Idea
- Curve को छोटे intervals में divide किया जाता है
- हर दो points के बीच एक trapezium बनता है
- सभी trapeziums का area जोड़कर total area निकाला जाता है
Graphical Understanding

Curve को straight lines से connect करने पर trapezoids बनते हैं
यही इस method का base है
Formula
For Equal Intervals:
जहाँ:
- = first value
- = last value
Numerical Example
मान लो हमें यह data दिया गया है:
| x | y |
|---|---|
| 0 | 1 |
| 1 | 2 |
| 2 | 3 |
यहाँ:
- number of intervals = 2
Solution
Formula apply करते हैं:
Explanation
- और (first & last) को single लिया जाता है
- बीच वाले values को 2 से multiply किया जाता है
- क्योंकि वो दो trapezoids में common होते हैं
Important Points
- Rectangular method से ज्यादा accurate है
- Curve को straight lines से approximate करता है
- Simple और widely used method है
Conclusion
Trapezoidal Rule एक easy और effective numerical method है:
- जब data table form में हो
- जब quick approximation चाहिए
आगे हम Simpson’s Rules पढ़ेंगे जो इससे भी ज्यादा accurate होते हैं