Consider a typical system of equations like the following:
p x + 3 y = 0
2 x + q y = 0
Where p and q are symbols (they do not take values). I want to solve the system with a symbolic expression, for x and y, containing p and q.
I tried question How to Solve Equations with Java and How to Solve algebraic equations, but these are interested only in finding the arithmetic (not symbolic) values of x and y.
I'd like to know if there are Java packages that can handle symbolic calculation to solve such systems.