Numerical Methods:
  • LU decomposition for systems of linear equations
  • Numerical solutions of non-linear algebraic equations by Secant, Bisection and Newton-Raphson Methods
  • Numerical integration by trapezoidal and Simpson’s rules

Recent questions tagged numerical-methods

3 votes
1 answer
31
1 votes
1 answer
32
1 votes
1 answer
33
8 votes
3 answers
34
The following definite integral evaluates to$$\int_{-\infty}^{0} e^ {-\left(\frac{x^2}{20} \right )}dx$$$\frac{1}{2}$$\pi \sqrt{10}$$\sqrt{10}$$\pi$
0 votes
3 answers
40
0 votes
3 answers
41
Match the following items(i) Newton-Raphson(a) Integration(ii) Runge-Kutta(b) Root finding(iii) Gauss-Seidel(c) Ordinary Differential Equations(iv) Simpson's Rule(d) Solu...
3 votes
2 answers
45
7 votes
1 answer
49
The bisection method is applied to compute a zero of the function $f(x) =x ^{4} – x ^{3} – x ^{2} – 4$ in the interval [1,9]. The method converges to a solution aft...
1 votes
0 answers
52
Consider the series $x_{n+1} = \frac{x_n}{2}+\frac{9}{8x_n},x_0 = 0.5$ obtained from the Newton-Raphson method. The series converges to1.5$\sqrt{2}$1.61.4
3 votes
1 answer
53
Newton-Raphson method is used to compute a root of the equation $x^2 - 13 = 0$ with 3.5 as the initial value. The approximation after one iteration is3.5753.6763.6673.607...
0 votes
1 answer
55
The Newton-Raphson iteration $X_{n+1} = (\frac{X_n}{2}) + \frac{3}{(2X_n)}$ can be used to solve the equation$X^2 =3$$X^3 =3$$X^2 =2$$X^3 =2$
1 votes
1 answer
56
The trapezoidal rule for integration gives exact result when the integrand is a polynomial of degree0 but not 11 but not 00 or 12
30 votes
3 answers
57
Consider the polynomial $p(x) = a_0 + a_1x + a_2x^2 + a_3x^3$ , where $a_i \neq 0$, $\forall i$. The minimum number of multiplications needed to evaluate $p$ on an input ...
1 votes
1 answer
60