The first thing we need to know is where the two functions intersect so that we know the limits of integration.
To find the intersection of two functions, we set them equal to each other,
x3 - x + 3 = x2 - x + 3
We get some nice cancellation, leaving x3 = x2. This is true only when x = 1 or x = 0, so those are the bounds of integration.
Next, we should figure out which function is larger. There are two ways to do this:
- Plugging in a number in the range 0 to 1. Choosing x = 1/2,
(1/2)3 - (1/2) + 3 = 2.625
(1/2)2 - (1/2) + 3 = 2.75
- Looking at the functions. The only difference between them is that first term. In the range 0 to 1, x3 is smaller than x2, so the first function must be smaller in that interval.
Now we need to integrate to find the area in between the graphs. If the larger function is f and the smaller function is g, then the area between them from b to c is
∫bc (f(x) - g(x)) dx
Plugging in what we know, this is
∫01 ((x2 - x + 3) - (x3 - x + 3)) dx which simplifies to
∫01 (x2 - x3) dx
x3 / 3 - x4 / 4 |01
1/3 - 1/4
1/12
The original question said that the area is a/12, and we found that the area is 1/12, therefore the value of a must be 1.
Hope this helps!
~Logan