I have a weight function $w(x)=e^{-x}$ with $x$ from $0$ (inclusive) to infinity. How would I compute the first four orthonormal polynomials with respect to this weight function?
2026-03-26 10:56:24.1774522584
On
How to compute orthonormal polynomials from weight function?
606 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
There are 2 best solutions below
0
On
According to the table of orthogonal polynomials, these are Laguerre Polynomials: they are solution to Laguerre's Differential Equation and can be also found using $L_n(x)=\frac{1}{n!} \left( \frac{d}{dx} -1 \right) ^n x^n$. Here are the first four: $\left\{1,\; -x+1,\; \frac{1}{2}(x^2-4x+2),\; \frac{1}{6}(-x^3+9x^2-18x+6)\right\}$.
$$$$
You need to use Gram-Schnidt process to the set of polynomials
using the inner product
Here is the first two $\left\{ 1,(x-1)\right\}$.