Greetings everyone!
A system of four equations is given:
In: sys={c1 == x1 x3, c2 == x1 x4, c3 == x2 x3, c4 == x2 x4}
Wolfram cannot solve this system of equations:
In: Solve[sys, {x1, x2, x3, x4}]
Out: {}
In: Solve[sys, {x1, x2, x3}]]
Out: {}
However, the system has a solution for x1, x2, x3 depending on x4 under the condition
c2 c3 == c1 c4
How can I get Wolfram to find this condition and get a solution for x1, x2, x3 under this condition?