1/21
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
|---|
No study sessions yet.
Root Defintion
A number α ∈ [a,b] s.t. f(α) = 0 is called a root or zero of f
Bisection Method
Let f ∈ c0([a,b]), a<b, and suppose that f(a)f(b) < 0. The sequence generated by the bisection method approximation of a root α of f with |xk - α| ≤ b-a/2k+1, ∀ k ≥ 0. In simple terms, you split it in half and find the root. Only works for roots that change through the x-axis, plus the method must have different signs at a and b.
Newtons Method
Given x0, xk+1 = xk - f(xk)/f’(xk). This is illustrated through tangent lines
Secant Method
Given x0,x1, xk+1 = xk - f(xk)(xk-xk-1)/f(xk)-f(xk-1). This is illustrated by a single tangent line, then pivoting around that point.
Fixed Point Definition
A number α s.t φ(x) = α is called a fixed point of p. For a given continuous p and an initial guess x0, the fixed point iteration is simply: xk+1 = φ(xk). If a sequence {xk}k ≥ 0 converges to some α, then α is necessarily a fixed point of φ. Indeed, we have α = limk → ∞ xk = limk → ∞ φ(xk-1) = φ(limk→ ∞xk-1) = φ(x).
Linear Order Thm
Let φ ∈ c2([a,b]) and let α ∈ [a,b] be a fixed point of p. If 0 < |φ’(α)| < 1 and if x0 is sufficiently close to x then fixed point iteration xk+1 = φ(xk), k ≥ 0 is only of order one.
p order convergence thm
Let p ∈ cp[a,b] for some p>1 and let α ∈ [a,b] be a fixed point of p if φ’(α) = φ”(α) = … = φp-1(α) = 0 and φp(α) ≠ 0 and if x0 is sufficiently close to α, then fixed point iteration xk+1 = φ(xk), k ≥ 0 is of order p.
Lagrange Basis
φk(x) = (x-x0)(x-x1)...(x-xk-1)(x-xk+1)...(x-xn) / (xk-x0)(xk-x1)..(xk-xk-1)(xk-xk+1)..(xk-xn), then φ (x) = φk(x)*(xk)
Newton Basis
The tree method,
x0 f(x0)
> f[x0,x1] = f(x1)-f(x0)/x1-x0
x1 f(x1) > f[x0,x1,x2] = f(x1,x2) - f(x1,x0)/x2-x0
> f[x1,x2] = f(x2)-f(x1)/x2-x1
x2 f(x2)
Cubic Spline Smoothness
c0 s0(b) = s1(b)
c1 s0’(b) = s1’(b)
c2 s0’’(b) = s1”(b)
Cubic Spline Interpolation
s0(a) = A
s0(b) = B
s1(b) = B
s1(c) = C
Cubic Spline Natural Spline
s0”(a) = 0
s1”(c) = 0
Forward Difference
S+h f(x̄) ≈ f(x̄+h)-f(x̄) / h. Order One
Backward Difference
S-h f(x̄) ≈ f(x̄)-f(x̄-h) / h. Order One
Centred Difference
Sch f(x̄) ≈ f(x̄+h) - f(x̄-h) / h. Order Two
Approximation of f’’(x̄)
S2h f(x̄) ≈ f(x̄+h) - 2f(x̄) + f(x̄-h) / h2
Midpoint Rule
Imp(f) = (b-a)f(a+b/2)
Trapezoidal Rule
It(f) = (b-a)/2*(f(a)+f(b))
Simpsons Rule
Is(f) = (b-a)/6*(f(a)+4f(a+b/2)+f(b))
Composite Midpoint Rule
Imph (f) = h Σi=0n-1 (f(xi+xi+1)/2)
Composite Trapezodial Rule
Ith (f) = h/2f(x0) + h Σi=0n-1 f(xi) + h/2f(xn)
Composite Simpsons Rule
Ish (f) = h/6f(x0) + h/3 Σi=0n-1 f(xi) + 2h/3 Σi=0n-1 f(xi+xi+1/2) + h/6 f(xn)