• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/18

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

18 Cards in this Set

  • Front
  • Back
Mean Value Theorem
f(b) - f(a) / b-a
Derivative
f(x+h) - f(x) / h
Taylors theorem -- around c and for h
Around c: Sum (k to n) F^k(c) / k! * (x - c)^k


Around h: SUM(k to n) f^k(x) / k ! * h^k
How to represent float value
2^e-127 * 1.m
Bisection C value
b - a /2
Regula Falsi
b - f(b)(a-b) / f(a) - f(b)
Newtons
Xn - f(xn) / f'(xn)
Secant
a = xn-1
b = xn

b - (b-a) / f(b) - f(a)
lagrange
(x - ..) () / (value - value)() * f0

for all l0s
Central Difference
f(x + h) - f(x - h) / 2h
Richardson Recursive
D(N,M) = D(N, M-1) + (1 / 4^m - 1) * (D(N,M-1) - D(N-1, M-1))
D(0,0)
D(1,0)
o(h)
o(h/2)
trapezoid rule
(b-a)/2 * [f(a) + f(b)]
trapezoid error
-(b-a)/12 * f''(c) * h^2
composite trapezoid
(b-a) *[ [f(a) + 2 SUM(f(inner nodes)) + f(b)] / 2n ]
bisection is good for functions like
|
|
|
|
------------------------------
regula falsi is good for functions like
\
\
\
\
newton is good for functions
well behaved with good starting point and calculatable derivative

bad when going circular or flat