psholtz
- 133
- 0
Homework Statement
Given a set of polynomials in x:
x^{r_1}, x^{r_2},...,x^{r_n}
where r_i \neq r_j for all i \neq j (in other words, the powers are distinct), where the functions are defined on an interval (a,b) where 0 < a < x < b (specifically, x \neq 0), I'd like to show that this set of functions is linearly indepedent.
Homework Equations
See above.
The Attempt at a Solution
I would proceed by induction.
Clearly, for n=1, this is true, since:
a_1 x^{r_1} = 0
necessarily implies (since x \neq 0) that a_1=0.
Suppose now that it is true for n-1 polynomials, and consider the expression relating the n polynomials:
a_1x^{r_1} + a_2x^{r_2} + ... + a_nx^{r_n} = 0
Divide by x^{r_1}:
a_1 + a_2x^{r_2-r_1} + ... + a_nx^{r_n-r_1} = 0
and differentiate:
a_2(r_2-r_1)x^{r_2-r_1-1} + ... + a_n(r_n-r_1)x^{r_n-r_1-1} = 0
But now we have a linear combination of n-1 polynomials, and since x \neq 0 and since r_i \neq r_j for all i \neq j, we must necessarily have (based on our construction/presumption) that:
a_2 = ... = a_n = 0
Therefore, the expression:
a_1x^{r_1} + ... + a_nx^{r_n} = 0
necessarily implies that:
a_2 = ... = a_n = 0
So the expression:
a_1x^{r_1} + ... + a_nx^{r_n} = 0
now reduces to:
a_1x^{r_1} = 0
but, as we showed before, this necessarily implies that a_1=0. Hence, if
a_1x^{r_1} + ... + a_nx^{r_n} = 0
implies that a_1=...=a_n=0 and hence the polynomials are linearly independent.
What I'm wondering is: is this line of reasoning correct?