0
0

Coordinate Geometry (Distance, Slope, Area)

Introduction

समन्वय ज्यामिति अंकगणित और ज्यामिति को x-y plane पर बिंदु रखकर जोड़ती है। ऐसी कौशल जैसे distance between points, slope of a line, और area of a polygon (triangle) को निर्देशांकों का उपयोग करके खोजना अक्सर aptitude exams में पूछा जाता है।

यह पैटर्न ज्यामितीय प्रश्नों को सरल बीजगणितीय गणनाओं में बदलने में मदद करता है, खासकर जब आप coordinate formulas का उपयोग करते हैं।

Pattern: Coordinate Geometry (Distance, Slope, Area)

Pattern

मुख्य विचार: coordinate formulas का उपयोग करके सीधे distances, slopes, midpoints और polygon areas को बिंदु निर्देशांकों से निकालें।

Important formulas:
Distance between (x₁, y₁) and (x₂, y₂): √[(x₂ - x₁)² + (y₂ - y₁)²].
Slope of line through (x₁, y₁) and (x₂, y₂): (y₂ - y₁) / (x₂ - x₁) (vertical lineundefined).
Midpoint of segment joining (x₁, y₁) and (x₂, y₂): ((x₁ + x₂)/2, (y₁ + y₂)/2).
Area of triangle with vertices (x₁,y₁), (x₂,y₂), (x₃,y₃): ½ | x₁(y₂ - y₃) + x₂(y₃ - y₁) + x₃(y₁ - y₂) |.

Step-by-Step Example

Question

दिए गए बिंदु A(-1, 2), B(3, -2) और C(5, 4):
(a) Find the distance AB.
(b) Find the slope of BC.
(c) Find the area of triangle ABC.

Solution

  1. चरण 1: distance AB दूरी सूत्र का उपयोग करके।

    AB = √[(x₂ - x₁)² + (y₂ - y₁)²] जहाँ A(-1,2), B(3,-2)।
    अंतर निकालें: x₂ - x₁ = 3 - (-1) = 4; y₂ - y₁ = -2 - 2 = -4।
    AB = √(4² + (-4)²) = √(16 + 16) = √32 = 4√2
  2. चरण 2: BC की slope ढूँढें।

    B(3,-2), C(5,4)। Slope m = (y₂ - y₁)/(x₂ - x₁) = (4 - (-2)) / (5 - 3) = 6/2 = 3
  3. चरण 3: निर्देशांक निर्धारण (determinant) सूत्र से त्रिभुज ABC का क्षेत्रफल।

    Area = ½ | x₁(y₂ - y₃) + x₂(y₃ - y₁) + x₃(y₁ - y₂) |.
    A(-1,2), B(3,-2), C(5,4) को प्रतिस्थापित करें:
    = ½ | (-1)((-2) - 4) + 3(4 - 2) + 5(2 - (-2)) |.
    अंदर सरल करें: (-1)(-6) + 3(2) + 5(4) = 6 + 6 + 20 = 32।
    Area = ½ × |32| = 16 square units
  4. अंतिम उत्तर:

    (a) AB = 4√2.
    (b) BC की slope = 3.
    (c) ΔABC का क्षेत्रफल = 16.
  5. त्वरित जाँच:

    • दूरी अंतर समान परिमाण के थे → AB एक 4×4 के समकोण त्रिभुज की विकर्ण है → 4√2 सही है।
    • Slope 3 धनात्मक और पूर्णांक है क्योंकि C ऊपर और दाएँ है।
    • क्षेत्रफल 16 पूर्णांक है और ऊपर के निर्धारण गणित से मेल खाता है ✅

Quick Variations

1. दो बिंदुओं से रेखा का समीकरण निकालें (point-slope रूप का उपयोग करें).

2. परोक्षता (perpendicularity) जांचें: slopes m₁·m₂ = -1.

3. midpoint निकालें और उसे वृत्तों या परावर्तनों के केंद्र के रूप में प्रयोग करें.

4. >3 शीर्षों वाले बहुभुज का क्षेत्रफल: shoelace formula (त्रिभुज निर्धारक का विस्तार) का उपयोग करें.

Trick to Always Use

  • Step 1 → गलत संकेत से बचने के लिए हमेशा पहले निर्देशांकों के अंतर (x₂ - x₁, y₂ - y₁) निकालें।
  • Step 2 → slopes के लिए भिन्न को जल्दी सरल करें; vertical (undefined) या horizontal (0) के मामलों पर ध्यान दें।
  • Step 3 → क्षेत्रफल के लिए निर्धारक रूप (या shoelace) का उपयोग करें और अंतिम में absolute value लें।

Summary

Summary

Coordinate geometry के प्रश्न मुख्य सूत्र याद रखने पर सीधे बीजगणित बन जाते हैं:

  • Distance: √[(x₂ - x₁)² + (y₂ - y₁)²].
  • Slope: (y₂ - y₁)/(x₂ - x₁) (verticalundefined).
  • त्रिभुज का क्षेत्रफल: ½ | x₁(y₂ - y₃) + x₂(y₃ - y₁) + x₃(y₁ - y₂) |.
  • पहले अंतर निकालो, भिन्न जल्दी सरल करो, और हमेशा एक त्वरित सत्यापन करो।

Practice

(1/5)
1. Find the distance between the points A(2, 3) and B(7, 11).
easy
A. 8.9 units
B. 9.2 units
C. 9.4 units
D. 9.8 units

Solution

  1. Step 1: Use distance formula.

    Distance = √[(x₂ - x₁)² + (y₂ - y₁)²].
  2. Step 2: Substitute values.

    = √[(7 - 2)² + (11 - 3)²] = √[5² + 8²] = √(25 + 64) = √89.
  3. Step 3: Simplify numeric value.

    √89 ≈ 9.43.
  4. Final Answer:

    Distance = 9.4 units → Option C.
  5. Quick Check:

    Square differences 25 + 64 = 89; √89 ≈ 9.43 ✅
Hint: Subtract coordinates, square differences, add, then take square root and round neatly.
Common Mistakes: Leaving root form when numeric value is expected or rounding incorrectly.
2. Find the slope of the line joining points P(1, 2) and Q(4, 8).
easy
A. 2
B. 1.5
C. 3
D. 4

Solution

  1. Step 1: Use slope formula.

    Slope m = (y₂ - y₁)/(x₂ - x₁).
  2. Step 2: Substitute values.

    m = (8 - 2)/(4 - 1) = 6/3.
  3. Step 3: Simplify.

    m = 2.
  4. Final Answer:

    Slope = 2 → Option A.
  5. Quick Check:

    For every 3 units in x, y rises by 6 → slope 2 ✅
Hint: Subtract y’s over x’s - rise over run.
Common Mistakes: Reversing x and y or using wrong order of subtraction.
3. Find the midpoint of the line joining points A(-4, 6) and B(8, 2).
easy
A. (2, 4)
B. (3, 3)
C. (1, 5)
D. (4, 4)

Solution

  1. Step 1: Use midpoint formula.

    Midpoint = ((x₁ + x₂)/2, (y₁ + y₂)/2).
  2. Step 2: Substitute values.

    = ((-4 + 8)/2, (6 + 2)/2) = (4/2, 8/2).
  3. Step 3: Simplify.

    Midpoint = (2, 4).
  4. Final Answer:

    Midpoint = (2, 4) → Option A.
  5. Quick Check:

    Average of x’s and y’s gives midpoint ✅
Hint: Average x’s and y’s separately to get midpoint.
Common Mistakes: Adding without dividing by 2.
4. Find the area of a triangle with vertices A(1, 2), B(4, 6), and C(6, 2).
medium
A. 6 sq. units
B. 8 sq. units
C. 9 sq. units
D. 10 sq. units

Solution

  1. Step 1: Use area (determinant) formula.

    Area = ½ | x₁(y₂ - y₃) + x₂(y₃ - y₁) + x₃(y₁ - y₂) |.
  2. Step 2: Substitute values.

    = ½ | 1(6 - 2) + 4(2 - 2) + 6(2 - 6) |.
  3. Step 3: Simplify.

    = ½ | 1×4 + 0 + 6×(-4) | = ½ |4 - 24| = ½ × 20 = 10 sq. units.
  4. Final Answer:

    Area = 10 sq. units → Option D.
  5. Quick Check:

    Determinant yields 20 in absolute value; half gives 10 ✅
Hint: Use determinant (shoelace) formula and take absolute value at the end.
Common Mistakes: Forgetting to multiply by ½ or to take absolute value.
5. The coordinates of two points are A(2, -3) and B(-4, 5). Find the slope of line AB.
medium
A. −4/3
B. 4/3
C. −3/4
D. 3/4

Solution

  1. Step 1: Apply slope formula.

    Slope = (y₂ - y₁)/(x₂ - x₁).
  2. Step 2: Substitute values.

    = (5 - (-3)) / (-4 - 2) = 8 / (-6) = -4/3.
  3. Final Answer:

    Slope = -4/3 → Option A.
  4. Quick Check:

    Negative slope as x increases, y decreases ✅
Hint: Subtract y’s over x’s; keep signs careful.
Common Mistakes: Subtracting in wrong order or missing negative signs.

Mock Test

Ready for a challenge?

Take a 10-minute AI-powered test with 10 questions (Easy-Medium-Hard mix) and get instant SWOT analysis of your performance!

10 Questions
5 Minutes