located along the $x$ axis at $x=d$ as in Figure P23.17. Find a
symbolic expression for the net force on a third point charge $+Q$
located along the $y$ axis at $y=d$.
+\begin{center}
+\begin{asy}
+import Mechanics;
+import ElectroMag;
+
+real u = 1.5cm;
+
+Charge a = pCharge((0,0), 2, L="$2Q$");
+Charge b = nCharge((u,0), -1, L="$-Q$");
+Charge c = pCharge((0,u), 1, L="$Q$");
+Distance dab = Distance(
+ a.center, b.center, offset=0.5u, scale=u, L="$d$");
+Distance dac = Distance(
+ a.center, c.center, offset=-0.5u, scale=u, L="$d$");
+draw_ijhat((0,0));
+a.draw(); b.draw(); c.draw(); dab.draw(); dac.draw();
+\end{asy}
+\end{center}
\end{problem*}
\begin{solution}