#Matrix Algebra
9 messages · Page 1 of 1 (latest)
- Ask your question and show the work you've done so far. If you've posted a screenshot of a question, specify which part you need help with.
- Wait patiently for a helper to come along.
- Once someone helps you, say thank you and close the thread with:
+close - Feel free to nominate the person for helper of the week in #helper-nominations
- Do not ping the mods, unless someone is breaking the rules.
- If you're happy with the help you got here, and the server overall, you can contribute financially as well:
In general, n points can be interpolated using a (n - 1)th degree polynomial. So, in this case, cubic:
y = ax^3 + bx^2 + cx + d
We know that, for example, y(2) = -2. That gives an equation:
-8a + 4b - 2c + d = 2
Using the other three points, you get three more equations. Then you just solve the system as usual.
shouldnt it be 8a + 4b - 2c + d = -2?
Oh, sorry, my bad, mixed it up. Of course.
you can also use Lagrange polynomials
Yes, but this exercise asks for Gauss's method to be used.
i know. im just saying that OP can use that in case they get a problem like this without using gaussian elimination