Given three circles centered at points $A$, $B$, and $C$ with non-zero radii of lengths $R_A$, $R_B$ and $R_C$. Where the centers of the circles form a valid triangle, and where the distance between any two centers is less than or equal to the sum of their corresponding radii.
Question: Is it possible to determine if all three circles intersect at a common point using a calculation simpler than first determining the pair of intersection points between two pairs of circles then determining if any of the intersection points are equal?
You can calculate the pair of intersection between, say, circles $A$ and $B$, then calculate the distance of each such intersection to circle $C$. There is a triple intersection if and only if one of the distances is $R_C$.
EDIT: Well, consider $\triangle ABC$ and suppose there is a triple intersection, that is, some point $P$ with $PA=R_A$, $PB=R_B$ and $PC=R_C$. Let $E_A$ be the side of $\triangle ABC$ opposite vertex $A$ and similarly for $B$ and $C$.
Suppose without loss of generality that $R_A\leq R_B\leq R_C$. The triangle inequality implies that the following must hold:
\begin{align} R_C-R_B\leq E_A\leq R_C+R_B\\ R_C-R_A\leq E_B\leq R_C+R_A\\ R_B-R_A\leq E_C\leq R_B+R_A \end{align}
By hypothesis, the right hand inequalities do hold, but if any of the left hand ones do not, you can already rule out the possibility of a triple intersection.
I might yet improve on this later.