Skip to content
🚨 This site is a work in progress. Exciting updates are coming soon!

6.1 Q-4

Question Statement

We are asked to find the equation of a circle passing through specific points with given conditions. The problem is divided into the following parts:

  • Part (a): A circle passing through points A(3,βˆ’1)A(3, -1), B(0,1)B(0, 1) and touching the line 4xβˆ’3yβˆ’3=04x - 3y - 3 = 0.
  • Part (b): A circle with center C(βˆ’3,1)C(-3, 1) and radius 2, passing through the given point and satisfying the line equation 2xβˆ’3y+3=02x - 3y + 3 = 0.
  • Part (c): A circle passing through points A(5,1)A(5, 1) and tangent to the line 2xβˆ’yβˆ’10=02x - y - 10 = 0 at point B(3,βˆ’4)B(3, -4).
  • Part (d): A circle passing through points A(1,4)A(1, 4), B(βˆ’1,8)B(-1, 8) and tangent to the line x+3yβˆ’3=0x + 3y - 3 = 0.

Background and Explanation

The general equation of a circle is:

(xβˆ’h)2+(yβˆ’k)2=r2(x - h)^2 + (y - k)^2 = r^2

Where:

  • (h,k)(h, k) is the center of the circle.
  • rr is the radius of the circle.

For each part, we are given points that lie on the circle and additional conditions such as the circle being tangent to a line or passing through specific points. We will use these conditions to substitute the given points into the general circle equation, then solve the resulting system of equations to find the center and radius.


Solution

Part (a)

Given: Points A(3,βˆ’1)A(3, -1), B(0,1)B(0, 1), and the line 4xβˆ’3yβˆ’3=04x - 3y - 3 = 0 that the circle is tangent to.

  • Step 1: Start with the general equation of the circle:
(xβˆ’h)2+(yβˆ’k)2=r2(1) (x - h)^2 + (y - k)^2 = r^2 \tag{1}
  • Step 2: Substitute point A(3,βˆ’1)A(3, -1) into the equation:
(3βˆ’h)2+(βˆ’1βˆ’k)2=r2 (3 - h)^2 + (-1 - k)^2 = r^2

Expanding:

h2+k2βˆ’6h+2k+10=r2(2) h^2 + k^2 - 6h + 2k + 10 = r^2 \tag{2}
  • Step 3: Substitute point B(0,1)B(0, 1) into the equation:
(0βˆ’h)2+(1βˆ’k)2=r2 (0 - h)^2 + (1 - k)^2 = r^2

Expanding:

h2+k2βˆ’2k+1=r2(3) h^2 + k^2 - 2k + 1 = r^2 \tag{3}
  • Step 4: Since r2r^2 is the same in both equations (2) and (3), set the left-hand sides equal:
(3βˆ’h)2+(βˆ’1βˆ’k)2=(0βˆ’h)2+(1βˆ’k)2 (3 - h)^2 + (-1 - k)^2 = (0 - h)^2 + (1 - k)^2

Expanding both sides and simplifying:

βˆ’6k+4k+9=0 -6k + 4k + 9 = 0

Simplify to:

βˆ’2k+9=0β‡’k=9 -2k + 9 = 0 \quad \Rightarrow \quad k = 9
  • Step 5: Substitute k=9k = 9 into the line equation 4xβˆ’3kβˆ’3=04x - 3k - 3 = 0:
4hβˆ’3(9)βˆ’3=0 4h - 3(9) - 3 = 0

Solving for hh:

4h=30β‡’h=152 4h = 30 \quad \Rightarrow \quad h = \frac{15}{2}
  • Step 6: The center of the circle is C(152,9)C\left( \frac{15}{2}, 9 \right).

  • Step 7: To find the radius, substitute the center h=152h = \frac{15}{2} and k=9k = 9 into equation (2):

r2=(152βˆ’0)2+(0βˆ’1)2=2254+1=4814 r^2 = \left( \frac{15}{2} - 0 \right)^2 + (0 - 1)^2 = \frac{225}{4} + 1 = \frac{481}{4}

So:

r=4814 r = \frac{\sqrt{481}}{4}
  • Step 8: The equation of the circle is:
(xβˆ’152)2+(yβˆ’9)2=4814 \left( x - \frac{15}{2} \right)^2 + (y - 9)^2 = \frac{481}{4}

Expanding:

x2βˆ’154x+2254+y2βˆ’18y+81=4814 x^2 - \frac{15}{4}x + \frac{225}{4} + y^2 - 18y + 81 = \frac{481}{4}

Simplify:

x2+y2βˆ’15xβˆ’18y+17=0 x^2 + y^2 - 15x - 18y + 17 = 0

Part (b)

Given: Point A(βˆ’3,1)A(-3, 1), radius 2, and center on the line 2xβˆ’3y+3=02x - 3y + 3 = 0.

  • Step 1: Start with the general equation of the circle:
(xβˆ’h)2+(yβˆ’k)2=r2(2) (x - h)^2 + (y - k)^2 = r^2 \tag{2}
  • Step 2: Substitute point A(βˆ’3,1)A(-3, 1) into the equation:
(βˆ’3βˆ’h)2+(1βˆ’k)2=22 (-3 - h)^2 + (1 - k)^2 = 2^2

Expanding:

h2+k2+6hβˆ’2k+6=0(3) h^2 + k^2 + 6h - 2k + 6 = 0 \tag{3}
  • Step 3: Substitute the center C(h,k)C(h, k) on the line 2xβˆ’3y+3=02x - 3y + 3 = 0:
2hβˆ’3k+3=0β‡’h=3kβˆ’32(4) 2h - 3k + 3 = 0 \quad \Rightarrow \quad h = \frac{3k - 3}{2} \tag{4}
  • Step 4: Substitute equation (4) into equation (3) and solve for hh and kk. This will result in the two possible centers: C1(14,13)andC2(βˆ’2,5)C_1(14, 13) \quad \text{and} \quad C_2(-2, 5)

  • Step 5: The required equations of the circles are:

(x+13)2+(y+1)2=4and(x+3)2+(y+1)2=4 (x + 13)^2 + (y + 1)^2 = 4 \quad \text{and} \quad (x + 3)^2 + (y + 1)^2 = 4

Expanding both equations:

x2+y2+6x+2y+6=0andx2+y2+4xβˆ’10y+19=0 x^2 + y^2 + 6x + 2y + 6 = 0 \quad \text{and} \quad x^2 + y^2 + 4x - 10y + 19 = 0

Part (c)

Given: Point A(5,1)A(5, 1), tangent to the line 2xβˆ’yβˆ’10=02x - y - 10 = 0 at point B(3,βˆ’4)B(3, -4).

  • Step 1: Start with the general equation of the circle:
(xβˆ’h)2+(yβˆ’k)2=r2(1) (x - h)^2 + (y - k)^2 = r^2 \tag{1}
  • Step 2: Substitute point A(5,1)A(5, 1) into the equation:
(5βˆ’h)2+(1βˆ’k)2=r2 (5 - h)^2 + (1 - k)^2 = r^2

Expanding:

h2+k2βˆ’6h+8k+26=r2(2) h^2 + k^2 - 6h + 8k + 26 = r^2 \tag{2}
  • Step 3: Substitute point B(3,βˆ’4)B(3, -4) into the equation:
(3βˆ’h)2+(4βˆ’k)2=r2 (3 - h)^2 + (4 - k)^2 = r^2

Expanding:

h2+k2βˆ’6h+8k+25=r2(3) h^2 + k^2 - 6h + 8k + 25 = r^2 \tag{3}
  • Step 4: Set the left-hand sides of equations (2) and (3) equal and solve:
(5βˆ’h)2+(1βˆ’k)2=(3βˆ’h)2+(4βˆ’k)2 (5 - h)^2 + (1 - k)^2 = (3 - h)^2 + (4 - k)^2
  • Step 5: Use the condition of perpendicularity (slope of radius and line) to further solve for hh and kk.

  • Step 6: The center is C(βˆ’26,212)C(-26, \frac{21}{2}) and the radius is 10\sqrt{10}.

  • Step 7: The equation of the circle is:

(x+26)2+(yβˆ’212)2=42054 (x + 26)^2 + \left( y - \frac{21}{2} \right)^2 = \frac{4205}{4}

Expanding:

x2+y2+52xβˆ’21yβˆ’265=0 x^2 + y^2 + 52x - 21y - 265 = 0

Part (d)

Given: Points A(1,4)A(1, 4), B(βˆ’1,8)B(-1, 8), and tangent to the line x+3yβˆ’3=0x + 3y - 3 = 0.

  • Step 1: Start with the general equation of the circle:
(xβˆ’h)2+(yβˆ’k)2=r2 (x - h)^2 + (y - k)^2 = r^2
  • Step 2: Substitute points A(1,4)A(1, 4) and B(βˆ’1,8)B(-1, 8) into the equation and solve.

Key Formulas or Methods Used

  • General Equation of a Circle:
    (xβˆ’h)2+(yβˆ’k)2=r2(x - h)^2 + (y - k)^2 = r^2

  • Condition of Tangency:
    The radius of the circle is perpendicular to the tangent line at the point of tangency.

  • Slope of the Line:
    Using the condition of perpendicularity between the radius and the tangent line.


Summary of Steps

  1. Part (a): Substitute points into the general equation and solve for the center and radius.
  2. Part (b): Use the line condition and substitute the given points to find the circle’s equation.
  3. Part (c): Apply tangency condition and solve for center and radius.
  4. Part (d): Use the general circle equation and solve for the center and radius.