2) Numerical Integration Flashcards

(20 cards)

1
Q

What is a quadrature rule in numerical integration

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

In a quadrature rule, what are the weights and nodes, and how do we distinguish between open and closed rules

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does it mean for a quadrature rule to have degree of precision d

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How can interpolatory quadrature rules be constructed to guarantee a degree of precision at least n, and how are the weights determined

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the midpoint rule in numerical integration, and what is its degree of precision

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are Newton–Cotes rules

A

Newton–Cotes rules are interpolatory quadrature rules based on equally spaced nodes: xk =a+kh,where h= (b−a)/n

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the Newton–Cotes rule for n=1, and its degree of precision

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is Simpson’s rule and its degree of precision

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the degree of precision of a quadrature rule based on the zeros of orthogonal polynomials

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are key properties of Gauss quadrature rules

A
  • The nodes xk (zeros of Φn+1) are real, distinct, and lie in (a,b)
  • Gauss rules are open (nodes lie strictly inside (a,b))
  • All weights are positive, which makes the rule less sensitive to errors in f
  • In general, the nodes and weights are irrational and often lack explicit formulas
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the Gauss–Chebyshev quadrature rule for w(x)=(1−x^2)^−1/2 on [−1,1]

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the idea behind composite quadrature rules

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the composite midpoint rule

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the error of the composite midpoint rule

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the composite trapezium rule

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the error of the composite trapezium rule

17
Q

How can extrapolation improve quadrature approximations, and how does it lead to Simpson’s rule

18
Q

What is the Romberg scheme, and how does it improve numerical integration accuracy

A

Romberg scheme improves accuracy by recursively eliminating error terms using extrapolation, based on the trapezium rule.

19
Q

What is an adaptive quadrature algorithm

A
  • Adaptive quadrature chooses where to sample based on the behavior of f(x), refining more in complex regions
  • It uses two rules (like Simpson’s and Trapezoidal) to estimate error.
  • The difference ∣R1−R2 ∣ tells us if we’re accurate enough. If not, split the interval and try again
  • The algorithm ends when the total error is within the desired tolerance
20
Q

Why can we use ∣R1 − R2 ∣ as our tolerence in adapative quadrature