a) Find the largest real root alpha\alpha of f(x)=x^(6)-x-1=0f(x)=x^6-x-1=0 lying between 1 and 2. Perform three iterations by
i) bisection method
ii) secant method (x_(0)=2,x_(1)=1)\left(x_0=2, x_1=1\right).
b) Find the number of positive and negative roots of the polynomial P(x)=x^(3)-3x^(2)+4x-5P(x)=x^3-3 x^2+4 x-5. Find P(2)P(2) and P^(‘)(2)P^{\prime}(2) using synthetic division method.
c) Solve x^(3)-9x+1=0x^3-9 x+1=0 for the root lying between 2 and 4 by the method of false position. Perform two iterations.
a) Using x_(0)=-2x_0=-2 as an initial approximation find an approximation to one of the zeros of
p(x)=2x^(4)-3x^(2)+3x-4p(x)=2 x^4-3 x^2+3 x-4
by using Birge-Vieta method. Perform two iterations.
b) Find by Newton’s method the roots of the following equations correct to three places of decimals
i) quad xlog_(10)x=4.772393\quad x \log _{10} x=4.772393 near x=6x=6
ii) quad f(x)=x-2sin x\quad f(x)=x-2 \sin x near x=2x=2
a) The equation x^(2)+ax+b=0x^2+a x+b=0 has two real roots pp and qq such that |p| < |q||p|<|q|. If we use the fixed point iteration x_(k+1)=(-b)/(x_(k)+a)x_{k+1}=\frac{-b}{x_k+a}, to find a root then to which root does it converge?
so that the method is of the highest possible order. Find the order and the error term of the method.
b) The function f(x)=ln(1+x)f(x)=\ln (1+x) is to be tabulated at equispaced points in the interval [2,3][2,3] using linear interpolation. Find the largest step size hh that can be used so that the error <= 5xx10^(-4)\leq 5 \times 10^{-4} in magnitude.
represents a second degree polynomial. Obtain this polynomial using interpolation and find f(2.5)f(2.5).
a) Derive a suitable numerical differentiation formula of 0(h^(2))0\left(h^2\right) to find f^(”)(2.4)f^{\prime \prime}(2.4) with h=0.1h=0.1 given the table
b) The position f(x)f(x) of a particle moving in a line at various times x_(k)x_k is given in the following table. Estimate the velocity and acceleration of the particle at x=1.2x=1.2.
c) Take 10 figure logarithm to bases 10 from x=300x=300 to x=310x=310 by unit increment. Calculate the first derivative of log_(10)x\log _{10} x when x=310x=310.
a) Show that sqrt(1+mu^(2)delta^(2))=1+(delta^(2))/(2)\sqrt{1+\mu^2 \delta^2}=1+\frac{\delta^2}{2} where mu\mu and delta\delta are the average and central differences operators, respectively.
b) A table of values is to be constructed for the function f(x)f(x) given by f(x)=(1)/(1+x)f(x)=\frac{1}{1+x} in the interval [1,4][1,4] with equal step length. Determine the spacing hh such that quadratic interpolation gives result with accuracy 1xx10^(-6)1 \times 10^{-6}.
c) Using the classical R-K method of O(h^(4))O\left(h^4\right) calculate approximate solution of the IVP, y^(‘)=1-x+4y,y(0)=1y^{\prime}=1-x+4 y, y(0)=1 at x=0.6x=0.6, taking h=0.1h=0.1 and 0.2 . Use extrapolation technique to improve the accuracy.
by using the trapezoidal rule with h=0.5,0.25,0.125h=0.5,0.25,0.125. Improve this value by using the Romberg’s method. Compare your result with the true value.
b) Use modified Euler’s method to find the approximate solution of IVP
y^(‘)=2xy,y(1)=1″ at “x=1.5” with “h=0.1y^{\prime}=2 x y, y(1)=1 \text { at } x=1.5 \text { with } h=0.1
If the exact solution is y(x)=e^(x^(2)-1)y(x)=e^{x^2-1}, find the error.
c) Show that u_(x)=c_(1)e^(alpha _(x))+c_(2)e^(-alpha _(x))u_x=c_1 e^{\alpha_x}+c_2 e^{-\alpha_x} is a solution of the difference equation
a) Using the following table of values, find approximately by Simpson’s rule, the arc length of the graph y=(1)/(x)y=\frac{1}{x} between the points (1,1)(1,1) and (5,(1)/(5))\left(5, \frac{1}{5}\right)
a) Find the largest real root alpha\alpha of f(x)=x^(6)-x-1=0f(x)=x^6-x-1=0 lying between 1 and 2. Perform three iterations by
i) bisection method
ii) secant method (x_(0)=2,x_(1)=1)\left(x_0=2, x_1=1\right).
Answer:
i) Bisection method
Here x^(6)-x-1=0x^6-x-1=0
Let f(x)=x^(6)-x-1f(x)=x^6-x-1 1^(“st “)1^{\text {st }} iteration :
Here f(1)=-1 < 0f(1)=-1<0 and f(2)=61 > 0f(2)=61>0 :.\therefore Now, Root lies between 1 and 2
After three iterations, the interval containing the largest real root alpha\alpha is narrowed down to [1.125,1.25][1.125,1.25]. The midpoint of this interval, x_(3)=1.1875x_3=1.1875, is the best approximation of the root after three iterations using the bisection method.