Analyzing the Setup
We are given two intersecting lines, x=3 and y=2, which act as boundaries on the coordinate plane. We need to place a circle of radius r=1 such that it is tangent to both lines.
For a circle with center
(h,k) to be tangent to the line
x=3, the perpendicular distance must satisfy:
∣h−3∣=1⟹h=3±1
Similarly, for the line
y=2, the condition is:
∣k−2∣=1⟹k=2±1
This yields four possible centers for the circle: (4,3), (2,3), (4,1), and (2,1).
Identifying the Optimal Circle
The problem requires the circle to be closest to the origin (0,0). We calculate the squared distance d2=h2+k2 for each candidate center:
For (4,3): d2=42+32=16+9=25
For (2,3): d2=22+32=4+9=13
For (4,1): d2=42+12=16+1=17
For (2,1): d2=22+12=4+1=5
Comparing these values, the center (2,1) results in the minimum distance to the origin. Thus, our circle C has center (2,1) and radius r=1.
Calculating the Shortest Distance
We must find the shortest distance from the point P(5,5) to the circle C. The shortest distance from an external point to a circle is found along the line segment connecting the point to the center of the circle.
First, we calculate the distance
CP between
P(5,5) and the center
C(2,1):
The shortest distance to the boundary of the circle is obtained by subtracting the radius from the total distance
CP:
Shortest Distance=CP−r=5−1=4
The final shortest distance from the point P(5,5) to the circle C is 4.