1/3
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
What is bisection method?
Using IVT, we break down a range smaller and smaller to solve it. Takes very long time.
What is Newtons Method?
Uses tangents, we get closer and closer to the point. formula looks like xn+1 = f(xn)/f’(xn). Eventually f converges to C
What is polynomial interpolation?
If we have n points, we want t ofind a unique polynomial of degree <= n which finds all points.
What are the things we can use for polynomial interpolation?
Lagrange Polynomial Interpolation
Newtons Polynomial Interpolation