Section 16.5 Power Series
Subsection 16.5.1 Definition
Earlier in this chapter, we found that a polynomial of degree over a ring is an expression of the form
where each of the are elements of and In Section 8.5 we defined a generating function of a sequence with terms as the infinite sum
The main difference between these two expressions, disregarding notation, is that the latter is an infinite expression and the former is a finite expression. In this section we will extend the algebra of polynomials to the algebra of infinite expressions like which are called power series.
Our first observation in our comparison of and is that every polynomial is a power series and so This is true because a polynomial of degree in can be thought of as an infinite expression where for In addition, we will see that is a ring with subring
Definition 16.5.2. Power Series Addition.
Definition 16.5.3. Power Series Multiplication.
Example 16.5.4. Some Power Series Calcuations.
Let
be elements in Let us compute and First the sum:
The product is a bit more involved:
We can compute any value of with the amount of time/work required increasing as increases.
xxxxxxxxxx
def d(i):
s=0
for j in range(1,i+1):
s+=j*2^(i-j)
return s
d(20)
A closed-form expression for would be desirable. Using techniques from Chapter 8, the formula is which we leave it to the reader to derive. Hence,
Subsection 16.5.2 Properties, Units
We have seen that addition and multiplication in is virtually identical to that in The following theorem parallels Theorem 16.3.8, establishing the ring properties of
Theorem 16.5.5. Properties of Power Series.
Let be a ring. Then:
is a ring under the operations of power series addition and multiplication, which depend on the operations in R.- If R is a commutative ring, then
is a commutative ring. - If R is a ring with unity,
then is a ring with unity (the unity in R[x] is ). - If R is an integral domain, then
is an integral domain. - If F is a field, then
is not a field. However, is an integral domain.
We are most interested in the situation when the set of coefficients is a field. The theorem above indicates that when is a field, is an integral domain. A reason that is not a field is the same as one that we can cite for namely that does not have multiplicative inverse in
With all of these similarities, one might wonder if the rings of polynomials and power series over a field are isomorphic. It turns out that they are not. The difference between and becomes apparent when one studies which elements are units in each. First we prove that the only units in are the nonzero constants; that is, the nonzero elements of
Theorem 16.5.6. Polynomial Units.
Proof.
(⇒)
Let be a unit in Then has a multiplicative inverse, call it such that Hence, the But So and since the degree of a polynomial is always nonnegative, this can only happen when the Hence, is a constant, an element of which is a unit if and only if it is nonzero.
(⇐)
If is a nonzero element of then it is a unit since is a field. Thus it has an inverse, which is also in and so is a unit of
Before we proceed to categorize the units in we remind the reader that two power series and are equal if and only if corresponding coefficients are equal, for all
Theorem 16.5.7. Power Series Units.
Proof.
(⇒)
If is a unit of then there exists in such that
Since corresponding coefficients in the equation above must be equal, which implies that
(⇐)
Assume that To prove that is a unit of we need to find in such that If we use the formula for the coefficients and equate coefficients, we get
Therefore the powers series is an expression whose coefficients lie in and that satisfies the statement Hence, is the multiplicative inverse of and is a unit.
Example 16.5.8.
Let be an element of Then, by Theorem 16.5.7, since is a unit and has an inverse, call it To compute we follow the procedure outlined in the above theorem. Using the formulas for the s, we obtain
For we have
Hence, is the multiplicative inverse of
Certainly contains a wider variety of units than Yet is not a field, since is not a unit. So concerning the algebraic structure of we know that it is an integral domain that contains If we allow our power series to take on negative exponents; that is, consider expressions of the form where all but a finite number of terms with a negative index equal zero. These expressions are called extended power series. The set of all such expressions is a field, call it This set does contain, for example, the inverse of which is It can be shown that each nonzero element of is a unit.
Exercises 16.5.3 Exercises
1.
Let and be elements of Let Apply basic algebra to to derive the formula for the coefficients of Hence, to show that
2.
- Prove that for any integral domain
the following can be proven: is a unit of if and only if is a unit in - Compare the statement in part a to that in Theorem 16.5.7.
- Give an example of the statement in part a in
3.
Use the formula for the product to verify that the expression of Example 16.5.8 is indeed the inverse of
4.
- Determine the inverse of
in - Repeat part a with
taken in - Use the method outlined in Chapter 8 to show that the power series
is the rational generating function What is the inverse of this function? Compare your results with those in part a.
5.
- Determine the inverse of
in - Use the procedures in Chapter 8 to find a rational generating function for
in part a. Find the multiplicative inverse of this function.
Answer.
- All other terms are zero. Hence,
- The last step follows from the formula for the sum of a geometric series.
6.
7.
Answer.
8.
You have attempted of activities on this page.