How do I label a point that I add to a plot of some kind using Show[plot,Graphics[...]], from the documentation I cannot find out the correct way. I would have thought that the following would work but it produces an error:
Show[RegionPlot[x > y, {x, -2, 2}, {y, -2, 2}], Labeled[Graphics[{Red, Point[{1/6, 1/3}]}] , "a"] ] (See also this closed question: Placing a label at a point, which was judged off-topic even though it looks completely on-topic too me.)


Show[RegionPlot[x > y, {x, -2, 2}, {y, -2, 2}], Graphics[{Red, Point[{1/6, 1/3}], Black, Text["a", {1/6 - .1, 1/3}]}]]orRegionPlot[x > y, {x, -2, 2}, {y, -2, 2}, Epilog -> {Red, Point[{1/6, 1/3}], Black, Text["a", {1/6 - .1, 1/3}]}]$\endgroup$