Given 3 spheres of radius 9 with center at the points $P = (2,1,0)$, $Q = (5,4,0)$ and $R = (3, 1, 2)$. Find the equation, $ax + by + cz = d$, of a plane tangent to the 3 spheres.
I calculated the gradients of the three spheres, I think that if we find a vector (gradient) in common to the three spheres then there is a tangent plane in that point, but I came to the conclusion that there is no normal vector at the same point of the three spheres, there is no tangent plane to the three spheres?

We have vector $PQ=(2-5,1-4, 0-0)=(-3.-3, 0)$
$ PR=92-3,1-1,0-2)=(-1, 0, -2)$
The normal of the required plane is a cross product of these two vectors. We take a point for example $P=(2, 1, 0)$ and use the following equation:
$\begin{vmatrix}x-2&y-1&x-0\\-3&-3&0\\-1&0&-2\end{vmatrix}=0$
which finally gives the equation of the plane passing three points as:
$2x-2y-z=2$
Now suppose the coordinates of a point like A at distance 9(the radius of sphere ) is $A=(x_1, y_1, z_1)$, so we must have:
$$d=9=\frac{2\cdot x_1+(-2)y_1+(-1)z_1-2}{\sqrt{2^2+(-2)^2+(-1)^2}}$$
Which finally gives:
$$2x_1-2y_1-z_1-29=0$$
This is the required equation.