I have a regionplot like the following:
m1 = 0.547;
m1p = 0.958;
m2 = 0.137;
r1 = Sqrt[m1^2 + (Sqrt[w1^2 - m2^2] + Sqrt[w2^2 - m2^2])^2] // Expand;
r2 = Sqrt[m1^2 + (Sqrt[w1^2 - m2^2] - Sqrt[w2^2 - m2^2])^2] // Expand;
RegionPlot[
m1p - w1 - w2 < Re[r1] &&
m1p - w1 - w2 > Re[r2], {w1, .1, .25}, {w2, .1, .25},
BoundaryStyle -> Blue, FrameLabel -> {"w1", "w2"}]
How can I find minimum and maximum of w1 and w2?


