Math Prize 2010 Problem 7
Source:
November 14, 2010
analytic geometry
Problem Statement
The graph of is a heart-shaped curve, shown in the figure below.
[asy]
import graph;
unitsize(10);
real f(real x)
{
return sqrt(cbrt(x^4) - 4 x^2 + 4);
}
real g(real x)
{
return (cbrt(x^2) + f(x))/2;
}
real h(real x)
{
return (cbrt(x^2) - f(x)) / 2;
}
real xmax = 1.139028;
draw(graph(g, -xmax, xmax) -- reverse(graph(h, -xmax, xmax)) -- cycle);
xaxis("", -1.5, 1.5, above = true);
yaxis("", -1.5, 1.5, above = true);
[/asy]
For how many ordered pairs of integers is the point inside or on this curve?