In a very simple example I try to define a rectangular region
u = 1/Sqrt[2]; reg = ImplicitRegion[(-1 <= x <= 1 + u) && (-1 <= y <= 0 ) , {x, y}] RegionPlot[ reg ] Obviously the plot isn't complete.
What's wrong? Thanks!
Method -> {"DiscretizationMethod" -> "Symbolic"} work for this case.u = 1/Sqrt[2]; reg = ImplicitRegion[(-1 <= x <= 1 + u) && (-1 <= y <= 0), {x, y}] RegionPlot[reg, Method -> {"DiscretizationMethod" -> "Symbolic"}]
RegionPlotshows its argument as a predicate rather than a region. For example,RegionPlot[reg[[1]], {x, -1, 1 + u}, {y, -1, 0}]. For the region useRegion[reg, Frame -> True, AspectRatio -> 1]$\endgroup$ImplicitRegionshow several examples like\[ScriptCapitalR] =ImplicitRegion[ x^6 - 5 x^4 y + 3 x^4 y^2 + 10 x^2 y^3 + 3 x^2 y^4 - y^5 + y^6 ==0, {x, y}];RegionPlot[\[ScriptCapitalR]]$\endgroup$DiscretizeRegion[reg, Frame -> True]andRegionMeasure[reg]work correctly though. $\endgroup$RegionPlot[]back in version 11.3 - see mathematica.stackexchange.com/questions/180959/… $\endgroup$