Suppose $$f_1=-4x^4y^2z^2+y^6+3z^5,$$ $$f_2=-4x^2y^2z^2+y^6+3z^5,$$ $$f_3=4x^4y^2z^2+y^6+3z^5,$$ $$f_4=4x^2y^2z^2+y^6+3z^5$$
and
$$I=\langle xz-y^2,x^3-z^2\rangle\subset\mathbb C[x,y,z].$$
Is $f_i\in I?$
The answer is Yes in some cases.
The question can be checked with Macaulay 2: when the remainder is zero with respect to the Gröbner basis like (R=QQ[x,y,z]; fi=...; I=ideal(x*z-y^2,x^3-z^2); G=gb(I);f%G
returning zero, $f_i\not\in I$.
Division with respect to the elements in ideal or with respect to polynomials in the basis does not result into the case with zero remainder as demonstrated in the trials with Lex, RevLex and with polynomials in Gröbner basis and with respect to polynomials in the ideal (in larger resolution here, here and here) where all trials fail because not finding the zero remainder case.
Checking whether a polynomial is in an ideal can be done by hand such as manually with division algorithm and with Macaulay2 such as finding the correct factors, decomposition of the polynomial with quotients and GR elements. So
How can you check that a polynomial is in an ideal by hand and computationally such as Macaulay 2?
P.s. Other questions on learning basic computational algebraic geometry in chat.
I tried the lex order. In your computation you misinput $-4x^2y^2z^2+y^6+3z^5$ as $4x^2y^2z^2+y^6+3z^5$. Otherwise using lex order can easily give you remainder $0$.
$$ \require{enclose} \begin{array}{cc} &-4z^2 + 1 \\[-3pt] x^3-z^2& \enclose{longdiv}{-4x^2y^2z^2+y^6+3z^5} \\[-3pt] x^2y^2-z^3 & \underline{-4x^2y^2z^2+4z^5}\phantom{+3z^5} \\[-3pt] xy^4-z^4 & y^6-z^5 \\[-3pt] xz-y^2 & \underline{y^6-z^5}\\[-3pt] y^6-z^5& 0 \end{array} $$
Apparently then $f=-4z^2(x^2y^2-z^3)+(y^6-z^5)$.
Here is a program in Sage that I adopted from: http://www.math.utah.edu/~carlson/cimat/lecture1.pdf:
Results from running the above algorithm: