it isn't strange?!
- To: mathgroup at smc.vnet.net
- Subject: [mg116094] it isn't strange?!
- From: olfa <olfa.mraihi at yahoo.fr>
- Date: Wed, 2 Feb 2011 06:06:39 -0500 (EST)
Hi Mathematica community, here is my pb: input: Reduce[Max[a, b] == Max[c, d], c, Reals] output: (d < Max[a, b] && c == Max[a, b]) || (d == Max[a, b] && c <= Max[a, b]) when testing this output with 2 initialisations: d = 2 a = 4 b = 3 c = 6 here d < Max[4, 3] but c is not equal to Max[4, 3] d = 4 a = 4 b = 3 c = 6 here d = Max[4, 3] but c is not <= to Max[4, 3] where is the pb?!