How can I solve linear equations of the following type in Maple?
$$\begin{pmatrix} 1 & 1 & 1 & 1\\ b-c & c-b & a-b &0 \\ b-d & d-a & 0 &a-b \end{pmatrix} \begin{pmatrix} x_1\\ x_2 \\ x_3\\ x_4 \end{pmatrix} =\begin{pmatrix} 0\\ 0 \\ 0 \end{pmatrix}$$
The problem is that I want to use $a,b,c,d$ as symbolic variables. It seems, Maple only can solve such an equation when $a,b,c,d$ are fixed numbers.
I don't see Maple having any problem with generating a symbolic solution to this under-determined system, using either the
LinearSolveor thesolvecommands.Unsurprisingly we get a solution with one free parameter.
The above is all in Matrix-Vector form. Equation form can also be produced straightforwardly.
Or, we could reformulate the question in terms of explicit equations, and pass those to the
solvecommand.