1. Distance Between Two Points
-
Formula: d=(x2−x1)2+(y2−y1)2
-
Example: Question: Find the distance between ((2,3)) and ((8,11)).
Solution:
d=(8−2)2+(11−3)2
=62+82
=36+64
=10
2. Midpoint of a Line Segment
-
Formula: M=(2x1+x2,2y1+y2)
-
Example: Question: Find the midpoint of ((2,4)) and ((8,10)).
Solution:
M=(22+8,24+10)
=(5,7)
3. Section Formula — Internal Division
-
Formula:
If (P) divides (A(x_1,y_1)) and (B(x_2,y_2)) in ratio (m:n),
P=(m+nmx2+nx1,m+nmy2+ny1)
-
Example: Question: Find the point dividing ((2,4)) and ((8,10)) internally in the ratio (1:2).
Solution:
x=1+21(8)+2(2)=4
y=31(10)+2(4)=6
Therefore,
P=(4,6)
4. Section Formula — External Division
-
Formula:
P=(m−nmx2−nx1,m−nmy2−ny1)
-
Example: Question: Find the point dividing ((2,4)) and ((8,10)) externally in the ratio (2:1).
Solution:
x=2−12(8)−1(2)=14
y=2−12(10)−1(4)=16
Therefore,
(14,16)
5. Slope of a Line
-
Formula:
m=x2−x1y2−y1
-
Example: Question: Find the slope of the line joining ((2,3)) and ((6,11)).
Solution:
m=6−211−3
=48
=2
6. Parallel Lines
-
Formula:
Two non-vertical lines are parallel if:
m1=m2
-
Example: Question: Are the lines joining ((1,2),(3,6)) and ((4,5),(6,9)) parallel?
Solution:
First slope:
m1=3−16−2=2
Second slope:
m2=6−49−5=2
Since:
m1=m2
Answer: Yes, the lines are parallel.
7. Perpendicular Lines
-
Formula:
m1m2=−1
-
Example: Question: Two lines have slopes (2) and (-\frac12). Are they perpendicular?
Solution:
m1m2=2(−21)=−1
Therefore,
Yes, they are perpendicular.
8. Equation of a Line Using a Point and Slope
-
Formula:
y−y1=m(x−x1)
-
Example: Question: Find the equation of the line passing through ((2,3)) with slope (4).
Solution:
y−3=4(x−2)
y−3=4x−8
y=4x−5
9. Equation of a Line Through Two Points
-
Formula:
y−y1=x2−x1y2−y1(x−x1)
-
Example: Question: Find the equation of the line passing through ((1,2)) and ((3,6)).
Solution:
First find slope:
m=3−16−2=2
Using ((1,2)):
y−2=2(x−1)
y=2x
10. Collinearity of Three Points
-
Formula:
Three points are collinear if their slopes are equal:
mAB=mBC
-
Example: Question: Determine whether ((1,2),(3,6),(5,10)) are collinear.
Solution:
mAB=3−16−2=2
mBC=5−310−6=2
Since the slopes are equal:
The points are collinear.
11. Collinearity Using Area
-
Formula:
Three points are collinear if the area of the triangle formed by them is zero.
\frac12|x_1(y_2-y_3)+x_2(y_3-y_1)+x_3(y_1-y_2)|$$ -
Example: Question: Check whether ((1,2),(3,4),(5,6)) are collinear.
Solution:
Area=21∣1(4−6)+3(6−2)+5(2−4)∣
=21∣−2+12−10∣
=0
Therefore,
The points are collinear.
12. Area of a Triangle Using Coordinates
-
Formula:
A=21∣x1(y2−y3)+x2(y3−y1)+x3(y1−y2)∣
-
Example: Question: Find the area of the triangle with vertices ((0,0),(4,0),(4,5)).
Solution:
A=21∣0(0−5)+4(5−0)+4(0−0)∣
=21(20)
=10 square units
13. Centroid of a Triangle
-
Formula:
\frac{y_1+y_2+y_3}{3}\right)$$ -
Example: Question: Find the centroid of a triangle with vertices ((1,2),(3,4),(5,0)).
Solution:
G=(31+3+5,32+4+0)
=(3,2)
14. Distance of a Point From the Origin
-
Formula:
For (P(x,y)):
OP=x2+y2
-
Example: Question: Find the distance of ((6,8)) from the origin.
Solution:
OP=62+82
=100
=10
15. Distance Between a Point and a Line
-
Formula:
For line:
ax+by+c=0
and point ((x_1,y_1)):
d=a2+b2∣ax1+by1+c∣
-
Example: Question: Find the distance of ((2,3)) from the line (3x+4y-10=0).
Solution:
d=32+42∣3(2)+4(3)−10∣
=5∣6+12−10∣
=58
58
16. Area of a Quadrilateral Using Coordinates
-
Formula:
x_1y_2+x_2y_3+x_3y_4+x_4y_1 -(y_1x_2+y_2x_3+y_3x_4+y_4x_1) \right|$$ -
Example: Question: Find the area of the quadrilateral with vertices ((0,0),(4,0),(4,3),(0,3)).
Solution:
This is a rectangle:
A=4×3
12 square units
Advanced Variants
17. Internal Division With an Unknown Ratio
-
Formula:
\frac{my_2+ny_1}{m+n}\right)$$ -
Example: Question: A point (P) divides ((2,3)) and ((8,9)) internally in the ratio (m:n). If its (x)-coordinate is (6), find the ratio.
Solution:
6=m+n8m+2n
6m+6n=8m+2n
4n=2m
m:n=2:1
Answer:
2:1
18. Finding a Missing Coordinate Using Distance
-
Formula:
d2=(x2−x1)2+(y2−y1)2
-
Example: Question: The distance between ((2,3)) and ((x,7)) is (5). Find (x).
Solution:
52=(x−2)2+(7−3)2
25=(x−2)2+16
9=(x−2)2
x−2=±3
Therefore,
x=5 or −1
19. Point Equidistant From Two Points
-
Formula:
If (P(x,y)) is equally distant from (A) and (B):
PA=PB
Compare their squared distances to avoid square roots.
-
Example: Question: Find the points on the (x)-axis that are equidistant from ((2,3)) and ((6,1)).
Solution:
Let the point be ((x,0)).
PA2=(x−2)2+9
PB2=(x−6)2+1
Equate:
(x−2)2+9=(x−6)2+1
Solving:
x=3
Therefore,
(3,0)
20. Coordinate Geometry + Ratio + Distance
-
Example: Question: A point divides the line joining (A(1,2)) and (B(7,8)) in the ratio (1:2). Find its distance from (A).
Solution:
First find the point:
P=(31(7)+2(1),31(8)+2(2))
P=(3,4)
Now:
AP=(3−1)2+(4−2)2
=4+4
=22
Premium Content
Unlock Coordinate Geometry Concepts and all premium lessons with a subscription.
From ₹199.99/year — See plans