In $\mathbb R[t]_2$ (vector space of all polynomials of up to a second degree), I need to compute the norm $||t^2 - 2t + 1||$, knowing only that:
$$\langle p(t),q(t)\rangle = p(-2)q(-2) + p(-1)q(-1) + p(0)q(0) + p(1)q(1)$$
I have absolutely no clue on how to compute it as I don't have the polynomials $p(t)$ and $q(t)$. Do I need to assume $p(t)$ and $q(t)$ generic polynomials, such as $p(t) = a + bt + ct^2$ and $q(t) = d + et + ft^2$, where $a,b,c,d,e,f$ would be scalars in $\mathbb R$?
Just plug into your formula:
\begin{align} \|t^2-2t+1\|^2 &= \|(t-1)^2\|^2\\ &= \langle (t-1)^2, (t-1)^2\rangle\\ &= (-2-1)^2(-2-1)^2 + (-1-1)^2(-1-1)^2 + (0-1)^2(0-1)^2 + (1-1)^2(1-1)^2\\ &= 81+16+1\\ &= 98 \end{align} so $\|t^2-2t+1\|=\sqrt{98}$.