7) Numerical Solutions of PDEs Flashcards
When is a function said to be O(h^n)
What is the Foward Difference Method
Describe the proof of how the forward difference works
When is a finite-difference method said
be nth order
If the remainder term is O(h^n)
What is the Centred Differencing Method
Describe the proof of the Centred Differencing Method
What is the advantage of using centred differencing
It is higher order, but still only requires the same number of evaluations of u
How do you construct a finite-difference approximation for the first derivative of a function using Taylor’s theorem
Why are the coefficient conditions a+b+c+d=0,
a−c−2d=1, and a+c+4d=0 necessary in finite-difference formulas for first and second-order accuracy
First-Order Accuracy:
* Sum Zero (a+b+c+d=0): Ensures cancellation of constant terms, focusing the formula on the derivative approximation.
* Linear Coefficient (a−c−2d=1): Scales the first derivative term to 1, aligning the approximation with u′(x)
Second-Order Accuracy:
* Quadratic Coefficient Zero (a+c+4d=0): Removes the second derivative term from the error, reducing it to O(h^2 ) and increasing accuracy.
How is the second derivative of a function approximated using the central finite-difference method, and what is its accuracy
What is the Explicit Euler Method
Describe the proof of the Explicit Euler Method
What is the Implicit Euler Method
What is the Theta Method
How does the theta method generalise explicit and implicit Euler methods
Θ = 1 => Explicit Euler - (Error 0(∆t)
Θ = 0 => Implicit Euler - (Error 0(∆t)
Θ = 1/2 => Trapezoidal method - (Error 0(∆t^2)
What is the Trapezoidal Method