1

Let $a > 0$ and consider the functions $f(x)=xe^{ax}$ and $g(x) = x$

a) Determine the value of a, given that the area between these functions for $0≤x≤1$ is equal to $1$ square unit.

My attempt: I know that for x > 0, f(x) > g(x)

so I am going to take the integral of top function and minus the bottom function at 0 and 1.

$\int_{0}^{1} f(x) - g(x)\ dx$

= $\int_{0}^{1} xe^{ax} - x dx$

using by parts:

= $ e^a\frac{1}{a}-e^a\frac{1}{a^2}+\frac{1}{a^2}-\frac{1}{2} = 1$

But Now how am I suppose to solve for $a$? Do i use logs? Am I on the right track? Is there a shorter way? Thanks..

CountDOOKU
  • 1,065

1 Answers1

2

Starting with what you very correctly did, since it is obvious that $a \neq 0$, we can reduce to common denominator and face the problem of finding the zero('s ?) of function $$f(a)=2 (a-1) e^a-3 a^2+2$$ This is a transcendental equation (mixing exponential and polynomial terms) and, most of the time, there is no explicit solution except, sometimes, in terms of special function.

The first derivatives are $$f'(a)=2 a \left(e^a-3\right)\qquad \text{and} \qquad f''(a)=2 (a+1) e^a-6$$ The first derivative cancels for $a=0$ and $a=\log(3)$. By the second derivative test $(f''(0)=-4)$ the first point corresponds to a maximum $(f(0)=0)$ and the second one $(f''(\log(3))=6 \log (3))$ to a minimum $(f(\log(3))=-4-3 \log ^2(3)+6 \log (3)<0)$. So, the root we look for is greater than $\log(3)$.

Taking all this information into account, we can now generate an estimate of the solution developing $f(a)$ as Taylor series around $a=\log(3)$. This gives $$f(a)=-\left(4+3 \log ^2(3)-6 \log (3)\right)+3 \log (3) (a-\log (3))^2+O\left((a-\log (3))^3\right)$$ which gives $$a_0=\log (3)+\sqrt{\frac{4+3 \log ^2(3)-6 \log (3)}{3 \log (3)}}\approx 1.657$$ which is not to bad since, up to now, almost no calculus was used.

Now, we need to polish the root and Newton method will be simple. Starting with $a_0$ as defined above, the iterates will be $$\left( \begin{array}{cc} n & a_n \\ 0 & 1.657419 \\ 1 & 1.569271 \\ 2 & 1.555003 \\ 3 & 1.554653 \end{array} \right)$$

Edit just for your curiosity

In fact, the equation to be solved could rewrite $$e^{-a}=\frac 23 \frac{(a-1)}{\left(a-\sqrt{\frac{2}{3}}\right) \left(a+\sqrt{\frac{2}{3}}\right)}$$ which has a formal solution in terms of the generalized Lambert function (have a look at equation $(4)$).

This is nice from a formal point of view but not practical at all.