Chapter 25: Finite Differences, Interpolation and Numerical Integration (Set-2)

If a table has constant third differences (equally spaced x), the data best fits a

A Quadratic polynomial
B Cubic polynomial
C Linear function
D Constant function

For shift operator E, the identity for E⁻¹y(x) is

A y(x+h)
B y(x)/h
C y(x−h)
D y′(x)

The operator form of central difference is commonly

A δ = E − 1
B δ = 1 − E⁻¹
C δ = E + 1
D δ = E^(1/2) − E^(−1/2)

For equally spaced x, the mean operator μ is usually defined as

A (E+1)/2
B (E^(1/2)+E^(−1/2))/2
C (1−E)/2
D (E−1)/2

In factorial notation, p(p−1)(p−2) is written as

A p^(3)
B p₃
C (p)³
D p^(−3)

Newton forward interpolation uses terms like

A p^r ∇^r yₙ
B p^(r) δ^r y₀
C p^(r) Δ^r y₀
D p^r Ey₀

Newton backward interpolation commonly uses terms like

A p^r Δ^r y₀
B p^(r) ∇^r yₙ
C p^(r) δ^r y₀
D p^r μy₀

The main reason Newton forward formula is efficient is

A Avoids any subtraction
B Needs no data points
C Always exact integral
D Reuses difference table

Lagrange interpolation polynomial is formed as a sum of

A Δyᵢ Lᵢ(x)
B ∇yᵢ Lᵢ(x)
C yᵢ Lᵢ(x)
D δyᵢ Lᵢ(x)

A key advantage of Newton divided-difference form is

A Requires even n
B Works for unequal x
C Needs constant Δy
D Uses only endpoints

A first divided difference f[x₀,x₁] equals

A (f₁−f₀)/(x₁−x₀)
B (f₁+f₀)/(x₁−x₀)
C (x₁−x₀)/(f₁−f₀)
D (f₁−f₀)/(x₁+x₀)

The “error term” in interpolation mainly depends on

A Only first difference
B Next higher derivative
C Only step size sign
D Data units only

In numerical differentiation, forward difference is generally best near

A End of table
B Middle only
C Beginning of table
D Outside range

Backward difference derivative is generally best near

A Beginning of table
B Middle only
C At x=0 only
D End of table

Central difference derivative is preferred mainly because it is

A Always exact
B More accurate order
C Uses one point only
D Needs no h

A basic second-derivative central formula is

A [f(x+h)−f(x)]/h
B [f(x)−f(x−h)]/h
C [f(x+h)−2f(x)+f(x−h)]/h²
D [f(x+2h)−f(x)]/h²

Composite trapezoidal rule gives exact result for

A Any linear function
B Any quadratic function
C Any cubic function
D Any exponential function

Simpson’s 1/3 rule gives exact result for any

A Quartic polynomial
B Cubic polynomial
C Exponential function
D Logarithmic function

When using Simpson’s 1/3 rule, the interval [a,b] must have

A Odd subintervals
B Prime subintervals
C No partition
D Even subintervals

In Simpson’s 3/8 rule, each block uses

A Two subintervals
B Four subintervals
C Three subintervals
D One subinterval

The composite trapezoidal formula weights endpoints as

A Double weight each
B Half weight each
C Four weight each
D Zero weight each

In composite Simpson’s 1/3, the endpoints weights are

A 2 each
B 4 each
C 3 each
D 1 each

The main idea of Richardson extrapolation is to

A Increase step size
B Cancel leading error
C Remove all rounding
D Replace integration

Romberg integration is built from repeated use of

A Trapezoidal rule
B Simpson 3/8 rule
C Euler method
D Lagrange basis

In Euler’s method, the slope used for one step is evaluated at

A Next point
B Midpoint only
C Current point
D Random point

Euler’s method is classified as a

A Two-step method
B One-step method
C Multi-step only
D Implicit method

A major stability issue with Euler’s method appears for

A Linear integrals
B Polynomial tables
C Constant functions
D Stiff equations

Heun’s method improves Euler by using

A Only backward slope
B Only forward slope
C Average of slopes
D No slope at all

A predictor–corrector method generally means

A Integrate then differentiate
B Predict then refine
C Divide then multiply
D Randomly perturb

In numerical integration, decreasing h usually

A Reduces truncation error
B Increases exactness always
C Removes rounding fully
D Breaks all formulas

For tabulated data with unequal spacing, direct use of Simpson’s 1/3 is

A Always perfect
B Required by rule
C Better than all
D Not directly valid

Discrete differentiation idea means approximating derivatives using

A Exact antiderivatives
B Laplace transforms
C Differences of values
D Only limits

In operator algebra, the identity E = 1 + Δ implies

A Backward shift relation
B Forward shift relation
C Central shift relation
D No relation

The inverse relation of (1+Δ) is related to

A Backward shift
B Forward shift
C Mean operator
D Central operator

In Newton forward, truncation is done because higher differences become

A Always zero
B Always negative
C Always unstable
D Small or negligible

Stirling’s formula is mainly suited for interpolation near

A Start of table
B Middle of table
C End of table
D Outside table

Bessel’s formula is especially useful when x is near

A First entry exactly
B Last entry exactly
C Midpoint between entries
D Outside range

Newton–Cotes formulas are a family of methods for

A Root finding only
B Eigenvalues only
C Matrix inversion
D Numerical integration

Gauss quadrature differs from Newton–Cotes mainly by

A Using equal spacing
B Choosing optimal nodes
C Using differences only
D Avoiding weights

Spline interpolation is mainly used to avoid

A Any computation
B Step size definition
C High-degree oscillations
D Difference tables

In finite differences, “order” of difference refers to

A Times differenced
B Size of table
C Units of y
D Units of x

If y values are noisy, very small h in differentiation may cause

A Always exact slope
B Large numerical error
C Smaller rounding only
D Constant derivative

The composite Simpson’s 1/3 rule is best applied when the function is

A Highly discontinuous
B Randomly jumping
C Undefined at all
D Smooth on interval

In error bounds, trapezoidal rule accuracy improves when |f”(x)| is

A Very large
B Undefined
C Small on interval
D Negative only

For Simpson’s 1/3, error decreases quickly when |f⁽⁴⁾(x)| is

A Large at ends
B Small on interval
C Constant negative
D Discontinuous

Finite-difference solution of PDEs mainly replaces derivatives with

A Difference quotients
B Exact integrals
C Fourier series only
D Random sampling

In Newton forward, choosing origin at x₀ mainly reduces

A Polynomial degree
B Computational work
C Data points count
D Function smoothness

The best simple check for “equal spacing” in a table is verifying

A Constant y differences
B Constant ratios
C Constant x differences
D Constant slopes

A typical application of interpolation in practice is

A Solving eigenvectors
B Finding primes
C Computing determinants
D Reading table values

Runge–Kutta methods are mainly used to improve over Euler by

A Removing all tables
B Higher accuracy steps
C Using only integrals
D Avoiding derivatives

Leave a Reply

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