I'm trying to solve the following system of equations:
gl1 = b == a - 1;
gl2 = b == 3;
Solve[{gl1, gl2}, {a}]
The solution set provided by Mathematica is empty {} - even though a -> 4 would be the correct solution.
I just reset the kernel, so I made sure that none of the variables used were already defined elsewhere.
What am I doing wrong?
Best regards Jan
Solve[{gl1, gl2}, {a}, MaxExtraConditions -> All]– cvgmt Jan 27 '24 at 08:28