Finals Memorization

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/21

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

22 Terms

1
New cards

Root Defintion

A number α ∈ [a,b] s.t. f(α) = 0 is called a root or zero of f

2
New cards

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.

3
New cards

Newtons Method

Given x0, xk+1 = xk - f(xk)/f’(xk). This is illustrated through tangent lines

4
New cards

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.

5
New cards

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).

6
New cards

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.

7
New cards

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.

8
New cards

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)

9
New cards

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

x  f(x2)

10
New cards

Cubic Spline Smoothness

 c0     s0(b)    =   s1(b) 

c1       s0’(b)   =  s1’(b) 

 c2      s0’’(b)  =  s1”(b)

11
New cards

Cubic Spline Interpolation

s0(a) = A

s0(b) = B

s1(b) = B

s1(c) = C

12
New cards

Cubic Spline Natural Spline

s0”(a) = 0 

s1”(c) = 0

13
New cards

Forward Difference

S+h f(x̄) ≈ f(x̄+h)-f(x̄) / h.         Order One

14
New cards

Backward Difference

S-h f(x̄) ≈ f(x̄)-f(x̄-h) / h.           Order One

15
New cards

Centred Difference

Sch f(x̄) ≈ f(x̄+h) - f(x̄-h) / h.    Order Two

16
New cards

Approximation of f’’(x̄)

 S2h f(x̄) ≈ f(x̄+h) - 2f(x̄) + f(x̄-h) / h2

17
New cards

Midpoint Rule

  Imp(f) = (b-a)f(a+b/2)

18
New cards

Trapezoidal Rule

It(f) = (b-a)/2*(f(a)+f(b))

19
New cards

Simpsons Rule

Is(f) = (b-a)/6*(f(a)+4f(a+b/2)+f(b))

20
New cards

Composite Midpoint Rule

Imph (f) = h Σi=0n-1 (f(xi+xi+1)/2)

21
New cards

Composite Trapezodial Rule

Ith (f) = h/2f(x0) + h Σi=0n-1 f(xi) + h/2f(xn)

22
New cards

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)

Explore top flashcards