Finding equation of a curve through 5 points

  • Context: Undergrad 
  • Thread starter Thread starter erg
  • Start date Start date
  • Tags Tags
    Curve Points
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 13K views
erg
Messages
1
Reaction score
0
I'm trying to work out the equation of a curve through 5 very specific points... these points are
(47.5, 46.3) (45,48.1) (43, 38.1) (40, 32.8) (37, 26.5)

Thought of having general equation ax^4+bx^3+cx^2+dx+e and subbing all the points in and solving but that would take way too long... If there is any simper way to do this or if you could post any link to a program capable of solving it quickly that'd be great.
 
Last edited:
Physics news on Phys.org
Did you ever had the courage to draw the points on a grath ?
 
Hi,

Does the problem specify if the function is a polynomial, exponential, logarithmic, trigonometric, hyperbolic, square root?

You can't simply assume the function is a polynomial.
 
The point is that there exist an infinite number of functions, whether polynomials, logarithms, etc. that will pass through any given 5 points. There exist exactly one fourth order polynomial through 5 points, if that's what you want. If you don't like solving 5 linear equations for the 5 polynomials, try using the "Legendre polynomial formula": The polynomial passing through the five points [itex](x_0, y_0), (x_1, y_1), (x_2, y_2), (x_3, y_3), (x_4, y_4)[/itex] is given by
[tex]\frac{(x- x_1)(x- x_2)(x- x_3)(x- x_4)}{x_0- x_1)(x_0- x_2)(x_0- x_3)(x_0- x_4)}+ \frac{(x- x_0)(x- x_2)(x- x_3)(x- x_4)}{x_1- x_0)(x_1- x_2)(x_1- x_3)(x_1- x_4)}+ \frac{(x- x_0)(x- x_1)(x- x_3)(x- x_4)}{x_2- x_0)(x_2- x_1)(x_2- x_3)(x_2- x_4)}+ \frac{(x- x_0)(x- x_1)(x- x_2)(x- x_4)}{x_3- x_0)(x_3- x_1)(x_3- x_2)(x_0- x_4)}+ \frac{(x- x_0)(x- x_1)(x- x_2)(x- x_3)}{x_4- x_0)(x_4- x_1)(x_4- x_2)(x_4- x_3)}[/tex]

That is, each fraction has, in the numerator, x minus all x-values except one and, in the denominator, that x-value minus each of the others.
 
Just looking at the graph makes me think at a simple problem of linear regression with an outlier. Are you sure that there is no bug in the data ?
 

Attachments

  • Graph.JPG
    Graph.JPG
    3.1 KB · Views: 972