I've been fighting with this problem for some hours now, and i decided to ask the clever people on this website.
The parabola with the equation $y=ax^2+bx+c$ goes through the points $P, Q$ and $R$. How can I find $a, b$ and $c$ in at least two different ways, when $P(0,1), Q(1,0)$ and $R(-1,3)$?
Here is one way. Plug the coordinates in the equation for each point. Then solve the system. You get, for $P,Q$ and $R$ respectively $$ \matrix{a\cdot0^2+b\cdot 0+c=1\\ a\cdot1^2+b\cdot 1+c=0\\a\cdot(-1)^2+b\cdot (-1)+c=3}\quad\Leftrightarrow\quad \matrix{c=1\\ a+b+c=0\\a-b+c=3} $$ Note that this has a unique solution $(a,b,c)$. You already have $c$ from the first equation. Now find $a$ and $b$ from the last two. You may add them to get $a$, and subtract them to get $b$.