Post Reply 
how to find unsigned area
11-08-2024, 08:45 AM
Post: #1
how to find unsigned area
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
Find all posts by this user
Quote this message in a reply
11-08-2024, 03:35 PM
Post: #2
RE: how to find unsigned area
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
Find all posts by this user
Quote this message in a reply
11-09-2024, 06:28 AM
Post: #3
RE: how to find unsigned area
I understand ur setting the function to f, but which button on calculator do u use for that?
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)