Answer on Question #51466 - Math - Algorithms | Quantitative Methods
The bacteria concentration in a reservoir varies as et−6t3−e0.3t−2t2−t where t is the time in seconds. Use the Newton-Raphson method to estimate the time required for the bacteria concentration to reach 1 (correct up to 2 decimal places)
Solution.
We need to find the first positive root of the following equation:
f(t)=et−e0.3t−6t3−2t2−t−1=0;
Use the Newton-Raphson method. Firstly compute f′(t) :
f′(t)=et−0.3e0.3t−2t2−t−1=f(t)+0.7e0.3t+6t3;
So:
t0=2;t1=t0−f′(t0)f(t0);f(t0)=e2−e0.6−319≈−0.766;f′(t0)=f(t0)+0.7e0.6+34≈1.843;
So:
t1=2+1.8430.766≈2.416;f(t1)≈0.452;f′(t1)≈4.247;
So:
t2=2.416−4.2470.452≈2.309;f(t2)≈0.039;f′(t2)≈3.49;
So:
t3=2.309−3.490.039≈2.298;f(t3)≈0.001;f′(t3)≈3.418;
So:
t4=2.298−3.4180.001≈t3.
Answer: 2.298
www.AssignmentExpert.com
Comments