I am currently using least squares (LS) to compute gradients/derivatives. I am using LS with an incomplete quadratic basis: $$\phi = \begin{bmatrix} 1 & x & y & z & 0.5x^2 & 0.5y^2 & 0.5z^2 \end{bmatrix} $$
rather than the full basis: $$\phi = \begin{bmatrix} 1 & x & y & z & xy & xz & yz & 0.5x^2 & 0.5y^2 & 0.5z^2 \end{bmatrix} $$
What are the main disadvantages in using an incomplete quadratic basis over the full quadratic basis?