Find basis for orthogonal complement polynomial

776 Views Asked by At

Consider the complex vector space of complex polynomials of degree at most $2$, with standard inner product $$\langle p,q \rangle = \int_{0}^1 p(x)\overline{q(x)} dx.$$

How would you find a basis for the orthogonal complement of $J$ where $J=Span(ix^2)$?

EDIT: Using Gram-Schmidt

2

There are 2 best solutions below

2
On BEST ANSWER

The polynomials $x \mapsto 1$, $x \mapsto x$, $x \mapsto ix^2$ form a basis for the space. Now apply Gram Schmidt, but start with the $x \mapsto ix^2$ vector.

Then the other two will be orthogonal to this and hence span the orthogonal complement. $f_0(x) = ix^2$

$g_0(x) = \sqrt{5}ix^2$ (after normalising).

$f_1(x) = 1 - \langle g_0, x \mapsto 1\rangle g_0(x) = 1-{5 \over3} x^2$,

$g_1(x)= {3 \over 2} - {5 \over 2} x^2$.

$f_2(x) = x - \langle g_0, x \mapsto x \rangle g_0(x) - \langle g_1, x \mapsto x \rangle g_1(x) = {1 \over 16} (-3+16x-15x^2)$,

$g_2(x) = {\sqrt{3} \over 2 } (-3+16x-15x^2)$.

It is easy (but tedious) to check that $g_0,g_1,g_2$ are orthonormal, hence $J^\bot = \operatorname{sp} \{ g_1,g_2 \}$.

4
On

You need to find all polynomials of the form $p(x) = ax^2 + bx + c$ such that

$$ \langle p, ix^2\rangle = -i\int_0^1 x^2(ax^2 + bx + c)\,dx = 0 $$

Therefore you need $a/5 + b/4 + c/3 = 0 \iff c = -3a/5 - 3b/4$. It follows that

$$ p(x) = a(x^2 - 3/5) + b(x - 3/4) $$

Hence the orthogonal complement is given by

$$ J^\perp = \operatorname*{span}\{x - 3/4, x^2 - 3/5\} $$