Here is a part of a problem I have a hard time with:
Let $$f(x)= 10e^{-0.201x}+3$$
Let $$g(x)= -x^2+12x-24$$
Find the area enclosed by the graphs of f and g
Here is the answer as explained by the teacher:
Finding limits $3.8953$ and $8.6940$
Evidence of integrating and subtracting functions
Correct expression is....
And then he integrates both the functions with these two limits above. He finds an area of $19.5$.
But how did he find these two limits in the first place?
Thanks.

To find the area enclosed you need the limits and the limits are found by finding the points where the two functions intersect; this is done by setting $f(x) =g(x)$
$f(x) = 10e^{-0.201 x}+3$
$g(x) = -x^2+12x-24$
$f(x) =g(x) \implies 10e^{-0.201x}+3 = -x^2+12x-24$
$\implies 10e^{-0.201x} = -x^2+12x-27$
This cannot be solved by algebraic manipulations, but you can find the values using numerical methods such as Newtons method
define $h(x)=10e^{-0.201x}+x^2-12x+27$
$x_1 = x_0-\frac{h(x_0)}{h'(x_0)}$
choosing $4$ as the initial guess and successive iterations gets us;
$x_1 = 4 - \frac{h(4)}{h'(4)} = 4- \frac{-0.524648}{-4.899546} = 3.892$
$x_2 = 3.892 = \frac{h(3.892)}{h'(3.892)} = 3.892+0.003355 = 3.8953$
You could go for more iterations but i think this level of approximation is good enough.
To find the other root set $x_0$ equal to another guess, since you've said the root lies at $8.6940$ I'll let $x_0 =9$
$x_1 = 9-\frac{h(9)}{h'(9)}= 9-0.28883= 8.71117$
$x_2 = 8.71117-\frac{h(8.71117)}{h'(8.7117)}= 8.71117-0.017058 =8.694112$
hence you've found your other root.
So the integral is $\displaystyle\int_{3.8953}^{8.694112}(-x^2+12x-24-10e^{-0.201 x}-3)\,dx $
The above integral evaluates to $19.4914$ $\quad\bigg[$found by Wolfram alpha$\bigg]$
EDIT:
Note that I am using a calculator to do the calculations . If calculators are not allowed in your classes , then please do not go for this method.