feldspar said:
I have a question about how to present your solution to questions like this, my question is trivial so I'll post here first and if no one answers I will post a new thread.
After finding the intercept points between the 2 functions, the equation you need to solve looks something like this...
area = ∫(x+1)-(x^2-3x-4) dx
I am wondering why there is only one "dx", to me this looks like it's saying we are only going to find the integral of (x^2-3x-4) and not (x+1).
Shouldn't it be presented like this?
area = ∫((x+1)-(x^2-3x-4)) dx
or this?
area = ∫(x+1) dx -(x^2-3x-4) dx
What am I missing here?
When you think about the properties of integrals, it is useful to consider a summation that approximates it since it is less mysterious. Consider this:
\sum(x+1)h-\sum(x^2-3x-4)h
where we are summing small rectangles of width h and height equal to the functions evaluated at particular values of x (i.e. x+1 and x^2-3x-4). The summation would go from the lower limit to the upper limit with a step size of h (e.g. if h = .01 and the integral was from 0 to 1, you would sum up the values at x = 0, x = .01, etc.)
So we can work with these more intuitive summations to show how it equals the thing you are confused about it equaling. The sum of a plus the sum of b is the sum of (a+b). Are you comfortable with that? If so, we get
\sum[(x+1)h-(x^2-3x-4)h]
Then, h is just a number, so we can factor it out.
\sum[(x+1)-(x^2-3x-4)]h
Then (a+b) - (c-d-e) = a+b-c+d+e...
\sum[x+1-x^2+3x+4]h
Since an integral is basically this type of summation with h = dx as h goes toward 0, it is also true that
\int x+1 - x^2 +3x+4 dx=\int (x+1) dx - \int (x^2-3x-4) dx
But since it makes no sense to have a term inside an integral that isn't multiplied by your dx, people just leave off that internal parentheses:
\int (x+1) dx - \int (x^2-3x-4) dx=\int x+1 dx - \int x^2-3x-4 dx
Using this interpretation, I also see no problem with your writing of
∫(x+1) dx -(x^2-3x-4) dx
as long as we put another bracket to indicate the infinite summation is over both portions
∫[(x+1) dx -(x^2-3x-4) dx]