Math Problem Statement

A circle passes through the point $A,$ and is tangent to the $y$-axis at the point $B,$ as shown. Find the radius of the circle.

[asy] unitsize(0.4 cm);

draw((-2,0)--(12,0)); draw((0,-2)--(0,7)); draw(Circle((1.35pi,2),1.35pi));

dot("$B = (0,5)$", (0,2), W); dot("$A = (9,0)$", (8,0), SE);

label("$x$", (12,0), NE); label("$y$", (0,7), NE); [/asy]

Solution

To find the radius of the circle, let's analyze the problem step by step. We are given:

  1. The circle passes through point A(9,0)A(9, 0).
  2. The circle is tangent to the yy-axis at B(0,5)B(0, 5).

Step 1: Center of the Circle

The circle is tangent to the yy-axis at B(0,5)B(0, 5). Since the circle is tangent to the yy-axis, the center of the circle must have coordinates (r,5)(r, 5), where rr is the radius (as the distance from the center to the tangent point is rr).

Let the center of the circle be C(r,5)C(r, 5).


Step 2: Equation of the Circle

The equation of a circle with center (h,k)(h, k) and radius rr is given by: (xh)2+(yk)2=r2.(x - h)^2 + (y - k)^2 = r^2. Substituting h=rh = r and k=5k = 5, the equation becomes: (xr)2+(y5)2=r2.(x - r)^2 + (y - 5)^2 = r^2.


Step 3: Substituting Point A(9,0)A(9, 0)

Since A(9,0)A(9, 0) lies on the circle, it satisfies the circle equation: (9r)2+(05)2=r2.(9 - r)^2 + (0 - 5)^2 = r^2.

Simplify each term: (9r)2=8118r+r2,(05)2=25.(9 - r)^2 = 81 - 18r + r^2, \quad (0 - 5)^2 = 25. Substitute these into the equation: 8118r+r2+25=r2.81 - 18r + r^2 + 25 = r^2.

Cancel r2r^2 from both sides: 8118r+25=0.81 - 18r + 25 = 0.

Combine constants: 10618r=0.106 - 18r = 0.

Solve for rr: 18r=106,r=10618=539.18r = 106, \quad r = \frac{106}{18} = \frac{53}{9}.


Final Answer:

The radius of the circle is: 539\boxed{\frac{53}{9}}

Let me know if you'd like further clarifications or have more questions! 😊


Follow-Up Questions:

  1. What is the general formula for a circle tangent to an axis?
  2. How do we find the center of a circle given a tangent condition?
  3. How do you solve for unknowns using substitution in circle equations?
  4. Can you derive the equation of a circle tangent to the xx-axis instead?
  5. How does this problem change if AA and BB were swapped?

Tip:

Always visualize the geometry and relationships in circle problems—tangency conditions often simplify complex setups!

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Geometry
Coordinate Geometry
Circles
Tangency

Formulas

Equation of a circle: (x - h)^2 + (y - k)^2 = r^2
Distance formula: d = √((x2 - x1)^2 + (y2 - y1)^2)

Theorems

Tangent to a circle theorem
Properties of points on a circle

Suitable Grade Level

Grades 9-11