I am having trouble computing the area of the following polygon. I have the following polygon:
polygon = Polygon[{{0, 0}, {0, 1}, {2/10, 1}, {2/10, 8/10}, {4/10, 8/10}, {4/10, 6/10}, {1, 0}}]
The command
Region[polygon]
plots it just fine. I cannot hower compute its area using
RegionMeasure[polygon]
I get the following error
RegionMeasure::nmet: Unable to compute the measure of region Polygon[{{0,0},{0,1},{1/5,1},{1/5,4/5},{2/5,4/5},{2/5,3/5},{1,0}}]
It is not clear to me what causes this error.
EDIT: I need an exact result.
Region-related functions... – Henrik Schumacher Nov 25 '19 at 16:22Area[Region[polygon]]orRegionMeasure[Region[polygon]]. – MassDefect Nov 25 '19 at 18:13Area[Region[polygon]]andRegionMeasure[Region[polygon]]do not seem to work for me. – CookieMaster Nov 26 '19 at 08:45CloudEvaluate[Area[polygon]]in your 11.3 session. I believe it will use the most recent version in the cloud. – Greg Hurst Nov 26 '19 at 12:37