Transform 10 to 1000 Points on x^9 to x^2 Polynomial

Click For Summary

Discussion Overview

The discussion revolves around the possibility of transforming a smaller set of points (10) that lie on a 9th degree polynomial into a larger set of points (1000) that lie on a polynomial of lower degree (such as 2). Participants explore the feasibility of such transformations, the implications for polynomial degree, and the relationships between the original and transformed points.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested

Main Points Raised

  • Some participants assert that given n points, one can find a polynomial of degree at most n-1 that passes through those points, but this does not address the transformation to a lower degree polynomial.
  • One participant emphasizes the need for a deterministic and reversible transformation that increases the number of points while decreasing the polynomial degree.
  • Another participant explains that to uniquely determine a polynomial of degree n, exactly n+1 points are needed, suggesting that transforming 10 points into a polynomial of degree 2 while retaining a relationship to the original points may not be feasible.
  • Some participants propose using approximation methods such as least squares or splines to achieve a lower degree polynomial, though this may not maintain the original points on the new polynomial.
  • There is a contention regarding whether the original points must remain on the new polynomial; if they do, some argue that such a transformation is impossible.

Areas of Agreement / Disagreement

Participants generally disagree on the feasibility of the proposed transformation. While some suggest approximation methods, others argue that maintaining the original points on a lower degree polynomial is not possible. The discussion remains unresolved regarding the specific transformation sought.

Contextual Notes

Limitations include the dependence on the relationship between original and transformed points, the necessity of maintaining original points on the new polynomial, and the implications of using approximation methods that may not satisfy the original conditions.

compEng
Messages
5
Reaction score
0
In the above title 10 and 1000 are arbitrary numbers I will use them below to signify the concept of a smaller and larger number.

I know that n points are described by at most an x^(n-1) polynomial.

What I really mean to ask is:
Is it possible to take a "smaller" amount of points say 10, go through a series of transformations, turn them into a "larger" number of points, say 1000, so that the larger number of points all lie on a line described by a polynomial with a degree less than the degree of the polynomial that describes the 10 points?

Assume that the 10 points are described by a 10-1 = 9 degree polynomial.

I would then want to take my new polynomial (along with some meta data) and derive the original 10 points.

Is any of this possible? Any recommended resources to get me started or point me in the right direction?

Note this is just for fun and not any sort of homework or test problem so it may just be impossible.
 
Physics news on Phys.org
I'm not completely sure what you are asking but, as you say, you can, given any n points find a polynomial of degree at most n-1 whose graph goes through those n points. Given 10 points you find a polynomial of degree at most nine whose graph passes through those points. To get an additional 90 points lying on that polynomial, just evaluate that polynomial at 90 additional "x" values. I don't know what more you want.
 
HallsofIvy said:
I'm not completely sure what you are asking but, as you say, you can, given any n points find a polynomial of degree at most n-1 whose graph goes through those n points. Given 10 points you find a polynomial of degree at most nine whose graph passes through those points. To get an additional 90 points lying on that polynomial, just evaluate that polynomial at 90 additional "x" values. I don't know what more you want.

What I want to end up with is a polynomial with a degree less than 9.

I want to take 10 points and their respective x^9 polynomial. Convert these points 10 points through a series of transformations to 1000 points on a X^2 (or x^3, or X^4... or x^y where y < 9) polynomial. Is this possible?

Basically I start with points and a polynomial. I want a set of transformations so that the amount of points increase while the polynomial's degree decreases.
 
In other words, you want to do exactly what I said before -you want to start with 10 points, create 9th degree polynomial from them, then calculate 90 more points that satisfy that polynomial.
 
No I want to calculate 990 more points that satisfy a different, lesser degree polynomial. I want this "calculation" to be deterministic and reversible.No. With 10 points I have a 9th degree polynomial. If I add 990 points to this curve, the curve is still of degree 9. This is not what I want.

I don't want to "add" 990 points. I want to "transform" 10 points into 1000. The original 10 points do not have to necessarily show up in their original form in the new 1000 points.
The transformation will be one such that the new polynomial that describes these 1000 points is now only of degree 2.

The transformation does two things:
- The polynomial is reduced from degree 9 to degree 2.
- The number of points is increased from 10 to 1000

What kind of transformation can do this? Does such a thing exist?
 
Last edited:
For a polynomial of degree [itex]n[/itex], you'd need exactly [itex]n+1[/itex] points to determine a unique polynomial of that degree which those points satisfy. Any fewer points and not all parameters will be determined. Too many points and it's very likely there is no polynomial that those points satisfy exactly.

More precisely, each polynomial can be represented as [itex]\vec y = \vec X \vec c[/itex] where [itex]\vec X[/itex] is a matrix where the elements of each row are growing powers of [itex]x[/itex] i.e. [itex]1, x, x^2, \dots , x^n[/itex] of one point. This has a unique solution iff [itex]rank(\vec X) = rank([\vec X | \vec y]) = n+1[/itex].

So if I understand you correctly, you want to take these 10 points, generate the ninth-degree polynomial from which you'll "sample" these 1000 points that you'll then use to generate a second-degree polynomial? Seeing as that you almost certainly won't be able to get a polynomial that satisfy all of those points, you'll end up doing an approximate solution anyway using some fitting method e.g. least squares.

However, if the end goal is to simplify the original ninth-degree polynomial then this is a bad method unless those points lie very close to each other due to loss of information. An better way to approximate the polynomial is to use splines.
 
As previously noted, you could use splines. Alternatively, if you want one lower degree polynomial, you can use a least square fit.
 
compEng said:
What I want to end up with is a polynomial with a degree less than 9.
If you require your original 10 points to be on the polynomial, then it is impossible (in general). It does not matter how many other points you want to consider, such a function just does not exist.

If the original 10 points don't have to be on the polynomial, then how are the initial points and the final points related? What stops you from making up an arbitrary polynomial and to find 1000 points on it with no relation to the original 10 points?

I guess you want some approximation procedure. But then the 1000 points do not matter at all. Least square fits and splines as the typical approximation methods have been mentioned before.
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 69 ·
3
Replies
69
Views
9K
  • · Replies 1 ·
Replies
1
Views
2K
Replies
7
Views
2K
Replies
3
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
3K
Replies
13
Views
2K