Reduce[x*y > 50 && x*y < 100 && x < 100 && x > 1 && y > 1 && y < 50, {x, y}, Integers] what if I want to get the production of x*y instead of (x == 2 && y == 26) || (x == 2 && y == 27)...
Can I define a function for multiplication, then use the output of the Reduce as an input to my multiplication?
Solve:x*y /. Solve[x*y > 50 && x*y < 100 && x < 100 && x > 1 && y > 1 && y < 50, {x, y}, Integers]? $\endgroup$