What techniques are there for solving systems of Cubic Diophantine equations? I know there is no general purpose technique and looking at some papers it can quickly go over my head even for just a single equation. Any good resources for someone who has not worked with such equations very often and the foundations? When looking I mainly find papers which are not great for learning from or seems like a lot the other beginner resources mainly cover linear Diophantine systems which I can deal with via linear algebra, and also not what I am looking for since I am dealing with cubics.
For example I can brute force the following with a computer program I quickly wrote:
$$\left\{\!\begin{aligned} & z^3 = w^3 + x^3 - y^3 \\ & z^3 = w^3 + u^3 - v^3 \end{aligned}\right. $$
One such solution I get is:
$$ \left\{\!\begin{aligned} & 9^3 = 16^3 + 33^3 - 34^3\\ & 9^3 = 16^3 + 2^3 - 15^3 \end{aligned}\right. $$
The problem is if I start to have more variables and more equations to the system brute force becomes infeasible quickly. So some better methods to attack the problem to know if even a solutions exists and even find them would be great.
Also I notice when looking at just an equation in isolation a lot times I can find someone who has already found a parametrization of a given equation out the various systems I am messing with. I have tried combining 2 or more parametrizations, but this also seems quite hard.
For example the equations I gave as example above, I have found a paramizations for $ a^3 + b^3 = c^3 + d^3 $ which both equations in the example are a form of. Since the example is a set of simultaneous equations with repeated variables means I can I set parts of the parametrization equal to each other, but this just causes the number of variables to explode if the system has lots more equations and often again falls back to brute force unless I can rewrite the parametrization in the same variables as the other one. However, when I try this I often end up with an equation that no long gives integer solutions mainly because I end up with having cuberoots/squareroots and such. So it would seems like this method would not work.
So I guess back to my first paragraph, I am just mainly looking for information/resource and techniques for working with such systems. Ideally with the goal parametrization of the system or determining if a solution exists.
--Edited-- Individ asked for an example to work on. I guess we can use the example posted above to see what techniques one may use to maybe solve such a system. Solutions exists since I found some via brute force so at least so a parametric solution should exist I think?