I ran the following command:
Resolve[
(Abs[ay bx - ax by - ay px + by px + ax py - bx py] < 0 &&
{ax, bx, px, ay, by, py} \[Element] Reals)
\[Implies]
Im[((ax - bx) (ax - px) + (ay - by) (ay - py) -
I Abs[ay bx - ax by - ay px + by px + ax py - bx py])/
((ax - bx)^2 + (ay - by)^2)] < 0]
However, I simply get the statement back as a result. A similar issue was found in (Resolving a logical statement), and there the problem was overcome by simplifying the statement passed to Resolve. In my case, I don't think there are any relevant simplifications.
What should I do?
Answer: use Reduce, not Resolve.