how to find unsigned area - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: HP Prime (/forum-5.html) +--- Thread: how to find unsigned area (/thread-22656.html) |
how to find unsigned area - noideahowtousehpprimeg2 - 11-08-2024 08:45 AM how would i find the unsigned area of 2 graphs or total area y= (1/8)(x^3)+(1/4)(x^2)-(5/2)(x)+1 y=0.5x+1 RE: how to find unsigned area - Albert Chan - 11-08-2024 03:35 PM Cas> f := (x^3/8 + x^2/4- 5x/2 + 1) - (x/2+1) Cas> zeros(f) --> [0,4,-6] Cas> int(f,x,-6,0),int(f,x,0,4) --> [63/2, -32/3] Cas> sum(abs(Ans)) --> 253/6 RE: how to find unsigned area - noideahowtousehpprimeg2 - 11-09-2024 06:28 AM I understand ur setting the function to f, but which button on calculator do u use for that? |