Chapter 24: Numerical Methods and Approximation (Set-1)

Which error comes from chopping an infinite process in computations?

A Round-off error
B Relative error
C Truncation error
D Absolute error

Which error is mainly due to limited machine precision?

A Truncation error
B Residual error
C Relative error
D Round-off error

If the exact value is known, what is |approx − exact| called?

A Absolute error
B Relative error
C Residual norm
D Truncation error

Which measure scales error by the true value size?

A Absolute error
B Truncation error
C Relative error
D Iteration error

What is a common stopping rule in iterations?

A Random guess change
B Error below tolerance
C Increase step size
D Always 100 steps

What does “order of convergence” describe?

A Memory used
B Matrix determinant
C Equation degree
D Speed of convergence

Which convergence is usually the slowest type?

A Quadratic convergence
B Superlinear convergence
C Linear convergence
D Cubic convergence

“Quadratic convergence” means error roughly squares each step near root

A True
B False
C Only for bisection
D Only for secant

Which root-finding method always keeps the root bracketed?

A Newton method
B Secant method
C Fixed point method
D Bisection method

Bisection method requires which basic condition?

A f′(x) exists
B Two close guesses
C f(a)f(b) < 0
D Matrix is diagonal

Which theorem supports the sign-change idea for bisection?

A Mean value theorem
B Intermediate value theorem
C Taylor theorem
D Green’s theorem

What is the main drawback of bisection?

A Needs derivative
B Can diverge easily
C Converges slowly
D Needs matrix inverse

Bisection error bound after n steps is based on interval length halving

A False
B Only for Newton
C Only for Jacobi
D True

Regula falsi is also called which method?

A False position
B Newton method
C Secant method
D Jacobi method

False position uses which idea between endpoints?

A Quadratic fit
B Cubic spline
C Linear interpolation
D Fourier series

False position still requires which condition like bisection?

A Second derivative
B Sign change bracket
C Complex numbers
D Matrix symmetry

A known issue in false position is sometimes called what?

A Overflow problem
B Pivoting
C Orthogonality
D Stagnation

Which method uses tangent line at current estimate?

A Bisection
B Jacobi
C Newton method
D Gauss elimination

Newton–Raphson iteration formula is:

A xₙ₊₁ = xₙ − f(xₙ)/f′(xₙ)
B xₙ₊₁ = (a+b)/2
C xₙ₊₁ = xₙ + f(xₙ)
D xₙ₊₁ = f(xₙ)/f′(xₙ)

Newton method typically has which convergence near a simple root?

A Linear convergence
B No convergence
C Logarithmic convergence
D Quadratic convergence

Newton’s method may fail if which value becomes zero?

A f(xₙ)
B xₙ
C f′(xₙ)
D tolerance

Newton method needs which additional information compared to secant?

A Sign change
B Derivative value
C Two guesses only
D Diagonal dominance

Secant method uses how many starting values?

A Two values
B One value
C Three values
D Four values

Secant method is best described as:

A Bracketing only
B Matrix factorization
C Polynomial division
D Derivative-free Newton

Secant method generally converges faster than:

A Newton method
B Exact algebra
C Bisection method
D LU decomposition

Secant method usually has convergence order about:

A 1.618
B 1.0
C 2.0
D 3.0

Which method does NOT require sign-change bracketing?

A Bisection
B False position
C Both A and B
D Secant

A “residual” in root finding commonly means:

A interval length
B derivative value
C f(x) value
D matrix diagonal

In linear systems Ax=b, residual is:

A Ax + b
B b − Ax
C A − b
D x − A

Gauss–Jacobi method is used to solve:

A Nonlinear equations
B Differential equations only
C Integrals only
D Linear systems

Jacobi method updates xᵢ using values from:

A Same iteration only
B Exact solution
C Previous iteration only
D Random values

A common sufficient condition for Jacobi convergence is:

A Diagonally dominant
B Orthogonal matrix
C Singular matrix
D Zero determinant

Gauss–Seidel differs from Jacobi mainly by:

A Using interpolation
B Using derivatives
C Halving intervals
D Using updated values

Which method usually converges faster for same system?

A Jacobi method
B Bisection method
C Gauss–Seidel method
D False position

In Gauss–Seidel, x₁^(k+1) is used to compute x₂^(k+1)

A False
B True
C Only for Newton
D Only for bisection

A basic reason iterative methods may diverge is:

A Large diagonal entries
B Too much memory
C Having a solution
D Poor matrix properties

Spectral radius relates to:

A Matrix trace only
B Determinant sign
C Maximum eigenvalue magnitude
D Number of equations

A tolerance in stopping criteria represents:

A Allowed error limit
B Exact answer
C Number of variables
D Matrix order

Fixed point iteration solves f(x)=0 by rewriting as:

A x = f′(x)
B x = g(x)
C x = 1/f(x)
D x = x²

A common convergence condition for fixed point iteration is:

A |g′(x)| > 1
B g(x) = 0 always
C |g′(x)| < 1
D f′(x) = 0

“Condition number” informally measures:

A Root count
B Matrix symmetry
C Iteration step size
D Sensitivity to input

Error propagation mainly means:

A Errors always vanish
B Only truncation happens
C Errors spread through steps
D Only bisection uses it

“Iteration count estimation” is used to:

A Predict steps needed
B Prove theorem
C Remove derivatives
D Make matrix diagonal

Bisection iterations needed depend on:

A f′(x) value
B Matrix symmetry
C Second derivative
D Initial interval length

Newton’s method can diverge mainly due to:

A Too small tolerance
B Bad initial guess
C Using bracketing
D Diagonal dominance

Multiple roots in Newton’s method often cause:

A Faster convergence
B No derivatives needed
C Slower convergence
D Guaranteed bracketing

Aitken’s Δ² process is used for:

A Root bracketing
B Matrix inversion
C Numerical integration
D Acceleration of convergence

SOR is commonly related to which method family?

A Gauss–Seidel family
B Bisection family
C Newton family
D Secant family

Direct methods differ from iterative methods because direct methods:

A Always use derivatives
B Give exact solution in finite steps
C Need sign change
D Use only tolerance

LU decomposition is mainly used to:

A Find roots only
B Compute integrals
C Solve linear systems
D Trace curves

Leave a Reply

Your email address will not be published. Required fields are marked *