I'd like to explore the solutions of a multilinear diophantine equation like $12(yz) + 6(y+x) +2 -4xy -2(w+x) = 0$. In particular I'd like to generate instances of solutions. I tried the function solve like:
(x,y,z,w) = var('x,y,z,w')
assume(x, 'integer'); assume(y, 'integer')
assume(z, 'integer'); assume(w, 'integer')
solve([12*(y*z) + 6*(y+x) +2 -4*x*y -2*(w+x) == 0], x)
which gives me the obvious
[x == 1/2*(6*y*z - w + 3*y + 1)/(y - 1)]
I'd like to generate some actual quadruples that solve this equation or possible investigate the structure more. Is there some systematic way to do this. In particular, when playing around with coefficients, is there a test of existence of an integer solution?