Area by Quadratic Splines +- HP Forums (http://www.hpmuseum.org/forum) +-- Forum: HP Software Libraries (/forum-10.html) +--- Forum: HP Prime Software Library (/forum-15.html) +--- Thread: Area by Quadratic Splines (/thread-9689.html) |
Area by Quadratic Splines - Eddie W. Shore - 12-13-2017 07:42 AM Introduction The program QUADSUM calculates the area under the curve described by the set of points (x_n, y_n). The points are connected, in groups of three, by quadratic splines. Thus, points (x1, y1), (x2, y2), and (x3, y3) are connected by a quadratic spline, (x3, y3), (x4, y4), (x5, y5) are connected by another quadratic spline, and so on. The number of points for QUADSUM must be odd. HP Prime Program QUADSUM Code:
Example Find the area under the curve with these points connected by quadratic splines: (0,2), (1,1), (2,2), (3,6), (4,4) Note that the point (2,2) ends the first spline and starts the second. QUADSUM({0,1,2,3,4}, {2,1,2,6,4}) returns 12.6666666667 FYI: The polynomial described would be the piecewise equation: y = { x^2 -2x + 2 for 0 < x ≤ 2, -3x^2 + 19x – 24 for 2 < x ≤ 4 |