Qurak

Find a point in the intersection of two regions

Example 2 steps, run in order in one session. Every step was executed against the engine and the output below is what it produced.

Step 1
{x, y} /. FindInstance[x ^ 2 - y ^ 3 ≤ 2 && x ^ 2 + (y + 2) ^ 2 ≤ 1, {x, y}]
Output
{{0, -1}}
Step 2
RegionPlot[{x ^ 2 - y ^ 3 ≤ 2, x ^ 2 + (y + 2) ^ 2 ≤ 1}, {x, -3, 3}, {y, -3, 3}, PlotStyle -> Table[Directive[Opacity[.5], Hue[t]], {t, {.3, .7}}], Epilog -> {Red, PointSize[Large], Point[{0, -5 / 4}]}]
Output
-Graphics-

Functions used

Related recipes

All recipes · Function reference · Use this from an MCP client