Impact location, using four sound sensors.

Based on timing and the speed of sound you have the length of line segments A1, B2 and C3. You want to find the point of impact in the center of the circle. Call the radius of that circle R. The distance of the impact from the four corners is 0:R, 1:A1+R, 2:B2+R, 3:C3+R. Write out the four equations and solve for the three unknowns: R, Xi and Yi (the coordinates of impact).

For example:
SQRT((Xi-X0)**2+(Yi-Y0)**2) = SQRT((Xi-X1)**2+(Yi-Y1)**2) - AI = SQRT((Xi-X2)**2+(Yi-Y2)**2) - B2 = SQRT((Xi-X3)**2+(Yi-Y3)**2) - C3 = R

You can probably just drop out the R and solve for (Xi,Yi).