Question #adfe5
1 Answer
You cannot find the roots using algebraic methods. You can find the real roots using Newton's Method .
Explanation:
The Newton's Method reference gives the following equation:
You must write the given function in the form
Compute the derivative:
Enter the expressions of [2] and [3] into equation [1]
Because this is a recursive operation. I use an Excel spreadsheet. Also, you can use Matlab or any other computation engine.
The following are instructions on how to do the recursion, using Excel.
It looks like there is a root between 0 and 1, therefore, we enter 0 into Cell A1. This will be our
Enter the following into Cell A2:
=A1-(EXP(A1+1)-A1-3)/(EXP(A1+1)-1)
Please observe that this is the Excel language equivalent of equation [4].
Copy the contents of Cell A2 into cells A3 through A10.
Please observe that, after 3 recursions, the values displayed in the cells converge upon
It looks like there is another root about about
After 3 recursions, the values displayed in the cells converge upon
Therefore, the two real values that solve this equation are
If you require more accuracy, you can expand the width of the cells .