loadPackage "EliminationMatrices"
R=QQ[a,b,c,d,x,y,z]
f1 = a*x^2+b*y^2+c*z^2+d*x*y*z
f2 = 2*a*x+d*y*z
f3 = 2*a
f4 = 2
M = matrix{{f1,f2,f3,f4}}
det(eliminationMatrix({x,y,z},M,Strategy=>macaulayFormula))
loadPackage "EliminationMatrices"
R=QQ[a_0..a_5,b_0..b_5,c_0..c_5,x,y,z]
f1 = a_0*x^2+a_1*x*y+a_2*x*z+a_3*y^2+a_4*y*z+a_5*z^2
f2 = b_0*x^2+b_1*x*y+b_2*x*z+a_3*y^2+b_4*y*z+b_5*z^2
f3 = c_0*x^2+c_1*x*y+c_2*x*z+a_3*y^2+c_4*y*z+c_5*z^2
F = matrix{{f1,f2,f3}}
det(eliminationMatrix({x,y,z},F,Strategy=>macaulayFormula))
This is an example of some of the code I ran that generated the error, I want to know if my equations are the problem or I'm not getting the code right.
Thank you very much for your reply.