I just noticed that if you have this in MMA (8.0.1 / win7-64):
and you copy it to SO (just ctrl-c ctrl-v), you get this:
(maxY - minY)/stepy/(maxX - minX)/stepx
which is not mathematically equivalent. It should be this:
((maxY - minY)/stepy)/((maxX - minX)/stepx)
or this (the InputForm
of the above):
((maxY - minY)*stepx)/((maxX - minX)*stepy)
It's not caused by StackOverflow's internals as the same happens with a copy to NotePad.
Are there more issues like this (especially when working with SO, but also in general) that we should be aware of?
What causes this, can it be fixed on our side, and if not, what is the best work-around?
x / y
form. This may create an unanticipated situation. – Julianjuliana