Conic Sections Exercise 11.1: Understanding Circles in Class 11 Maths

Welcome, Class 11 Maths student! In Chapter 11, "Conic Sections," you embark on an exciting journey into geometric shapes formed by the intersection of a plane and a double-napped cone. Exercise 11.1 specifically focuses on the very first conic section: the Circle. This foundational exercise will help you grasp the definition, standard equation, and various ways to determine the equation of a circle given specific conditions. Mastering these concepts is crucial as circles are omnipresent in real-world applications, from designing wheels and gears to understanding planetary orbits. By the end of this page, you will be able to confidently solve problems related to finding the equation of a circle, determining its center and radius, and tackling typical NCERT questions with a strong conceptual understanding.

What are Conic Sections? Introduction to Circles

Conic Sections
Geometric curves formed by the intersection of a plane with a double-napped right circular cone. Depending on the angle of intersection, these curves can be circles, ellipses, parabolas, or hyperbolas.
Circle
A special type of conic section where the intersecting plane is perpendicular to the axis of the cone. Geometrically, it is the locus of a point that moves in a plane such that its distance from a fixed point (the center) is always constant (the radius).
Center of a Circle
The fixed point from which all points on the circle are equidistant. Represented by coordinates (h, k).
Radius of a Circle
The constant distance from the center to any point on the circle. Represented by 'r'.

The Standard Equation of a Circle: Derivation and Understanding

Understanding the standard equation of a circle is fundamental to solving problems in Exercise 11.1. Let's consider a circle with its center at coordinates (h, k) and a radius r. If we take any arbitrary point P(x, y) on the circumference of this circle, the distance between the center C(h, k) and the point P(x, y) must always be equal to the radius r. We can use the distance formula to express this relationship.

The distance formula states that the distance d between two points (x1, y1) and (x2, y2) is d = sqrt((x2 - x1)^2 + (y2 - y1)^2). Applying this to our center C(h, k) and point P(x, y):

r = sqrt((x - h)^2 + (y - k)^2)

To eliminate the square root and obtain a more convenient form, we square both sides of the equation:

(x - h)^2 + (y - k)^2 = r^2

This is the standard equation of a circle. It is incredibly powerful because it directly tells you the center (h, k) and the radius r (by taking the square root of r^2).

Special Case: Circle with Center at the Origin
If the center of the circle is at the origin (0, 0), then h = 0 and k = 0. The equation simplifies to:

x^2 + y^2 = r^2

Recognizing these forms is key to quickly identifying the properties of a circle from its given equation or constructing its equation from given properties. Remember to pay close attention to the signs of h and k when extracting them from the equation, as (x - h) means h is positive if the term is (x - 2) and negative if the term is (x + 2) (which can be written as (x - (-2))).

Key Concepts for Solving Exercise 11.1 Problems

  • Finding Equation from Center & Radius: If you are given the center (h, k) and radius r, simply substitute these values into the standard equation (x - h)^2 + (y - k)^2 = r^2.
  • Finding Equation from Center & a Point: If you have the center (h, k) and a point (x1, y1) through which the circle passes, first use the distance formula to find the radius r = sqrt((x1 - h)^2 + (y1 - k)^2), then substitute h, k, r into the standard equation.
  • Finding Equation from Endpoints of Diameter: If given two endpoints of a diameter (x1, y1) and (x2, y2), first find the center (h, k) using the midpoint formula: h = (x1 + x2)/2 and k = (y1 + y2)/2. Then, calculate the radius r as half the distance between the two endpoints, or the distance from the center to either endpoint. Finally, use the standard equation.
  • General Equation of a Circle: While Ex 11.1 mostly uses the standard form, be aware that the general equation of a circle is x^2 + y^2 + 2gx + 2fy + c = 0. From this, the center is (-g, -f) and the radius is sqrt(g^2 + f^2 - c). You might encounter this form in later exercises or for converting standard to general form.

Worked Examples: Applying Circle Equations

  • Example 1: Find the equation of the circle with center (2, -3) and radius 4. Step 1: Identify the given values. Center (h, k) = (2, -3), so h = 2 and k = -3. Radius r = 4. Step 2: Use the standard equation of a circle: (x - h)^2 + (y - k)^2 = r^2. Step 3: Substitute the values: (x - 2)^2 + (y - (-3))^2 = 4^2. Step 4: Simplify: (x - 2)^2 + (y + 3)^2 = 16. This is the required equation of the circle.
  • Example 2: Find the equation of the circle whose center is (-1, 2) and which passes through the point (3, 5). Step 1: Identify the given center (h, k) = (-1, 2). The circle passes through (x1, y1) = (3, 5). Step 2: The radius r is the distance between the center and the point (3, 5). Use the distance formula: r = sqrt((x1 - h)^2 + (y1 - k)^2). r = sqrt((3 - (-1))^2 + (5 - 2)^2) r = sqrt((3 + 1)^2 + (3)^2) r = sqrt(4^2 + 3^2) r = sqrt(16 + 9) r = sqrt(25) r = 5. Step 3: Now we have the center (-1, 2) and radius r = 5. Substitute these into the standard equation: (x - h)^2 + (y - k)^2 = r^2. (x - (-1))^2 + (y - 2)^2 = 5^2. Step 4: Simplify: (x + 1)^2 + (y - 2)^2 = 25. This is the required equation of the circle.
  • Example 3: Find the center and radius of the circle given by the equation x^2 + y^2 - 4x + 6y - 12 = 0. Step 1: The given equation is in the general form x^2 + y^2 + 2gx + 2fy + c = 0. We need to convert it to the standard form (x - h)^2 + (y - k)^2 = r^2 by completing the square. Step 2: Group x-terms and y-terms, and move the constant to the right side: (x^2 - 4x) + (y^2 + 6y) = 12 Step 3: Complete the square for x-terms: (x^2 - 4x + (-4/2)^2) = (x^2 - 4x + 4) = (x - 2)^2. Add 4 to both sides. Complete the square for y-terms: (y^2 + 6y + (6/2)^2) = (y^2 + 6y + 9) = (y + 3)^2. Add 9 to both sides. Step 4: Rewrite the equation: (x^2 - 4x + 4) + (y^2 + 6y + 9) = 12 + 4 + 9 (x - 2)^2 + (y + 3)^2 = 25 Step 5: Compare this with (x - h)^2 + (y - k)^2 = r^2. Here, h = 2, k = -3, and r^2 = 25, so r = sqrt(25) = 5. Final answer: The center of the circle is (2, -3) and its radius is 5.

Exam Traps & Tips for Conic Sections Ex 11.1

When solving problems in Conic Sections Exercise 11.1, students often fall into a few common traps. Being aware of these can save you valuable marks:

  1. Sign Errors in Center Coordinates: Remember the standard equation is (x - h)^2 + (y - k)^2 = r^2. If you see (x + 2)^2, it's actually (x - (-2))^2, meaning h = -2, not 2. Always extract h and k carefully.
  2. Radius vs. Radius Squared: A very common mistake is to confuse r^2 with r. If the equation is (x - 1)^2 + (y - 2)^2 = 9, the radius r is sqrt(9) = 3, not 9. Always take the square root of the constant term on the right side to find the radius.
  3. Completing the Square Mistakes: When converting from the general form to the standard form, ensure you add the correct constant terms to both sides of the equation when completing the square for x and y terms.
  4. Distance Formula Calculation Errors: Double-check your calculations when using the distance formula to find the radius. Small arithmetic errors here can lead to an incorrect radius and subsequently, an incorrect equation.
  5. Understanding Diameter vs. Radius: If endpoints of a diameter are given, remember to find the midpoint for the center and then calculate the radius (which is half the diameter length, or distance from center to one endpoint).

Practice Questions with Solutions

  • Q: Find the equation of the circle with center (0, -2) and radius 3. A: Step 1: Identify the given values: Center (h, k) = (0, -2), Radius r = 3. Step 2: Use the standard equation: (x - h)^2 + (y - k)^2 = r^2. Step 3: Substitute the values: (x - 0)^2 + (y - (-2))^2 = 3^2. Step 4: Simplify: x^2 + (y + 2)^2 = 9. Final answer: The equation of the circle is x^2 + (y + 2)^2 = 9.
  • Q: Determine the center and radius of the circle given by the equation x^2 + y^2 + 8x - 10y - 8 = 0. A: Step 1: Rearrange and group x-terms and y-terms: (x^2 + 8x) + (y^2 - 10y) = 8. Step 2: Complete the square for x-terms and y-terms: For x: (x^2 + 8x + (8/2)^2) = (x^2 + 8x + 16) = (x + 4)^2. For y: (y^2 - 10y + (-10/2)^2) = (y^2 - 10y + 25) = (y - 5)^2. Step 3: Add the completed square terms to both sides of the equation: (x^2 + 8x + 16) + (y^2 - 10y + 25) = 8 + 16 + 25. (x + 4)^2 + (y - 5)^2 = 49. Step 4: Compare with the standard equation (x - h)^2 + (y - k)^2 = r^2. h = -4 (since x - (-4)), k = 5, and r^2 = 49. Step 5: Calculate the radius: r = sqrt(49) = 7. Final answer: The center of the circle is (-4, 5) and its radius is 7.
  • Q: Find the equation of the circle if the endpoints of a diameter are (2, 3) and (6, 5). A: Step 1: Find the center (h, k) using the midpoint formula for the diameter's endpoints: h = (2 + 6) / 2 = 8 / 2 = 4. k = (3 + 5) / 2 = 8 / 2 = 4. So, the center is (4, 4). Step 2: Find the radius r. It is the distance from the center (4, 4) to either endpoint, say (2, 3). r = sqrt((2 - 4)^2 + (3 - 4)^2) r = sqrt((-2)^2 + (-1)^2) r = sqrt(4 + 1) r = sqrt(5). Step 3: Use the standard equation (x - h)^2 + (y - k)^2 = r^2. Substitute h=4, k=4, and r^2=5: (x - 4)^2 + (y - 4)^2 = (sqrt(5))^2. Final answer: The equation of the circle is (x - 4)^2 + (y - 4)^2 = 5.
  • Q: A circle has its center at (1, 1) and passes through the point (4, 5). Find its equation. A: Step 1: Identify the given center (h, k) = (1, 1) and a point on the circle (x1, y1) = (4, 5). Step 2: Calculate the radius r using the distance formula between the center and the point: r = sqrt((4 - 1)^2 + (5 - 1)^2) r = sqrt((3)^2 + (4)^2) r = sqrt(9 + 16) r = sqrt(25) r = 5. Step 3: Substitute the center (1, 1) and radius r = 5 into the standard equation: (x - 1)^2 + (y - 1)^2 = 5^2. Final answer: The equation of the circle is (x - 1)^2 + (y - 1)^2 = 25.

Frequently Asked Questions

What is a conic section?

A conic section is a curve formed by the intersection of a plane with a double-napped right circular cone. Depending on the angle of the plane, it can result in a circle, ellipse, parabola, or hyperbola.

What is the standard equation of a circle and what do its components mean?

The standard equation of a circle is (x - h)^2 + (y - k)^2 = r^2. Here, (h, k) represents the coordinates of the center of the circle, and 'r' represents its radius. This equation captures the fundamental definition of a circle as a set of points equidistant from a central point.

How do I find the center and radius from the general equation of a circle?

If you have the general equation x^2 + y^2 + 2gx + 2fy + c = 0, you can find the center as (-g, -f) and the radius as sqrt(g^2 + f^2 - c). Alternatively, you can complete the square for the x and y terms to convert it into the standard form.

Why is Exercise 11.1 important for understanding conic sections?

Exercise 11.1 lays the groundwork by introducing circles, the simplest of conic sections. Mastering circles helps build intuition for the algebraic and geometric properties that extend to ellipses, parabolas, and hyperbolas, making it a crucial stepping stone in the chapter.