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

For equally spaced x, if a dataset comes from a quadratic function, which differences are constant?

A First differences
B Third differences
C Second differences
D Fourth differences

If Ey(x)=y(x+h), then (E−1)²y represents

A Δ²y
B ∇²y
C δ²y
D μ²y

The relation between forward and backward difference operators is

A Δ = E∇
B ∇ = EΔ
C Δ = E⁻¹∇
D ∇ = E⁻¹Δ

If ∇yₙ = yₙ − yₙ₋₁, then ∇²yₙ equals

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

In Newton forward interpolation, the term containing Δ²y₀ has coefficient

A p(p+1)/2!
B p²/2
C p(p−1)/2!
D (p−1)/2

In Newton backward interpolation, the term containing ∇²yₙ has coefficient

A p(p+1)/2!
B p(p−1)/2!
C p²/2
D (p+1)/2

For a forward difference table, Δ²y₀ is computed as

A y₂ − y₀
B y₁ − y₀
C Δy₀ − Δy₁
D Δy₁ − Δy₀

For equally spaced x, a basic approximation for f′(x₀) using forward differences is

A (y₀ − y₁)/h
B (y₂ − y₀)/h
C (y₁ − y₀)/h
D (y₀ + y₁)/h

A basic approximation for f′(xₙ) using backward differences is

A (yₙ₊₁ − yₙ)/h
B (yₙ − yₙ₋₁)/h
C (yₙ − yₙ₋₂)/h
D (yₙ + yₙ₋₁)/h

For smooth data, central difference derivative has leading error order

A
B h
C h⁴
D 1/h

The forward difference derivative f′(x) approximation typically has error order

A
B
C h
D 1/h

The trapezoidal rule for ∫ᵃᵇ f(x)dx with one interval is

A (b−a)(f(a)−f(b))/2
B (b−a)(f(a)+4f(m)+f(b))/6
C (b−a)f(m)
D (b−a)(f(a)+f(b))/2

Composite trapezoidal rule for n subintervals uses factor

A h
B h/2
C h/3
D 3h

If n = 4 subintervals, Simpson’s 1/3 rule uses how many points?

A 4 points
B 3 points
C 5 points
D 6 points

In composite Simpson’s 1/3 rule with n=6, how many odd-index interior points exist?

A 2 points
B 3 points
C 4 points
D 5 points

Simpson’s 3/8 rule single-interval formula uses outside factor

A h/3
B h/2
C 8h/3
D 3h/8

For Simpson’s 3/8 composite rule, points with index multiple of 3 (excluding ends) get weight

A 3
B 4
C 2
D 1

The error term of trapezoidal rule involves maximum of

A |f”(x)|
B |f'(x)|
C |f⁽⁴⁾(x)|
D |f(x)|

The error term of Simpson’s 1/3 rule involves maximum of

A |f”(x)|
B |f⁽⁴⁾(x)|
C |f'(x)|
D |f(x)|

For fixed interval length, halving h in trapezoidal rule typically reduces error by factor

A 2
B 8
C 4
D 16

For fixed interval length, halving h in Simpson’s 1/3 rule typically reduces error by factor

A 16
B 4
C 2
D 8

In Euler’s method for y’ = f(x,y), if f is negative, y typically

A Increases per step
B Stays constant
C Becomes undefined
D Decreases per step

In Euler’s method, local truncation error order is

A h
B
C
D 1/h

Euler’s method global error order is

A
B h
C
D 1/h

A basic predictor-corrector idea improves accuracy by

A Recomputing slope
B Ignoring slope
C Increasing interval
D Removing h

In numerical differentiation, using too large h mainly increases

A Round-off error
B Table size error
C Truncation error
D Memory error

In numerical differentiation, using too small h mainly increases

A Truncation error
B Step error sign
C Curvature itself
D Round-off error

In Lagrange interpolation, the polynomial passes through all given points because

A Differences are constant
B Basis property holds
C h is small
D n is even

The Newton divided-difference form is convenient for adding a new point because

A Extends polynomial easily
B Needs no recalculation
C Removes all errors
D Keeps degree fixed

In Newton divided differences, the coefficient a₂ equals

A f[x₀,x₁]
B f[x₁,x₂]
C f[x₀,x₁,x₂]
D f[x₂]

For equally spaced data, Gregory–Newton forward formula is essentially

A Lagrange form
B Romberg form
C Gauss form
D Newton forward form

For equally spaced data, Gregory–Newton backward formula is essentially

A Newton backward form
B Lagrange form
C Romberg form
D Euler form

Central difference δ in operator form relates to E by

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

The mean operator μ is mainly used to

A Compute derivatives only
B Average symmetric values
C Compute integrals only
D Shift backward

A key reason central formulas can be more accurate is

A Uses fewer points
B Avoids step size
C Uses no subtraction
D Error terms cancel

In numerical integration, Simpson’s 1/3 can fail badly if function is

A Smooth polynomial
B Constant function
C Highly oscillatory
D Linear function

A simple benefit of composite rules over single-interval rules is

A Better accuracy
B Fewer points needed
C No step size needed
D Always exact

In Romberg integration table, moving right across a row generally means

A Larger step size
B Higher accuracy estimate
C Fewer computations
D Less extrapolation

In Euler’s method, choosing h too large may cause

A Exact solution always
B Zero iterations
C Better global order
D Instability or big error

If a data table is equally spaced and x is near the center, a central interpolation approach is

A Newton forward only
B Newton backward only
C Stirling or Bessel
D Trapezoidal only

When using Lagrange interpolation, selecting the “nearest” points mainly helps to

A Reduce error term
B Increase polynomial degree
C Increase oscillations
D Remove uniqueness

For unequal spacing, using forward differences Δ directly is problematic mainly because

A y is not constant
B h is not constant
C x is not real
D f is discontinuous

In numerical differentiation from tabulated data, a practical method is to differentiate

A Trapezoidal formula
B Romberg table
C Interpolating polynomial
D Simpson weights

The key meaning of “discrete differentiation” is estimating derivatives from

A Tabulated values
B Exact formulas
C Continuous limits
D Symbolic algebra

In Newton forward interpolation, if p is small (close to 0), the series converges faster because

A h becomes zero
B Δ becomes zero
C y becomes constant
D Higher terms shrink

In Newton backward interpolation, if p is near 0, it means x is near

A x₀
B xₙ
C midpoint
D outside range

A common numerical sign that polynomial interpolation degree is too high is

A Constant differences
B Exact endpoints
C Large oscillations
D Smaller table

In Gauss quadrature, the key improvement comes from choosing nodes as

A Equally spaced points
B Table endpoints only
C Random sample points
D Roots of orthogonal polynomials

In Simpson’s 1/3 rule, if function values are given at x=0,1,2,3,4 (equal spacing), n equals

A 4
B 5
C 3
D 2

In finite differences, using smaller h in difference tables generally makes differences approximate derivatives

A Less closely
B More closely
C Not related
D Always exact

Leave a Reply

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