In a Finite Element context, say I have a 1D finite element with 2 nodes, $x=0$ and $x=1$. The typically used shape funcions are
$N_1(x) = 1 - x$
$N_2(x) = x$
Would it make sense to use second order polynomials on that same element (without introducing an extra node at $x=0.5$) as described below?
$N_1(x) = 1 - 0.5x - 0.5x^2$
$N_2(x) = 0.5x + 0.5x^2$
Should I expect better accuracy? Is there something wrong in using those shape functions?