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

A sequence {xₙ} is said to converge to L when xₙ approaches:

A 0 always
B Infinity only
C L as n→∞
D Random values

If eₙ is error at step n, “rate of convergence” mainly describes:

A Memory usage
B Error decrease speed
C Graph shape only
D Matrix size

If eₙ₊₁ ≈ C·eₙ² near the root, the method shows:

A Quadratic convergence
B Linear convergence
C Divergent behavior
D No convergence

Which method uses an interval and always halves it each step?

A Newton method
B Secant method
C Bisection method
D Jacobi method

For bisection on a continuous function, which condition must be true first?

A f′(x) exists
B Sign change occurs
C f(x) is periodic
D Root is integer

In bisection, if f(a)f(mid) < 0, the new interval becomes:

A [mid, b]
B [a, b] same
C [0, b]
D [a, mid]

Bisection method error bound after n steps is related to:

A Derivative size
B Function maximum
C Interval length
D Matrix eigenvalues

False position differs from bisection mainly because it chooses next point using:

A Linear interpolation
B Midpoint only
C Derivative value
D Random selection

A known problem in false position where one endpoint stays fixed is called:

A Pivoting
B Stagnation
C Oscillation
D Overflow

Newton’s method update uses which two function values at xₙ?

A f and f″
B f′ and f″
C f and f′
D f only

Newton’s method can become unstable when the derivative at xₙ is:

A Very large
B Exactly one
C Negative only
D Near zero

For a multiple root, standard Newton usually becomes:

A Faster than usual
B Slower than usual
C Always divergent
D Always exact

Secant method is most accurately described as Newton’s method but:

A Uses bracketing
B Uses midpoint
C Uses no derivative
D Uses matrices

Secant method requires which starting information?

A One starting value
B Two starting values
C Three starting values
D Exact root

Secant method may fail because:

A Denominator becomes zero
B It always brackets
C It uses midpoint
D It needs diagonals

Which method typically has guaranteed monotonic interval shrinking?

A Secant
B Newton
C Bisection
D Fixed point

The order of convergence of the secant method is approximately:

A 1.0
B 1.618
C 2.0
D 3.0

In iterative linear solvers, “initial guess” refers to:

A Final answer
B Matrix determinant
C Pivot choice
D Starting vector x⁰

Jacobi method computes xᵢ^(k+1) using values from:

A Current iteration only
B Exact inverse matrix
C Previous iteration only
D Random perturbation

Gauss–Seidel improves Jacobi mainly by:

A Using latest updates
B Using midpoint
C Avoiding equations
D Using interpolation

A commonly used sufficient condition for Jacobi and Gauss–Seidel convergence is:

A Zero trace
B Diagonal dominance
C Orthogonal columns
D Negative diagonal

If A is not diagonally dominant, iterative methods may:

A Always converge
B Become exact
C Possibly diverge
D Need no tolerance

The residual for linear system Ax=b at approximation x is:

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

In iterative solvers, a common stopping rule is:

A Residual below tolerance
B Residual increases
C Determinant is zero
D Eigenvalues are negative

Spectral radius of iteration matrix must be less than 1 for:

A Divergence
B Instability only
C Convergence
D Exact solution

Spectral radius means:

A Minimum eigenvalue
B Sum of eigenvalues
C Trace of matrix
D Maximum |eigenvalue|

A fixed-point iteration is stable near the solution when:

A |g′(x)| > 1
B |g′(x)| < 1
C g′(x) is complex
D g(x) is constant

“Error term” in an approximation usually represents:

A Exact value
B Input data
C Difference from truth
D Matrix diagonal

Truncation error mostly appears due to:

A Finite precision
B Sign change
C Diagonal dominance
D Cutting infinite process

Round-off error mainly comes from:

A Interval halving
B Finite digit storage
C Derivative usage
D Root bracketing

Error propagation means:

A Errors carry through steps
B Errors stay constant
C Errors vanish instantly
D Errors become roots

Condition number is mainly associated with:

A Root count
B Number of iterations
C Sensitivity of solution
D Graph symmetry

“Iteration function” in Newton’s method can be written as:

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

For Newton near a simple root, the method is fastest because:

A It has quadratic order
B It brackets root
C It halves interval
D It avoids f(x)

Which method uses “root isolation” as a first step often?

A Jacobi method
B LU factorization
C Bisection method
D Aitken method

Graph intuition for bisection is mainly about:

A Tangent intersection
B Matrix splitting
C Eigenvalue plotting
D Curve crossing x-axis

In false position, the next x is the x-intercept of:

A Tangent line
B Secant line
C Normal line
D Horizontal line

“Stopping criteria” is important mainly to:

A Increase errors
B Avoid functions
C Decide when to stop
D Make roots complex

In practical computing, why are too-small tolerances risky?

A Reduce accuracy
B Increase iterations
C Remove convergence
D Change the root

“Stability of iteration” is mainly about:

A Error not amplified
B Fast convergence only
C Always exact answer
D Using derivatives

Aitken’s Δ² method is used to:

A Find brackets
B Compute Jacobian
C Accelerate sequences
D Solve integrals

“Relaxation methods” in linear solvers include:

A Bisection method
B Secant method
C Simpson rule
D SOR method

Gauss–Seidel method works best when matrix is:

A Nearly singular
B Diagonally dominant
C Random rectangular
D Zero diagonal

In Jacobi method, “splitting” often means writing A as:

A L+U only
B D−L−U
C D+L+U
D I+A

In Gauss–Seidel, the splitting is used so updates depend on:

A New and old values
B Only old values
C Only random values
D Only exact values

“Computational cost” in iteration is often tied to:

A Color of graph
B Steps per iteration
C Root sign only
D Proof length

“Iteration count estimation” is easiest for which method?

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

In root-finding, a “bracketing method” means:

A Uses derivative
B Uses two tangents
C Uses matrix inverse
D Keeps sign-change interval

Which pair are both bracketing root methods?

A Newton and secant
B Bisection and false position
C Jacobi and SOR
D Newton and Jacobi

“Numerical approximation” mainly means:

A Close computed estimate
B Exact symbolic solving
C Random guessing only
D Pure geometry only

Leave a Reply

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