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

For equally spaced x with step h, if Δ³y is constant and nonzero, the simplest matching function type is

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

Using operator algebra, the identity E = (1−∇)⁻¹ implies E⁻¹ equals

A 1 − ∇
B 1 + ∇
C 1 − Δ
D 1 + Δ

For central operators, if δ = E^(1/2) − E^(−1/2), then δ² equals

A E − 1
B E − 2 + E⁻¹
C 1 − E⁻¹
D E + 2 + E⁻¹

If Δ = E − 1, then Δ(Ey) equals

A Δy
B ∇y
C δy
D EΔy

For equally spaced data, the identity Δ∇ equals

A ∇Δ
B δμ
C
D ΔE⁻¹

The operator expression E + E⁻¹ − 2 is equal to

A Δ + ∇
B E − 1
C Δ∇
D 1 − E⁻¹

In Newton forward interpolation, the term with Δ³y₀ has coefficient

A p(p−1)(p−2)/3!
B p(p+1)(p+2)/3!
C p³/6
D p(p−1)/2

In Newton backward interpolation, the term with ∇³yₙ has coefficient

A p(p−1)(p−2)/3!
B p³/6
C p(p+1)/2
D p(p+1)(p+2)/3!

For Lagrange interpolation with nodes x₀,x₁,x₂, the basis L₁(x) equals

A (x−x₁)(x−x₂)/((x₀−x₁)(x₀−x₂))
B (x−x₀)(x−x₁)/((x₂−x₀)(x₂−x₁))
C (x−x₀)(x−x₂)/((x₁−x₀)(x₁−x₂))
D (x₁−x)/(x₁−x₀)

If x values are distinct, Lagrange interpolating polynomial is

A Unique
B Not unique
C Always quadratic
D Always cubic

In divided differences, f[x₀,x₁,x₂] equals

A (f[x₀,x₂]−f[x₀,x₁])/(x₂−x₁)
B (f[x₁,x₂]−f[x₀,x₁])/(x₂−x₀)
C (f[x₀,x₁]+f[x₁,x₂])/(x₂−x₀)
D (f₂−f₀)/(x₂−x₀)

Newton divided-difference polynomial in nested form starts as

A a₀ + xa₁ + …
B a₀ + (x+x₀)a₁ + …
C a₀ + (x−x₀)a₁ + …
D a₀ + (x/x₀)a₁ + …

For numerical differentiation, the central first-derivative formula has truncation error order

A
B h
C
D h⁴

For second derivative, the central formula [f(x+h)−2f(x)+f(x−h)]/h² has error order

A h
B
C h⁴
D

Composite trapezoidal rule exactness is guaranteed for polynomials up to degree

A 2
B 1
C 3
D 0

Composite Simpson’s 1/3 rule exactness is guaranteed for polynomials up to degree

A 2
B 4
C 3
D 1

In Simpson’s 1/3, if n is even, number of odd-index interior points equals

A n/2
B (n−1)/2
C n
D n/3

In Simpson’s 1/3, the sum of weights (for n subintervals) equals

A 2n
B 4n
C 3n
D n

For Simpson’s 3/8 composite rule with n subintervals (n multiple of 3), the count of interior indices multiple of 3 is

A n/3
B n/2
C n − 1
D n/3 − 1

If trapezoidal approximations T(h) and T(h/2) are known, Richardson extrapolation for order h² gives

A (4T(h/2)−T(h))/3
B (2T(h/2)−T(h))
C (T(h)+T(h/2))/2
D (T(h)−T(h/2))/3

In Romberg integration table, R(1,2) (first extrapolated value) is computed from

A Simpson and trapezoid
B T(h) and T(h/2)
C Euler and Heun
D Lagrange and Newton

If a method has error C h⁴, Richardson extrapolation uses factor

A 4
B 2
C 16
D 8

For Euler’s method, the update yₙ₊₁ = yₙ + h f(xₙ,yₙ) is derived from Taylor series by truncating after

A First derivative term
B Second derivative term
C Third derivative term
D Fourth derivative term

For the IVP y’ = y, y(0)=1, Euler with step h gives recurrence

A yₙ₊₁ = (1−h)yₙ
B yₙ₊₁ = (1+h)yₙ
C yₙ₊₁ = yₙ/h
D yₙ₊₁ = yₙ + h

For y’ = −ky (k>0), Euler stability requires roughly

A h > 2/k
B h = k/2
C h < k/2
D h < 2/k

In Heun’s method, the corrected slope is the average of

A f at two starts
B f at two ends
C f at start/end
D f at midpoint only

If the function is smooth, Simpson’s rule error bound over [a,b] contains factor

A (b−a)h⁴
B (b−a)h²
C (b−a)h
D (b−a)/h

Trapezoidal global error bound over [a,b] contains factor

A (b−a)h⁴
B (b−a)h²
C (b−a)h
D (b−a)/h

A central-difference interpolation method is generally most accurate when x is

A Near first entry
B Near last entry
C Near table center
D Outside range

In Bessel’s formula, the “best” situation is when x is near

A Midpoint of nodes
B First node
C Last node
D Far beyond

If x-values are equally spaced, divided differences reduce to expressions involving

A Only derivatives
B Only integrals
C Only limits
D Finite differences

The main numerical danger in high-degree interpolation on wide interval is

A Runge oscillations
B Exact matching
C Lower truncation
D No uniqueness

A common stability improvement in interpolation is using

A One high degree
B Extrapolation only
C Piecewise splines
D Random nodes

In numerical differentiation using tables, differentiating an interpolating polynomial is useful because it

A Removes rounding
B Uses nearby data
C Gives exact always
D Avoids subtraction

If forward difference table is built for y, then Δ²yᵢ relates to y by

A yᵢ − 2yᵢ₋₁ + yᵢ₋₂
B yᵢ₊₁ − yᵢ₋₁
C yᵢ₊₁ − yᵢ
D yᵢ₊₂ − 2yᵢ₊₁ + yᵢ

The central second-difference operator δ²y(x) corresponds to

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

In Newton forward, using p close to 0 mainly means x is close to

A xₙ
B midpoint
C x₀
D outside

In Newton backward, using p close to 0 mainly means x is close to

A x₀
B xₙ
C midpoint
D outside

For trapezoidal rule, the first Romberg extrapolation step increases order from

A h² to h⁴
B h to h²
C h⁴ to h⁶
D h² to h³

In Gauss–Legendre quadrature on [−1,1], nodes are chosen as zeros of

A Chebyshev polynomials
B Taylor polynomials
C Legendre polynomials
D Bernoulli polynomials

A main reason Gauss quadrature can beat Newton–Cotes is

A Equal spacing needed
B No weights used
C Uses differences only
D Higher exactness degree

If n+1 data points are used, the maximum degree of interpolating polynomial is

A n+1
B n
C 2n
D n−1

In Euler method, reducing h by half typically reduces global error by about factor

A 2
B 4
C 8
D 16

In Heun’s method (order 2), reducing h by half typically reduces global error by about factor

A 2
B 8
C 4
D 16

If a table is noisy, central difference derivatives can still be unstable because differentiation

A Amplifies noise
B Averages noise
C Removes noise
D Hides noise

In composite Simpson’s 1/3, if data points count is 9, then subintervals n equals

A 9
B 7
C 6
D 8

For composite 3/8 rule, if points count is 10, then subintervals n equals

A 10
B 9
C 8
D 7

A standard reason to prefer divided differences over forward differences is

A Lower computation always
B No subtraction needed
C Unequal spacing support
D Uses only endpoints

In finite difference methods for PDEs, grid refinement (smaller h) usually decreases truncation error but may increase

A Round-off effects
B Uniqueness guarantee
C Exactness degree
D Smoothness of f

In numerical integration, “adaptive” algorithms mainly choose step size based on

A Fixed table length
B Constant derivatives
C Estimated local error
D Random selection

Leave a Reply

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