numerical integration and differentiation - computer...

47
Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation Numerical Integration and Differentiation CS 205A: Mathematical Methods for Robotics, Vision, and Graphics Doug James (and Justin Solomon) CS 205A: Mathematical Methods Numerical Integration and Differentiation 1 / 38

Upload: others

Post on 29-May-2020

16 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Numerical Integrationand Differentiation

CS 205A:Mathematical Methods for Robotics, Vision, and Graphics

Doug James (and Justin Solomon)

CS 205A: Mathematical Methods Numerical Integration and Differentiation 1 / 38

Page 2: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Announcements

I HW8I Extension: Due on FridayI Can use late days until Sunday midnightI Solutions out Monday

I Final ExamI Tuesday March 20 @ 3:30-6:30pmI Room: Gates B3 (this room)I Allowed: Two double-sided pages of written notes (can

reuse last one)

CS 205A: Mathematical Methods Numerical Integration and Differentiation 2 / 38

Page 3: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Today’s Task

Last time: Find f (x)

Today: Find∫ ba f (x) dx

and f ′(x)

CS 205A: Mathematical Methods Numerical Integration and Differentiation 3 / 38

Page 4: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Motivation

erf(x) =2√π

∫ x

0

e−t2

dt

Some functions are defined using integrals!

CS 205A: Mathematical Methods Numerical Integration and Differentiation 4 / 38

Page 5: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Sampling from a Distribution

p(x) ∈ Prob([0, 1])

Cumulative distribution function (CDF):

F (t) ≡∫ t

0

p(x) dx

X distributed uniformly in [0, 1] =⇒F−1(X) distributed according to p

CS 205A: Mathematical Methods Numerical Integration and Differentiation 5 / 38

Page 6: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Sampling from a Distribution

p(x) ∈ Prob([0, 1])

Cumulative distribution function (CDF):

F (t) ≡∫ t

0

p(x) dx

X distributed uniformly in [0, 1] =⇒F−1(X) distributed according to p

CS 205A: Mathematical Methods Numerical Integration and Differentiation 5 / 38

Page 7: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Sampling from a Distribution

p(x) ∈ Prob([0, 1])

Cumulative distribution function (CDF):

F (t) ≡∫ t

0

p(x) dx

X distributed uniformly in [0, 1] =⇒F−1(X) distributed according to p

CS 205A: Mathematical Methods Numerical Integration and Differentiation 5 / 38

Page 8: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Rendering

“Light leaving a surface is the integral of the

light coming in after it is reflected and diffused.”

Rendering equation

CS 205A: Mathematical Methods Numerical Integration and Differentiation 6 / 38

Page 9: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Rendering

Jakob, W., Marschner, S. 2012. Manifold Exploration: A Markov Chain Monte Carlo Technique for Rendering Scenes with Difficult Specular Transport. ACM Trans. Graph. 31 4, Article 58 (July 2012).

CS 205A: Mathematical Methods Numerical Integration and Differentiation 7 / 38

Page 10: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Gaussian Blur

http://www.borisfx.com/images/bcc3/gaussian_blur.jpg

(I ∗ g)(x, y) =x

R2

I(u, v)g(x− u, y − v) du dv

CS 205A: Mathematical Methods Numerical Integration and Differentiation 8 / 38

Page 11: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Bayes’ Rule

P (X|Y ) =P (Y |X)P (X)∫P (Y |X)P (X) dX

Probability of X given Y

CS 205A: Mathematical Methods Numerical Integration and Differentiation 9 / 38

Page 12: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Quadrature

QuadratureGiven a sampling of n values f (x1), . . . , f (xn),

find an approximation of∫ ba f (x) dx.

1. Endpoints may be fixed, or may want to

query many (a, b) pairs

2. May be able to query f (x) anywhere, or may

be given a fixed set of pairs (xi, f (xi))

CS 205A: Mathematical Methods Numerical Integration and Differentiation 10 / 38

Page 13: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Quadrature

QuadratureGiven a sampling of n values f (x1), . . . , f (xn),

find an approximation of∫ ba f (x) dx.

1. Endpoints may be fixed, or may want to

query many (a, b) pairs

2. May be able to query f (x) anywhere, or may

be given a fixed set of pairs (xi, f (xi))

CS 205A: Mathematical Methods Numerical Integration and Differentiation 10 / 38

Page 14: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Interpolatory Quadrature

∫ b

a

f(x) dx =

∫ b

a

[∑i

aiφi(x)

]dx

=∑i

ai

[∫ b

a

φi(x) dx

]=∑i

ciai for ci ≡∫ b

a

φi(x) dx

Example 14.6: Monomials xk on [0, 1].

CS 205A: Mathematical Methods Numerical Integration and Differentiation 11 / 38

Page 15: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Riemann Integral

∫ b

a

f(x) dx = lim∆xk→0

∑k

f(xk)(xk+1 − xk)

≈∑k

f(xk)∆xk

CS 205A: Mathematical Methods Numerical Integration and Differentiation 12 / 38

Page 16: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Quadrature Rules

Q[f ] ≡∑i

wif (xi)

wi describes thecontribution of f (xi)

CS 205A: Mathematical Methods Numerical Integration and Differentiation 13 / 38

Page 17: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Quadrature Rules

Q[f ] ≡∑i

wif (xi)

wi describes thecontribution of f (xi)

CS 205A: Mathematical Methods Numerical Integration and Differentiation 13 / 38

Page 18: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Quadrature RulesExample 14.7:Method of undetermined coefficientsI Fix quadrature points x1, x2, . . . , xn.I Choose n functions f1(x), f2(x), . . . , fn(x) where

I∫ b

a fi(x)dx are known for i = 1, . . . , n.

I Solve n-by-n linear system for weights w1, . . . , wn

such that

w1fi(x1) + . . .+ wnfi(xn) =

∫ b

a

fi(x)dx,

for i = 1, . . . , n.

CS 205A: Mathematical Methods Numerical Integration and Differentiation 14 / 38

Page 19: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Newton-Cotes Quadrature

xi’s evenly spaced in [a, b] and symmetric

I Closed: includes endpoints

xk ≡ a+(k − 1)(b− a)

n− 1

I Open: does not include endpoints

xk ≡ a+k(b− a)

n+ 1

CS 205A: Mathematical Methods Numerical Integration and Differentiation 15 / 38

Page 20: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Newton-Cotes Quadrature

xi’s evenly spaced in [a, b] and symmetric

I Closed: includes endpoints

xk ≡ a+(k − 1)(b− a)

n− 1

I Open: does not include endpoints

xk ≡ a+k(b− a)

n+ 1

CS 205A: Mathematical Methods Numerical Integration and Differentiation 15 / 38

Page 21: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Midpoint Rule

∫ b

a

f (x) dx ≈ (b− a)f

(a + b

2

)Open

x1

f(x1)

CS 205A: Mathematical Methods Numerical Integration and Differentiation 16 / 38

Page 22: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Trapezoidal Rule

∫ b

a

f (x) dx ≈ (b− a)f (a) + f (b)

2

Closed

x1 x2

f(x2)

f(x1)

CS 205A: Mathematical Methods Numerical Integration and Differentiation 17 / 38

Page 23: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Simpson’s Rule

∫ b

a

f(x) dx ≈ b− a6

(f(a) + 4f

(a+ b

2

)+ f(b)

)Closed; from quadratic interpolation

x1 x3

f(x3)

f(x1)

x2

f(x2)

CS 205A: Mathematical Methods Numerical Integration and Differentiation 18 / 38

Page 24: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Composite Rules

Composite midpoint:∫ b

a

f(x) dx ≈k∑

i=1

f

(xi+1 + xi

2

)∆x

xa b

f(x)

CS 205A: Mathematical Methods Numerical Integration and Differentiation 19 / 38

Page 25: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Composite Rules

Composite trapezoid:∫ b

a

f(x) dx ≈k∑

i=1

(f(xi) + f(xi+1)

2

)∆x

= ∆x

(1

2f(a) + f(x1) + · · ·+ f(xk−1) +

1

2f(b)

)

xa b

f(x)

CS 205A: Mathematical Methods Numerical Integration and Differentiation 20 / 38

Page 26: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Composite Rules

Composite Simpson:∫ b

a

f(x) dx ≈ ∆x

3

f(a) + 2n−2−1∑i=1

f(x2i) + 4

n/2∑i=1

f(x2i−1) + f(b)

=

∆x

3[f(a) + 4f(x1) + 2f(x2) + · · ·+ 4f(xn−1) + f(b)]

n must be odd!

xa b

f(x)

CS 205A: Mathematical Methods Numerical Integration and Differentiation 21 / 38

Page 27: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Question

Which quadrature rule is best?

CS 205A: Mathematical Methods Numerical Integration and Differentiation 22 / 38

Page 28: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Accuracy on a Single Interval

I Midpoint and trapezoid: O(∆x3)

I Simpson: O(∆x5)

[See Mathematica notebook.]

CS 205A: Mathematical Methods Numerical Integration and Differentiation 23 / 38

Page 29: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Composite Accuracy

Number of subintervals ≈ O( 1∆x

)

I Midpoint and trapezoid: O(∆x2)

I Simpson: O(∆x4)

CS 205A: Mathematical Methods Numerical Integration and Differentiation 24 / 38

Page 30: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Other Strategies

I Gaussian quadrature: Optimize both wi’s

and xi’s; gets two times the accuracy (but

harder to use!)

I Adaptive quadrature: Choose xi’s where

information is needed (e.g. when quadrature

strategies do not agree)

CS 205A: Mathematical Methods Numerical Integration and Differentiation 25 / 38

Page 31: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Multivariable Integrals I

“Curse of dimensionality”∫Ω

f (~x) d~x,Ω ⊆ Rn

I Iterated integral: Apply one-dimensional

strategy

I Subdivision: Fill with triangles/rectangles,

tetrahedra/boxes, etc.

CS 205A: Mathematical Methods Numerical Integration and Differentiation 26 / 38

Page 32: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Multivariable Integrals II

I Monte Carlo: Randomly draw points in Ω

and average f (~x); converges like 1/√k

regardless of dimension

CS 205A: Mathematical Methods Numerical Integration and Differentiation 27 / 38

Page 33: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Conditioning

Given quadrature scheme

Q[f ] =n∑i=1

wif (xi)

and perturbed function f , then

|Q[f ]−Q[f ]|‖f − f‖∞

≤ ‖~w‖1 ≤ n‖~w‖∞

Note: Norm typo in book.CS 205A: Mathematical Methods Numerical Integration and Differentiation 28 / 38

Page 34: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Differentiation

I Lack of stabilityI Jacobians vs. f : R→ R

CS 205A: Mathematical Methods Numerical Integration and Differentiation 29 / 38

Page 35: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Differentiation in Basis

f ′(x) =∑

aiφ′i(x)

φ′i’s basis for derivatives

Important for finite element method!

CS 205A: Mathematical Methods Numerical Integration and Differentiation 30 / 38

Page 36: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Differentiation in Basis

f ′(x) =∑

aiφ′i(x)

φ′i’s basis for derivatives

Important for finite element method!

CS 205A: Mathematical Methods Numerical Integration and Differentiation 30 / 38

Page 37: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Definition of Derivative

f ′(x) ≡ limh→0

f (x + h)− f (x)

h

CS 205A: Mathematical Methods Numerical Integration and Differentiation 31 / 38

Page 38: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

O(h) Approximations

Forward difference:

f ′(x) ≈ f(x+ h)− f(x)

h

Backward difference:

f ′(x) ≈ f(x)− f(x− h)

h

CS 205A: Mathematical Methods Numerical Integration and Differentiation 32 / 38

Page 39: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

O(h) Approximations

Forward difference:

f ′(x) ≈ f(x+ h)− f(x)

h

Backward difference:

f ′(x) ≈ f(x)− f(x− h)

h

CS 205A: Mathematical Methods Numerical Integration and Differentiation 32 / 38

Page 40: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

O(h2) Approximation

Centered difference:

f ′(x) ≈ f(x+ h)− f(x− h)

2h

CS 205A: Mathematical Methods Numerical Integration and Differentiation 33 / 38

Page 41: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

O(h) Approximation of f ′′

Centered difference:

f ′′(x) ≈ f(x+ h)− 2f(x) + f(x− h)

h2

=f(x+h)−f(x)

h− f(x)−f(x−h)

h

h

CS 205A: Mathematical Methods Numerical Integration and Differentiation 34 / 38

Page 42: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Geometric Interpretation for f ′′

f(x− h) f(x+ h)f(x)

f ′′(x)

f ′(x+ h/2)f ′(x− h/2)

CS 205A: Mathematical Methods Numerical Integration and Differentiation 35 / 38

Page 43: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Deriving Finite Differences Schemes

General case: Want f (k)(0) using an n-sample FD scheme

f (k)(0) ≈n∑

i=1

cif(xi).

Approach: Consider Taylor Series expansions, and solve a linear system(symbolically) to find the coefficients:

n∑i=1

cif(xi) ≈

(∑i

ci

)f(0) +

(∑i

cixi

)f ′(0) +

(1

2!

∑i

ci(xi)2

)f ′′(0) + . . .

So we have A~c = ek =⇒ ~c = A−1ek for the kth derivative finite-differencescheme.See Mathematica notes.https://en.wikipedia.org/wiki/Finite_difference_coefficient

CS 205A: Mathematical Methods Numerical Integration and Differentiation 36 / 38

Page 44: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Choosing h

I Too big: Bad approximation of f ′

I Too small: Numerical issues

(h small, f (x) ≈ f (x + h))

h10−710−810−9

1 + 10−6

1

Numerical errorDiscretization error

CS 205A: Mathematical Methods Numerical Integration and Differentiation 37 / 38

Page 45: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Richardson Extrapolation

D(h) ≡ f(x+ h)− f(x)

h= f ′(x) +

1

2f ′′(x)h+O(h2)

D(αh) = f ′(x) +1

2f ′′(x)αh+O(h2)

(f ′(x)f ′′(x)

)=

(1 1

2h

1 12αh

)−1(D(h)D(αh)

)+O(h2)

Extrapolation for integration: Romberg Integration

CS 205A: Mathematical Methods Numerical Integration and Differentiation 38 / 38

Page 46: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Richardson Extrapolation

D(h) ≡ f(x+ h)− f(x)

h= f ′(x) +

1

2f ′′(x)h+O(h2)

D(αh) = f ′(x) +1

2f ′′(x)αh+O(h2)

(f ′(x)f ′′(x)

)=

(1 1

2h

1 12αh

)−1(D(h)D(αh)

)+O(h2)

Extrapolation for integration: Romberg Integration

CS 205A: Mathematical Methods Numerical Integration and Differentiation 38 / 38

Page 47: Numerical Integration and Differentiation - Computer Graphicsgraphics.stanford.edu/courses/cs205a/assets/lecture... · 2018-03-15 · I Gaussian quadrature: Optimize both w i’s

Introduction Quadrature Newton-Cotes Accuracy More Quadrature Differentiation

Richardson Extrapolation

D(h) ≡ f(x+ h)− f(x)

h= f ′(x) +

1

2f ′′(x)h+O(h2)

D(αh) = f ′(x) +1

2f ′′(x)αh+O(h2)

(f ′(x)f ′′(x)

)=

(1 1

2h

1 12αh

)−1(D(h)D(αh)

)+O(h2)

Extrapolation for integration: Romberg Integration

CS 205A: Mathematical Methods Numerical Integration and Differentiation 38 / 38