I recently encountered an interesting issue when solving for the domain of a function in Maple using two different approaches, and I am curious about the differences in results between the following commands:
domain := solve(0 < x and x <> 2, x);
domain := solve({0 < x, x <> 2}, x);
I wonder if anyone could explain why Maple might treat these two syntaxes differently.