Answer on Question #52495 – Math – Algorithms | Quantitative Methods
The bacteria concentration in a reservoir varies as
c=e∧t−(t∧3/6)(e∧0.3t)−t∧2/2−t
where 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
c=et−6t3e0.3t−2t2−t=1→et−6t3e0.3t−2t2−t−1=0;Newton-Raphson method:
tn+1=tn−f′(tn)f(tn)
Here f(t)=et−6t3e0.3t−2t2−t−1,f′(t)=et−20t2(t+10)e0.3t−t−1

Thus, the bacteria concentration will reach 1 in 2.36 sec.
www.AssignmentExpert.com
Comments
The value of t^0 can be chosen arbitrarily, once in this solution. The closer initial value to the true root of the equation, the less number of steps will be done while computing this root.
Just tell me how do we get the the value of t° Other values I know how to get