Please explain, this is a Linear transformation or not ?

The second derivative of a four degree polynomial is a Linear Transformation or not?

1 Answer
Jun 26, 2018

See below

Explanation:

A trasformation T: V \to W is said to be linear if it has the following two properties:

  • T(v_1+v_2)=T(v_1)+T(v_2) for every v_1,v_2 \in V
  • T(cv)=cT(v) for every v in V and every scalar c

Note that the second property assumes that V is embedded with two operations of sum and scalar multiplication. In our case, the sum is the sum between polynomials, and the multiplication is the multiplication with real numbers (I assume).

When you derive a polynomial you lower its degree by 1, so if your derive a polynomial of degree 4 twice, you will get a polynomial of degree 2. Note that, when we speak of the set of all four degree polyinomial, we actually mean the set of all polynomials of degree at most four. In fact, a generic degree four polynomial is

a_0+a_1x+a_2x^2+a_3x^3+a_4x^4

If you want the degree two polynomial 3+6x-5x^2, for example, you simply choose

a_0=3, a_1=6, a_2=-5, a_3=a_4=0

With that being said, let's identify the polynomial space of degree n with P_n, and define our operator T: P_4 \to P_2 such that T(f(x)) = f''(x)

Let's proove the first property: assume we have the polynomials

p_1 = a_0+a_1x+a_2x^2+a_3x^3+a_4x^4

and

p_2 = b_0+b_1x+b_2x^2+b_3x^3+b_4x^4

This means that p_1+p_2 equals

(a_0+b_0)+(a_1+b_1)x+(a_2+b_2)x^2+(a_3+b_3)x^3+(a_4+b_4)x^4

T(p_1+p_2) is the second derivative of this polynomial, so it is

2(a_2+b_2)+6(a_3+b_3)x+12(a_4+b_4)x^2

(I applied twice the power rule for derivation: the second derivative of x^n is n(n-1)x^{n-2})

Now let's compute T(p_1), i.e. the second derivative of p_1:

2a_2+6a_3x+12a_4x^2

Similarly, T(p_2), i.e. the second derivative of p_2, is

2b_2+6b_3x+12b_4x^2

If you sum these expression, you can see that we have

T(p_1+p_2)=T(p_1)+T(p_2)

The second property is shown in a similar fashion: given a polynomial

p = a_0+a_1x+a_2x^2+a_3x^3+a_4x^4

we have, for any real number c,

cp = ca_0+ca_1x+ca_2x^2+ca_3x^3+ca_4x^4

its second derivative is thus

2ca_2+6ca_3x+12ca_4x^2

which again is the same as computing T(p), and then multiply everything by c, i.e. T(cp)=cT(p)