Skip to main content

Geometries

Coordinate geometry provides a bridge between algebraic equations and geometric figures, enabling the use of algebraic methods to solve geometric problems and vice versa.

2D Coordinate Geometry

The Rectangular Coordinate System

In the Cartesian plane, every point PP is uniquely identified by an ordered pair (x,y)(x, y), where xx is the horizontal coordinate (abscissa) and yy is the vertical coordinate (ordinate). The axes divide the plane into four quadrants, numbered counterclockwise from the positive xx-axis.

Distance Formula

The distance between two points P1(x1,y1)P_1(x_1, y_1) and P2(x2,y2)P_2(x_2, y_2) is derived from the Pythagorean identity applied to the right triangle formed by the horizontal and vertical differences:

d=(x2x1)2+(y2y1)2\begin{aligned} d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2} \end{aligned}
Examples
  • Distance between A(3,4)A(3, 4) and B(7,1)B(7, 1): d=(73)2+(14)2=16+9=5d = \sqrt{(7-3)^2 + (1-4)^2} = \sqrt{16 + 9} = 5
  • Distance between O(0,0)O(0, 0) and P(5,12)P(5, 12): d=52+122=13d = \sqrt{5^2 + 12^2} = 13
  • Verify that the points A(0,0)A(0, 0), B(3,4)B(3, 4), C(6,8)C(6, 8) are collinear: AB=5AB = 5, BC=5BC = 5, AC=10AC = 10. Since AB+BC=ACAB + BC = AC, the points are collinear.

Midpoint Formula

The midpoint MM of the line segment joining P1(x1,y1)P_1(x_1, y_1) and P2(x2,y2)P_2(x_2, y_2) is:

M=(x1+x22,  y1+y22)\begin{aligned} M = \left( \frac{x_1 + x_2}{2},\; \frac{y_1 + y_2}{2} \right) \end{aligned}

The midpoint is the average of the respective coordinates of the two endpoints.

Examples
  • Midpoint of A(2,6)A(2, 6) and B(8,4)B(8, -4): M=(2+82,6+(4)2)=(5,1)M = \left( \frac{2+8}{2}, \frac{6+(-4)}{2} \right) = (5, 1)
  • If M(4,1)M(4, -1) is the midpoint of A(1,3)A(1, 3) and BB, then B=(2×41,2×(1)3)=(7,5)B = (2 \times 4 - 1, 2 \times (-1) - 3) = (7, -5)

Gradient (Slope)

The gradient mm of the line passing through P1(x1,y1)P_1(x_1, y_1) and P2(x2,y2)P_2(x_2, y_2), where x1x2x_1 \neq x_2, measures the rate of change of yy with respect to xx:

m=y2y1x2x1=tanθ\begin{aligned} m = \frac{y_2 - y_1}{x_2 - x_1} = \tan\theta \end{aligned}

where θ\theta is the angle the line makes with the positive xx-axis. A vertical line (where x1=x2x_1 = x_2) has an undefined gradient. Key gradient values include:

GradientInterpretation
m>0m > 0Line slopes upward from left to right
m<0m < 0Line slopes downward from left to right
m=0m = 0Horizontal line (y=cy = c)
UndefinedVertical line (x=cx = c)
Examples
  • Gradient of the line through A(1,2)A(1, 2) and B(4,8)B(4, 8): m=8241=2m = \frac{8-2}{4-1} = 2
  • A line with gradient 34\frac{3}{4} passing through (1,5)(1, 5): using yy1=m(xx1)y - y_1 = m(x - x_1), the equation is y5=34(x1)y - 5 = \frac{3}{4}(x - 1), i.e., 3x4y+17=03x - 4y + 17 = 0

Division of a Line Segment

If point P(x,y)P(x, y) divides the line segment joining A(x1,y1)A(x_1, y_1) and B(x2,y2)B(x_2, y_2) in the ratio m:nm : n (internally), then:

x=mx2+nx1m+n,y=my2+ny1m+n\begin{aligned} x = \frac{mx_2 + nx_1}{m + n}, \qquad y = \frac{my_2 + ny_1}{m + n} \end{aligned}

The midpoint formula is the special case where m=n=1m = n = 1.

Equations of Straight Lines

A straight line in the Cartesian plane can be expressed in several equivalent forms.

Slope-Intercept Form

y=mx+c\begin{aligned} y = mx + c \end{aligned}

where mm is the gradient and cc is the yy-intercept. This form is most useful when the gradient and yy-intercept are known or can be easily determined.

Point-Slope Form

Given a point (x1,y1)(x_1, y_1) on the line and the gradient mm:

yy1=m(xx1)\begin{aligned} y - y_1 = m(x - x_1) \end{aligned}

This is the most versatile form for deriving the equation of a line from partial information.

Two-Point Form

Given two distinct points (x1,y1)(x_1, y_1) and (x2,y2)(x_2, y_2) on the line:

yy1xx1=y2y1x2x1\begin{aligned} \frac{y - y_1}{x - x_1} = \frac{y_2 - y_1}{x_2 - x_1} \end{aligned}

Intercept Form

If the line has xx-intercept aa and yy-intercept bb (both non-zero):

xa+yb=1\begin{aligned} \frac{x}{a} + \frac{y}{b} = 1 \end{aligned}

General Form

Every straight line can be written in the general form:

Ax+By+C=0\begin{aligned} Ax + By + C = 0 \end{aligned}

where AA, BB, CC are constants and AA and BB are not both zero. The gradient is m=ABm = -\frac{A}{B} and the yy-intercept is c=CBc = -\frac{C}{B} (when B0B \neq 0).

Examples
  • Find the equation of the line through (2,3)(2, 3) and (6,1)(6, -1): m=1362=1m = \frac{-1 - 3}{6 - 2} = -1. Equation: y3=1(x2)y - 3 = -1(x - 2), i.e., x+y5=0x + y - 5 = 0
  • Find the equation of the line with gradient 12\frac{1}{2} and yy-intercept 3-3: y=12x3y = \frac{1}{2}x - 3, i.e., x2y6=0x - 2y - 6 = 0
  • Convert 3x+4y12=03x + 4y - 12 = 0 to intercept form: x4+y3=1\frac{x}{4} + \frac{y}{3} = 1. The xx-intercept is 44 and the yy-intercept is 33.

Parallel and Perpendicular Lines

Parallel Lines

Two non-vertical lines with gradients m1m_1 and m2m_2 are parallel if and only if their gradients are equal:

m1=m2\begin{aligned} m_1 = m_2 \end{aligned}

In the general form Ax+By+C=0Ax + By + C = 0, two lines A1x+B1y+C1=0A_1x + B_1y + C_1 = 0 and A2x+B2y+C2=0A_2x + B_2y + C_2 = 0 are parallel if and only if:

A1A2=B1B2C1C2\begin{aligned} \frac{A_1}{A_2} = \frac{B_1}{B_2} \neq \frac{C_1}{C_2} \end{aligned}

If all three ratios are equal, the lines are coincident (the same line).

Perpendicular Lines

Two non-vertical lines with gradients m1m_1 and m2m_2 are perpendicular if and only if the product of their gradients equals 1-1:

m1m2=1\begin{aligned} m_1 \cdot m_2 = -1 \end{aligned}

In the general form, two lines are perpendicular if and only if:

A1A2+B1B2=0\begin{aligned} A_1 A_2 + B_1 B_2 = 0 \end{aligned}
Examples
  • Find the equation of the line through (1,2)(1, -2) parallel to 2x3y+5=02x - 3y + 5 = 0: The gradient of the given line is m=23m = \frac{2}{3}. The parallel line is y+2=23(x1)y + 2 = \frac{2}{3}(x - 1), i.e., 2x3y8=02x - 3y - 8 = 0.
  • Find the equation of the line through (3,1)(3, 1) perpendicular to 4x+y7=04x + y - 7 = 0: The gradient of the given line is m1=4m_1 = -4, so m2=14m_2 = \frac{1}{4}. The perpendicular line is y1=14(x3)y - 1 = \frac{1}{4}(x - 3), i.e., x4y+1=0x - 4y + 1 = 0.
  • Determine whether 3x+2y1=03x + 2y - 1 = 0 and 6x+4y+5=06x + 4y + 5 = 0 are parallel: Since 36=24=1215\frac{3}{6} = \frac{2}{4} = \frac{1}{2} \neq \frac{-1}{5}, the lines are parallel but not coincident.

Intersection of Two Lines

The point of intersection of two non-parallel lines A1x+B1y+C1=0A_1x + B_1y + C_1 = 0 and A2x+B2y+C2=0A_2x + B_2y + C_2 = 0 is found by solving the system simultaneously. The coordinates (x,y)(x, y) of the intersection satisfy both equations.

Examples
  • Find the intersection of x+y=5x + y = 5 and 2xy=12x - y = 1: Adding gives 3x=63x = 6, so x=2x = 2, y=3y = 3. The intersection is (2,3)(2, 3).

Circles

Standard Form of the Equation of a Circle

A circle with centre C(a,b)C(a, b) and radius rr has equation:

(xa)2+(yb)2=r2\begin{aligned} (x - a)^2 + (y - b)^2 = r^2 \end{aligned}

Expanding this yields the general form:

x2+y22ax2by+(a2+b2r2)=0\begin{aligned} x^2 + y^2 - 2ax - 2by + (a^2 + b^2 - r^2) = 0 \end{aligned}

General Form of the Equation of a Circle

x2+y2+Dx+Ey+F=0\begin{aligned} x^2 + y^2 + Dx + Ey + F = 0 \end{aligned}

where the centre is (D2,E2)\left(-\frac{D}{2}, -\frac{E}{2}\right) and the radius is:

r=(D2)2+(E2)2F\begin{aligned} r = \sqrt{\left(\frac{D}{2}\right)^2 + \left(\frac{E}{2}\right)^2 - F} \end{aligned}

For a real circle to exist, we require (D2)2+(E2)2F>0\left(\frac{D}{2}\right)^2 + \left(\frac{E}{2}\right)^2 - F > 0.

Examples
  • Find the centre and radius of x2+y26x+4y12=0x^2 + y^2 - 6x + 4y - 12 = 0: Completing squares, (x3)2+(y+2)2=25(x-3)^2 + (y+2)^2 = 25. Centre (3,2)(3, -2), radius 55.
  • Find the equation of the circle with centre (1,4)(-1, 4) and radius 33: (x+1)2+(y4)2=9(x+1)^2 + (y-4)^2 = 9.
  • Find the equation of the circle with diameter endpoints A(2,3)A(2, 3) and B(8,7)B(8, 7): Centre is M(5,5)M(5, 5), radius is 12(82)2+(73)2=1252=13\frac{1}{2}\sqrt{(8-2)^2 + (7-3)^2} = \frac{1}{2}\sqrt{52} = \sqrt{13}. Equation: (x5)2+(y5)2=13(x-5)^2 + (y-5)^2 = 13.

Finding the Equation of a Circle from Conditions

The equation of a circle can be determined when given:

  • The centre and the radius (direct substitution)
  • The centre and a point on the circle (use the distance formula to find rr)
  • Three points on the circle (solve the general form system)
  • The endpoints of a diameter (centre is the midpoint, radius is half the distance)

Intersection of a Line and a Circle

To find the points of intersection of the line y=mx+cy = mx + c and the circle (xa)2+(yb)2=r2(x-a)^2 + (y-b)^2 = r^2, substitute the line equation into the circle equation to obtain a quadratic in xx (or yy). The discriminant Δ=b24ac\Delta = b^2 - 4ac determines the nature of intersection:

DiscriminantIntersection
Δ>0\Delta > 0Two distinct points (secant)
Δ=0\Delta = 0One point (tangent)
Δ<0\Delta < 0No real intersection

Tangent to a Circle

A tangent to a circle at a point P(x1,y1)P(x_1, y_1) on the circle (xa)2+(yb)2=r2(x-a)^2 + (y-b)^2 = r^2 is perpendicular to the radius at PP. The gradient of the radius CPCP (where CC is the centre) is:

mradius=y1bx1a\begin{aligned} m_{\mathrm{radius}} = \frac{y_1 - b}{x_1 - a} \end{aligned}

Therefore the gradient of the tangent is:

mtangent=x1ay1b(y1b)\begin{aligned} m_{\mathrm{tangent}} = -\frac{x_1 - a}{y_1 - b} \quad (y_1 \neq b) \end{aligned}

The equation of the tangent at P(x1,y1)P(x_1, y_1) on the circle x2+y2+Dx+Ey+F=0x^2 + y^2 + Dx + Ey + F = 0 can be obtained by replacing:

x2xx1,y2yy1,xx+x12,yy+y12\begin{aligned} x^2 \to xx_1, \quad y^2 \to yy_1, \quad x \to \frac{x + x_1}{2}, \quad y \to \frac{y + y_1}{2} \end{aligned}

This gives:

xx1+yy1+D(x+x1)2+E(y+y1)2+F=0\begin{aligned} xx_1 + yy_1 + \frac{D(x + x_1)}{2} + \frac{E(y + y_1)}{2} + F = 0 \end{aligned}
Examples
  • Find the equation of the tangent to x2+y2=25x^2 + y^2 = 25 at P(3,4)P(3, 4): The radius gradient is 43\frac{4}{3}, so the tangent gradient is 34-\frac{3}{4}. Equation: y4=34(x3)y - 4 = -\frac{3}{4}(x - 3), i.e., 3x+4y25=03x + 4y - 25 = 0. Alternatively, using the formula: 3x+4y=253x + 4y = 25.
  • Determine whether the line 3x4y+10=03x - 4y + 10 = 0 is tangent to (x1)2+(y+2)2=9(x-1)^2 + (y+2)^2 = 9: Substitute y=3x+104y = \frac{3x+10}{4} into the circle. The resulting quadratic has discriminant Δ=0\Delta = 0, confirming tangency.

2D Measurements

Triangles

For a triangle with base bb and height hh:

Area=12bh\begin{aligned} \mathrm{Area} &= \frac{1}{2}bh \end{aligned}

Using the Heron's formula) for a triangle with side lengths aa, bb, cc and semi-perimeter s=a+b+c2s = \frac{a+b+c}{2}:

Area=s(sa)(sb)(sc)\begin{aligned} \mathrm{Area} = \sqrt{s(s-a)(s-b)(s-c)} \end{aligned}

The area of a triangle with vertices (x1,y1)(x_1, y_1), (x2,y2)(x_2, y_2), (x3,y3)(x_3, y_3) is given by:

Area=12x1(y2y3)+x2(y3y1)+x3(y1y2)\begin{aligned} \mathrm{Area} = \frac{1}{2}\left| x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2) \right| \end{aligned}

Quadrilaterals

FigureAreaPerimeter
Rectangle (l×wl \times w)lwlw2(l+w)2(l+w)
Parallelogram (bb, hh)bhbh2(a+b)2(a+b)
Rhombus (diagonals d1d_1, d2d_2)12d1d2\frac{1}{2}d_1 d_24s4s
Trapezium (parallel sides aa, bb; height hh)12(a+b)h\frac{1}{2}(a+b)hSum of all sides
Square (side ss)s2s^24s4s

Circles

Circumference=2πr=πdArea=πr2\begin{aligned} \mathrm{Circumference} &= 2\pi r = \pi d \\ \mathrm{Area} &= \pi r^2 \end{aligned}

where rr is the radius and d=2rd = 2r is the diameter.

Arcs and Sectors

For an arc subtending an angle θ\theta (in radians) at the centre of a circle of radius rr:

Arclength=l=rθAreaofsector=A=12r2θ\begin{aligned} \mathrm{Arc length} &= l = r\theta \\ \mathrm{Area of sector} &= A = \frac{1}{2}r^2\theta \end{aligned}

When the angle is given in degrees (θ\theta^\circ), first convert to radians: θ=θ×π180\theta = \theta^\circ \times \frac{\pi}{180}.

The area of a segment (the region between a chord and the corresponding arc) is:

Areaofsegment=12r2(θsinθ)\begin{aligned} \mathrm{Area of segment} = \frac{1}{2}r^2(\theta - \sin\theta) \end{aligned}
Examples
  • Find the area and perimeter of a sector of radius 7cm7\mathrm{ cm} with angle 120120^\circ: θ=2π3\theta = \frac{2\pi}{3} rad. Area =12(49)(2π3)=49π351.3cm2= \frac{1}{2}(49)\left(\frac{2\pi}{3}\right) = \frac{49\pi}{3} \approx 51.3\mathrm{ cm}^2. Arc length =7×2π3=14π314.7cm= 7 \times \frac{2\pi}{3} = \frac{14\pi}{3} \approx 14.7\mathrm{ cm}. Perimeter =14+14π328.7cm= 14 + \frac{14\pi}{3} \approx 28.7\mathrm{ cm}.
  • A chord of length 8cm8\mathrm{ cm} subtends an angle of 9090^\circ at the centre. Find the area of the minor segment: r=82=42cmr = \frac{8}{\sqrt{2}} = 4\sqrt{2}\mathrm{ cm}, θ=π2\theta = \frac{\pi}{2}. Area =12(32)(π21)=16(π21)=8π169.13cm2= \frac{1}{2}(32)\left(\frac{\pi}{2} - 1\right) = 16\left(\frac{\pi}{2} - 1\right) = 8\pi - 16 \approx 9.13\mathrm{ cm}^2.

3D Geometry

The 3D Coordinate System

In three-dimensional space, each point is identified by an ordered triple (x,y,z)(x, y, z). The three coordinate axes --- xx-axis, yy-axis, and zz-axis --- are mutually perpendicular and intersect at the origin O(0,0,0)O(0, 0, 0). The three planes xyxy-plane, yzyz-plane, and zxzx-plane divide the space into eight octants.

Distance Formula in 3D

The distance between two points P1(x1,y1,z1)P_1(x_1, y_1, z_1) and P2(x2,y2,z2)P_2(x_2, y_2, z_2) in 3D space is:

d=(x2x1)2+(y2y1)2+(z2z1)2\begin{aligned} d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2 + (z_2 - z_1)^2} \end{aligned}

The midpoint of the segment P1P2P_1P_2 is:

M=(x1+x22,  y1+y22,  z1+z22)\begin{aligned} M = \left( \frac{x_1 + x_2}{2},\; \frac{y_1 + y_2}{2},\; \frac{z_1 + z_2}{2} \right) \end{aligned}
Examples
  • Distance between A(1,2,3)A(1, 2, 3) and B(4,6,3)B(4, 6, -3): d=32+42+(6)2=9+16+36=61d = \sqrt{3^2 + 4^2 + (-6)^2} = \sqrt{9 + 16 + 36} = \sqrt{61}
  • Show that A(0,0,0)A(0, 0, 0), B(1,0,0)B(1, 0, 0), C(0,1,0)C(0, 1, 0), D(0,0,1)D(0, 0, 1) form a trirectangular tetrahedron: AB=AC=AD=1AB = AC = AD = 1 (edges from the origin) and BC=BD=CD=2BC = BD = CD = \sqrt{2} (edges of the base triangle BCDBCD). It is not a regular tetrahedron — a regular tetrahedron would require all six edges to be equal. For a regular tetrahedron, use vertices such as (1,1,1)(1,1,1), (1,1,1)(1,-1,-1), (1,1,1)(-1,1,-1), (1,1,1)(-1,-1,1).

Equation of a Plane

The general equation of a plane in 3D is:

Ax+By+Cz+D=0\begin{aligned} Ax + By + Cz + D = 0 \end{aligned}

where the vector {n}=(A,B,C)\mathbf{'\{'}n{'\}'} = (A, B, C) is a normal vector to the plane. The plane can also be described in several forms:

  • Point-normal form: Given a point P0(x0,y0,z0)P_0(x_0, y_0, z_0) on the plane and normal {n}=(A,B,C)\mathbf{'\{'}n{'\}'} = (A, B, C):
A(xx0)+B(yy0)+C(zz0)=0\begin{aligned} A(x - x_0) + B(y - y_0) + C(z - z_0) = 0 \end{aligned}
  • Intercept form: If the plane has xx-intercept aa, yy-intercept bb, and zz-intercept cc (all non-zero):
xa+yb+zc=1\begin{aligned} \frac{x}{a} + \frac{y}{b} + \frac{z}{c} = 1 \end{aligned}

Angles Between Lines and Planes

Angle Between a Line and a Plane

The angle ϕ\phi between a line with direction vector {d}=(l,m,n)\mathbf{'\{'}d{'\}'} = (l, m, n) and a plane with normal {n}=(A,B,C)\mathbf{'\{'}n{'\}'} = (A, B, C) is defined as the complement of the angle between {d}\mathbf{'\{'}d{'\}'} and {n}\mathbf{'\{'}n{'\}'}:

sinϕ=Al+Bm+CnA2+B2+C2l2+m2+n2\begin{aligned} \sin\phi = \frac{|Al + Bm + Cn|}{\sqrt{A^2 + B^2 + C^2}\sqrt{l^2 + m^2 + n^2}} \end{aligned}

Angle Between Two Planes

The angle θ\theta between two planes with normals {n1}=(A1,B1,C1)\mathbf{'\{'}n_1{'\}'} = (A_1, B_1, C_1) and {n2}=(A2,B2,C2)\mathbf{'\{'}n_2{'\}'} = (A_2, B_2, C_2) is:

cosθ=A1A2+B1B2+C1C2A12+B12+C12A22+B22+C22\begin{aligned} \cos\theta = \frac{|A_1 A_2 + B_1 B_2 + C_1 C_2|}{\sqrt{A_1^2 + B_1^2 + C_1^2}\sqrt{A_2^2 + B_2^2 + C_2^2}} \end{aligned}

Angle Between Two Lines in 3D

For two lines with direction vectors {d1}=(l1,m1,n1)\mathbf{'\{'}d_1{'\}'} = (l_1, m_1, n_1) and {d2}=(l2,m2,n2)\mathbf{'\{'}d_2{'\}'} = (l_2, m_2, n_2):

cosθ=l1l2+m1m2+n1n2l12+m12+n12l22+m22+n22\begin{aligned} \cos\theta = \frac{|l_1 l_2 + m_1 m_2 + n_1 n_2|}{\sqrt{l_1^2 + m_1^2 + n_1^2}\sqrt{l_2^2 + m_2^2 + n_2^2}} \end{aligned}

Distance from a Point to a Plane

The perpendicular distance from point P(x0,y0,z0)P(x_0, y_0, z_0) to the plane Ax+By+Cz+D=0Ax + By + Cz + D = 0 is:

d=Ax0+By0+Cz0+DA2+B2+C2\begin{aligned} d = \frac{|Ax_0 + By_0 + Cz_0 + D|}{\sqrt{A^2 + B^2 + C^2}} \end{aligned}
Examples
  • Find the distance from P(1,2,1)P(1, 2, -1) to the plane 2xy+2z+3=02x - y + 2z + 3 = 0: d=2(1)1(2)+2(1)+34+1+4=222+33=13d = \frac{|2(1) - 1(2) + 2(-1) + 3|}{\sqrt{4 + 1 + 4}} = \frac{|2 - 2 - 2 + 3|}{3} = \frac{1}{3}.
  • Find the angle between the planes x+y+z=1x + y + z = 1 and 2xy+z=02x - y + z = 0: cosθ=12+1(1)+1136=232=23\cos\theta = \frac{|1\cdot 2 + 1\cdot(-1) + 1\cdot 1|}{\sqrt{3}\sqrt{6}} = \frac{2}{3\sqrt{2}} = \frac{\sqrt{2}}{3}. So θ=arccos(23)61.9\theta = \arccos\left(\frac{\sqrt{2}}{3}\right) \approx 61.9^\circ.
  • Find the equation of the plane through (1,0,2)(1, 0, 2), (0,1,1)(0, 1, -1), and (2,1,1)(2, 1, 1): direction vectors AB=(1,1,3)\overrightarrow{AB} = (-1, 1, -3) and AC=(1,1,1)\overrightarrow{AC} = (1, 1, -1). Cross product: AB×AC=(2,4,2)\overrightarrow{AB} \times \overrightarrow{AC} = (2, -4, -2), so normal {n}=(1,2,1)\mathbf{'\{'}n{'\}'} = (1, -2, -1). The plane is x2yz=1x - 2y - z = -1.

Wrap-up Questions
  1. Question: Find the equation of the perpendicular bisector of the line segment joining A(3,1)A(3, -1) and B(7,5)B(7, 5).
Answer
  • Midpoint: M=(3+72,1+52)=(5,2)M = \left(\frac{3+7}{2}, \frac{-1+5}{2}\right) = (5, 2).
  • Gradient of ABAB: mAB=5(1)73=32m_{AB} = \frac{5 - (-1)}{7 - 3} = \frac{3}{2}.
  • Gradient of perpendicular bisector: m=23m = -\frac{2}{3}.
  • Equation: y2=23(x5)y - 2 = -\frac{2}{3}(x - 5), i.e., 2x+3y16=02x + 3y - 16 = 0.
  1. Question: Find the equation of the circle passing through the three points A(0,0)A(0, 0), B(4,0)B(4, 0), and C(0,3)C(0, 3).
Answer
  • Let the circle be x2+y2+Dx+Ey+F=0x^2 + y^2 + Dx + Ey + F = 0.
  • Substituting A(0,0)A(0,0): F=0F = 0.
  • Substituting B(4,0)B(4,0): 16+4D=0    D=416 + 4D = 0 \implies D = -4.
  • Substituting C(0,3)C(0,3): 9+3E=0    E=39 + 3E = 0 \implies E = -3.
  • Equation: x2+y24x3y=0x^2 + y^2 - 4x - 3y = 0, i.e., (x2)2+(y32)2=254(x-2)^2 + \left(y - \frac{3}{2}\right)^2 = \frac{25}{4}.
  • Centre (2,32)\left(2, \frac{3}{2}\right), radius 52\frac{5}{2}.
  1. Question: The line y=2x+ky = 2x + k is tangent to the circle x2+y24x2y+1=0x^2 + y^2 - 4x - 2y + 1 = 0. Find the value(s) of kk.
Answer
  • Substitute y=2x+ky = 2x + k into (x2)2+(y1)2=4(x-2)^2 + (y-1)^2 = 4:
  • (x2)2+(2x+k1)2=4(x-2)^2 + (2x + k - 1)^2 = 4.
  • Expanding: x24x+4+4x2+4(k1)x+(k1)2=4x^2 - 4x + 4 + 4x^2 + 4(k-1)x + (k-1)^2 = 4.
  • 5x2+(4k8)x+(k22k+1)=05x^2 + (4k - 8)x + (k^2 - 2k + 1) = 0.
  • For tangency, Δ=0\Delta = 0: (4k8)24(5)(k22k+1)=0(4k-8)^2 - 4(5)(k^2 - 2k + 1) = 0.
  • 16k264k+6420k2+40k20=016k^2 - 64k + 64 - 20k^2 + 40k - 20 = 0.
  • 4k224k+44=0    k2+6k11=0-4k^2 - 24k + 44 = 0 \implies k^2 + 6k - 11 = 0.
  • k=6±36+442=3±14k = \frac{-6 \pm \sqrt{36 + 44}}{2} = -3 \pm \sqrt{14}.
  1. Question: A sector of a circle of radius 12cm12\mathrm{ cm} has an arc length of 16πcm16\pi\mathrm{ cm}. Find the area of the sector and the area of the corresponding segment if the chord length is 20cm20\mathrm{ cm}.
Answer
  • Arc length l=rθl = r\theta: 16π=12θ    θ=4π316\pi = 12\theta \implies \theta = \frac{4\pi}{3} rad.
  • Area of sector: A=12r2θ=12(144)(4π3)=96πcm2A = \frac{1}{2}r^2\theta = \frac{1}{2}(144)\left(\frac{4\pi}{3}\right) = 96\pi \mathrm{ cm}^2.
  • Area of triangle formed by the radii and chord: Using the chord length c=20c = 20, the triangle has sides 1212, 1212, 2020. Semi-perimeter s=22s = 22. By Heron's formula: Area =22×10×10×2=4400=2011cm2= \sqrt{22 \times 10 \times 10 \times 2} = \sqrt{4400} = 20\sqrt{11} \mathrm{ cm}^2.
  • Alternatively, the perpendicular from centre to chord: h=122102=211h = \sqrt{12^2 - 10^2} = 2\sqrt{11}. Triangle area =12×20×211=2011= \frac{1}{2} \times 20 \times 2\sqrt{11} = 20\sqrt{11}.
  • Area of segment =96π2011247.3cm2= 96\pi - 20\sqrt{11} \approx 247.3 \mathrm{ cm}^2.
  1. Question: Find the angle between the line joining A(1,2,3)A(1, 2, 3) and B(4,5,6)B(4, 5, 6) and the plane x+y+z=1x + y + z = 1.
Answer
  • Direction vector of the line: {d}=(41,52,63)=(3,3,3)\mathbf{'\{'}d{'\}'} = (4-1, 5-2, 6-3) = (3, 3, 3), simplified to (1,1,1)(1, 1, 1).
  • Normal of the plane: {n}=(1,1,1)\mathbf{'\{'}n{'\}'} = (1, 1, 1).
  • The angle α\alpha between {d}\mathbf{'\{'}d{'\}'} and {n}\mathbf{'\{'}n{'\}'}: cosα=1+1+133=33=1\cos\alpha = \frac{|1+1+1|}{\sqrt{3}\sqrt{3}} = \frac{3}{3} = 1, so α=0\alpha = 0^\circ.
  • The angle ϕ\phi between the line and the plane is the complement: ϕ=900=90\phi = 90^\circ - 0^\circ = 90^\circ.
  • The line is parallel to the plane (perpendicular to the normal).
  1. Question: Points A(1,2)A(1, 2), B(4,6)B(4, 6), and C(7,4)C(7, 4) are vertices of a triangle. Find the equation of the altitude from AA to BCBC, the area of triangle ABCABC, and the length of the altitude from AA.
Answer
  • Gradient of BCBC: mBC=4674=23m_{BC} = \frac{4-6}{7-4} = -\frac{2}{3}.
  • Gradient of altitude from AA: m=32m = \frac{3}{2} (negative reciprocal).
  • Equation of altitude: y2=32(x1)y - 2 = \frac{3}{2}(x - 1), i.e., 3x2y+1=03x - 2y + 1 = 0.
  • Area of ABC\triangle ABC: 121(64)+4(42)+7(26)=122+828=12(18)=9\frac{1}{2}|1(6-4) + 4(4-2) + 7(2-6)| = \frac{1}{2}|2 + 8 - 28| = \frac{1}{2}(18) = 9 square units.
  • Length of BCBC: (74)2+(46)2=9+4=13\sqrt{(7-4)^2 + (4-6)^2} = \sqrt{9 + 4} = \sqrt{13}.
  • Altitude from AA: 2×AreaBC=1813=181313\frac{2 \times \mathrm{Area}}{BC} = \frac{18}{\sqrt{13}} = \frac{18\sqrt{13}}{13}.
  1. Question: Find the equation of the circle which touches the xx-axis at (3,0)(3, 0) and passes through (1,4)(1, 4).
Answer
  • Since the circle touches the xx-axis at (3,0)(3, 0), the centre lies on the vertical line x=3x = 3, so the centre is C(3,r)C(3, r) where rr is the radius.
  • The circle equation is (x3)2+(yr)2=r2(x-3)^2 + (y-r)^2 = r^2.
  • Substituting (1,4)(1, 4): (13)2+(4r)2=r2(1-3)^2 + (4-r)^2 = r^2.
  • 4+168r+r2=r2    208r=0    r=524 + 16 - 8r + r^2 = r^2 \implies 20 - 8r = 0 \implies r = \frac{5}{2}.
  • Centre: (3,52)(3, \frac{5}{2}), radius: 52\frac{5}{2}.
  • Equation: (x3)2+(y52)2=254(x-3)^2 + \left(y - \frac{5}{2}\right)^2 = \frac{25}{4}, i.e., x2+y26x5y+9=0x^2 + y^2 - 6x - 5y + 9 = 0.
  1. Question: The vertices of a triangle are A(2,1,1)A(2, 1, -1), B(0,3,4)B(0, 3, -4), and C(5,0,2)C(5, 0, 2). Find (a) the length of each side, (b) the area of the triangle, and (c) the equation of the plane containing the triangle.
Answer
  • (a) Side lengths:
    • AB=(02)2+(31)2+(4+1)2=4+4+9=17AB = \sqrt{(0-2)^2 + (3-1)^2 + (-4+1)^2} = \sqrt{4 + 4 + 9} = \sqrt{17}
    • BC=(50)2+(03)2+(2+4)2=25+9+36=70BC = \sqrt{(5-0)^2 + (0-3)^2 + (2+4)^2} = \sqrt{25 + 9 + 36} = \sqrt{70}
    • CA=(25)2+(10)2+(12)2=9+1+9=19CA = \sqrt{(2-5)^2 + (1-0)^2 + (-1-2)^2} = \sqrt{9 + 1 + 9} = \sqrt{19}
  • (b) Using the cross product method: AB=(2,2,3)\overrightarrow{AB} = (-2, 2, -3), AC=(3,1,3)\overrightarrow{AC} = (3, -1, 3).
    • AB×AC=(23(3)(1),  (3)3(2)3,  (2)(1)23)=(3,3,4)\overrightarrow{AB} \times \overrightarrow{AC} = (2 \cdot 3 - (-3)(-1),\; (-3) \cdot 3 - (-2) \cdot 3,\; (-2)(-1) - 2 \cdot 3) = (3, -3, -4).
    • Area =12AB×AC=129+9+16=342= \frac{1}{2}|\overrightarrow{AB} \times \overrightarrow{AC}| = \frac{1}{2}\sqrt{9 + 9 + 16} = \frac{\sqrt{34}}{2}.
  • (c) The normal vector is (3,3,4)(3, -3, -4). Using point A(2,1,1)A(2, 1, -1): 3(x2)3(y1)4(z+1)=03(x-2) - 3(y-1) - 4(z+1) = 0, i.e., 3x3y4z8=03x - 3y - 4z - 8 = 0.
  1. Question: Two circles C1:x2+y24x+2y4=0C_1: x^2 + y^2 - 4x + 2y - 4 = 0 and C2:x2+y2+2x6y+6=0C_2: x^2 + y^2 + 2x - 6y + 6 = 0 intersect at points AA and BB. Find the equation of the common chord ABAB and the coordinates of AA and BB.
Answer
  • Common chord: Subtract the two equations: (4x+2y4)(2x6y+6)=0(-4x + 2y - 4) - (2x - 6y + 6) = 0.
  • 6x+8y10=0-6x + 8y - 10 = 0, i.e., 3x4y+5=03x - 4y + 5 = 0.
  • From C1C_1: (x2)2+(y+1)2=9(x-2)^2 + (y+1)^2 = 9. Substitute y=3x+54y = \frac{3x+5}{4}:
  • (x2)2+(3x+54+1)2=9(x-2)^2 + \left(\frac{3x+5}{4} + 1\right)^2 = 9.
  • (x2)2+(3x+94)2=9(x-2)^2 + \left(\frac{3x+9}{4}\right)^2 = 9.
  • Multiply by 1616: 16(x2)2+(3x+9)2=14416(x-2)^2 + (3x+9)^2 = 144.
  • 16(x24x+4)+9x2+54x+81=14416(x^2 - 4x + 4) + 9x^2 + 54x + 81 = 144.
  • 25x210x+145=14425x^2 - 10x + 145 = 144.
  • 25x210x+1=025x^2 - 10x + 1 = 0.
  • Discriminant =100100=0= 100 - 100 = 0, so the circles are tangent (touch at exactly one point).
  • x=1050=15x = \frac{10}{50} = \frac{1}{5}, y=3(1/5)+54=2820=75y = \frac{3(1/5) + 5}{4} = \frac{28}{20} = \frac{7}{5}.
  • The circles touch at (15,75)\left(\frac{1}{5}, \frac{7}{5}\right).
  1. Question: A rectangle ABCDABCD has vertices A(1,1)A(1, 1), B(5,1)B(5, 1), and C(5,4)C(5, 4). Find the coordinates of DD and the area of the rectangle.
Answer
  • ABAB is horizontal: AB=51=4AB = 5 - 1 = 4. BCBC is vertical: BC=41=3BC = 4 - 1 = 3.
  • Verify: AB2+BC2=16+9=25=AC2AB^2 + BC^2 = 16 + 9 = 25 = AC^2, so ABC=90\angle ABC = 90^\circ. ✓
  • The diagonal is ACAC with midpoint M=(1+52,1+42)=(3,2.5)M = \left(\frac{1+5}{2}, \frac{1+4}{2}\right) = (3, 2.5).
  • DD is such that MM is also the midpoint of CDCD: D=(2MxCx,2MyCy)=(65,54)=(1,4)D = (2M_x - C_x, 2M_y - C_y) = (6 - 5, 5 - 4) = (1, 4).
  • Area =AB×BC=4×3=12= AB \times BC = 4 \times 3 = 12 square units.
  1. Question: A solid metal cone has base radius 6cm6\mathrm{ cm} and slant height 10cm10\mathrm{ cm}. A sector is cut from a circular sheet of metal to form the curved surface. Find (a) the angle of the sector, (b) the radius of the circular sheet, and (c) the area of the sector.
Answer
  • (a) The arc length of the sector equals the circumference of the base: l=2π(6)=12πl = 2\pi(6) = 12\pi.
  • The sector radius equals the slant height: r=10cmr = 10\mathrm{ cm}.
  • l=rθ    12π=10θ    θ=6π5l = r\theta \implies 12\pi = 10\theta \implies \theta = \frac{6\pi}{5} rad =216= 216^\circ.
  • (b) The radius of the circular sheet is the slant height: 10cm10\mathrm{ cm}.
  • (c) Area of sector: A=12r2θ=12(100)(6π5)=60πcm2A = \frac{1}{2}r^2\theta = \frac{1}{2}(100)\left(\frac{6\pi}{5}\right) = 60\pi \mathrm{ cm}^2.
  1. Question: Prove that the points A(2,0)A(-2, 0), B(0,4)B(0, 4), C(6,2)C(6, 2), and D(4,2)D(4, -2) are the vertices of a rectangle. Find the equation of the circle passing through all four vertices.
Answer
  • Midpoint of AC=(2+62,0+22)=(2,1)AC = \left(\frac{-2+6}{2}, \frac{0+2}{2}\right) = (2, 1).
  • Midpoint of BD=(0+42,4+(2)2)=(2,1)BD = \left(\frac{0+4}{2}, \frac{4+(-2)}{2}\right) = (2, 1).
  • Since the diagonals bisect each other, ABCDABCD is a parallelogram.
  • AB=4+16=25AB = \sqrt{4 + 16} = 2\sqrt{5}, BC=36+4=210BC = \sqrt{36 + 4} = 2\sqrt{10}, AC=64+4=217AC = \sqrt{64 + 4} = 2\sqrt{17}.
  • AB2+BC2=20+40=60=AC2AB^2 + BC^2 = 20 + 40 = 60 = AC^2. The parallelogram has a right angle, so ABCDABCD is a rectangle.
  • The circle through all four vertices (circumcircle) has centre at the intersection of the diagonals (2,1)(2, 1) and radius =12AC=17= \frac{1}{2}AC = \sqrt{17}.
  • Equation: (x2)2+(y1)2=17(x-2)^2 + (y-1)^2 = 17, i.e., x2+y24x2y12=0x^2 + y^2 - 4x - 2y - 12 = 0.

tip

Diagnostic Test Ready to test your understanding of Geometries? The diagnostic test contains the hardest questions within the DSE specification for this topic, each with a full worked solution.

Unit tests probe edge cases and common misconceptions. Integration tests combine Geometries with other DSE mathematics topics to test synthesis under exam conditions.

See Diagnostic Guide for instructions on self-marking and building a personal test matrix.


DSE Exam Technique

Showing Working

For geometry problems in DSE Paper 1:

  1. When using the distance or midpoint formula, write the formula before substituting.
  2. When finding the equation of a line, state the gradient and a point, then apply the point-slope form.
  3. For circle problems, show the completing-the-square steps to find centre and radius.
  4. For 3D problems, clearly identify the right-angled triangles used and label the diagram.
  5. For area problems, show which formula is being used and justify the values substituted.

Significant Figures

Length answers to 3 significant figures unless exact. Angle answers to nearest degree or 3 s.f. as appropriate.

Common DSE Question Types

  1. Circle equations (finding centre, radius, tangent equations).
  2. 2D area problems (shoelace formula, Heron's formula).
  3. 3D distance and angle problems.
  4. Arc length and sector area calculations.
  5. Parallel/perpendicular line problems.

Additional Worked Examples

Worked Example 13: Two circles touching externally

Circle C1C_1 has centre (1,2)(1, 2) and radius 33. Circle C2C_2 has centre (7,2)(7, 2) and radius rr. If C1C_1 and C2C_2 touch externally, find rr.

Solution

For external tangency, the distance between centres equals the sum of the radii:

d=(71)2+(22)2=6d = \sqrt{(7 - 1)^2 + (2 - 2)^2} = 6

3+r=6    r=33 + r = 6 \implies r = 3

Worked Example 14: Area of a regular hexagon

A regular hexagon has side length aa. Find its area in terms of aa.

Solution

A regular hexagon can be divided into 6 equilateral triangles, each with side aa.

Area of one equilateral triangle: 34a2\dfrac{\sqrt{3}}{4}a^2.

Total area: 6×34a2=332a26 \times \dfrac{\sqrt{3}}{4}a^2 = \dfrac{3\sqrt{3}}{2}a^2.

Worked Example 15: Shortest distance between skew lines (3D)

In 3D, find the distance between the point P(1,2,3)P(1, 2, 3) and the line through A(4,5,6)A(4, 5, 6) and B(7,8,9)B(7, 8, 9).

Solution

Direction vector of the line: {d}=(3,3,3)\mathbf{'\{'}d{'\}'} = (3, 3, 3), simplified to (1,1,1)(1, 1, 1).

Vector AP=(14,25,36)=(3,3,3)\overrightarrow{AP} = (1 - 4, 2 - 5, 3 - 6) = (-3, -3, -3).

The cross product AP×{d}=(3,3,3)×(1,1,1)\overrightarrow{AP} \times \mathbf{'\{'}d{'\}'} = (-3, -3, -3) \times (1, 1, 1).

Since AP\overrightarrow{AP} is parallel to {d}\mathbf{'\{'}d{'\}'} (one is 3-3 times the other), the point PP lies on the line.

The distance is 00.

Verification: PP lies on the line through AA in direction (1,1,1)(1,1,1) since (1,2,3)=(4,5,6)+(1)(1,1,1)(1, 2, 3) = (4, 5, 6) + (-1)(1, 1, 1). So PP is on the line and the distance is 00.

Worked Example 16: 3D tetrahedron volume

Find the volume of the tetrahedron with vertices A(0,0,0)A(0, 0, 0), B(2,0,0)B(2, 0, 0), C(0,3,0)C(0, 3, 0), D(0,0,4)D(0, 0, 4).

Solution

The volume of a tetrahedron with vertices at the origin and on the coordinate axes is:

V=16xByCzD=16(2)(3)(4)=4V = \frac{1}{6}|x_B \cdot y_C \cdot z_D| = \frac{1}{6}(2)(3)(4) = 4

Alternatively, using the scalar triple product:

V=16AB(AC×AD)=16(2,0,0)((0,3,0)×(0,0,4))V = \frac{1}{6}|\overrightarrow{AB} \cdot (\overrightarrow{AC} \times \overrightarrow{AD})| = \frac{1}{6}|(2, 0, 0) \cdot ((0, 3, 0) \times (0, 0, 4))|

(0,3,0)×(0,0,4)=(12,0,0)(0, 3, 0) \times (0, 0, 4) = (12, 0, 0)

V=16(2)(12)=16(24)=4V = \frac{1}{6}|(2)(12)| = \frac{1}{6}(24) = 4

Worked Example 17: Angle between two lines in 3D

Find the angle between the lines joining A(1,0,0)A(1, 0, 0) to B(0,1,0)B(0, 1, 0) and AA to C(0,0,1)C(0, 0, 1).

Solution

AB=(1,1,0)\overrightarrow{AB} = (-1, 1, 0), AC=(1,0,1)\overrightarrow{AC} = (-1, 0, 1).

cosθ=(1)(1)+(1)(0)+(0)(1)1+1+01+0+1=122=12\cos\theta = \frac{|(-1)(-1) + (1)(0) + (0)(1)|}{\sqrt{1 + 1 + 0} \cdot \sqrt{1 + 0 + 1}} = \frac{1}{\sqrt{2}\sqrt{2}} = \frac{1}{2}

θ=60\theta = 60^\circ

Worked Example 18: Equation of tangent to a circle with general form

Find the equation of the tangent to x2+y24x+6y12=0x^2 + y^2 - 4x + 6y - 12 = 0 at the point (5,1)(5, 1).

Solution

First verify (5,1)(5, 1) lies on the circle: 25+120+612=025 + 1 - 20 + 6 - 12 = 0. Confirmed.

Using the tangent formula for the general circle equation x2+y2+Dx+Ey+F=0x^2 + y^2 + Dx + Ey + F = 0:

Replace x2x5x^2 \to x \cdot 5, y2y1y^2 \to y \cdot 1, xx+52x \to \dfrac{x + 5}{2}, yy+12y \to \dfrac{y + 1}{2}:

5x+y4x+52+6y+1212=05x + y - 4\cdot\frac{x + 5}{2} + 6\cdot\frac{y + 1}{2} - 12 = 0

5x+y2x10+3y+312=05x + y - 2x - 10 + 3y + 3 - 12 = 0

3x+4y19=03x + 4y - 19 = 0


DSE Exam-Style Questions

DSE Practice 1. Find the equation of the circle which passes through (0,0)(0, 0) and (0,4)(0, 4) and has its centre on the line xy+2=0x - y + 2 = 0.

Solution

Let the centre be C(h,k)C(h, k). Since CC lies on xy+2=0x - y + 2 = 0: hk+2=0    k=h+2h - k + 2 = 0 \implies k = h + 2.

CA2=CB2CA^2 = CB^2 where A=(0,0)A = (0, 0) and B=(0,4)B = (0, 4):

h2+k2=h2+(k4)2    k2=k28k+16    8k=16    k=2h^2 + k^2 = h^2 + (k - 4)^2 \implies k^2 = k^2 - 8k + 16 \implies 8k = 16 \implies k = 2

h=k2=0h = k - 2 = 0.

Centre: (0,2)(0, 2). r2=02+22=4r^2 = 0^2 + 2^2 = 4.

Equation: x2+(y2)2=4x^2 + (y - 2)^2 = 4, or x2+y24y=0x^2 + y^2 - 4y = 0.

DSE Practice 2. In ABC\triangle ABC, A=(1,2)A = (1, -2), B=(5,4)B = (5, 4), and C=(8,1)C = (8, 1). Find the equation of the median from AA and the equation of the altitude from BB.

Solution

Median from AA: Midpoint of BCBC: M=(5+82,4+12)=(6.5,2.5)M = \left(\dfrac{5+8}{2}, \dfrac{4+1}{2}\right) = (6.5, 2.5).

Gradient of AMAM: m=2.5(2)6.51=4.55.5=911m = \dfrac{2.5 - (-2)}{6.5 - 1} = \dfrac{4.5}{5.5} = \dfrac{9}{11}.

Equation: y+2=911(x1)    11y+22=9x9    9x11y31=0y + 2 = \dfrac{9}{11}(x - 1) \implies 11y + 22 = 9x - 9 \implies 9x - 11y - 31 = 0.

Altitude from BB: Gradient of ACAC: mAC=1(2)81=37m_{AC} = \dfrac{1 - (-2)}{8 - 1} = \dfrac{3}{7}.

Gradient of altitude: m=73m_\perp = -\dfrac{7}{3}.

Equation through B(5,4)B(5, 4): y4=73(x5)    3y12=7x+35    7x+3y47=0y - 4 = -\dfrac{7}{3}(x - 5) \implies 3y - 12 = -7x + 35 \implies 7x + 3y - 47 = 0.

DSE Practice 3. A sector of a circle of radius 10cm10\mathrm{ cm} has perimeter 30cm30\mathrm{ cm}. Find the area of the sector.

Solution

Perimeter of sector =2r+rθ=20+10θ=30= 2r + r\theta = 20 + 10\theta = 30.

10θ=10    θ=110\theta = 10 \implies \theta = 1 rad.

Area=12r2θ=12(100)(1)=50cm2\mathrm{Area} = \frac{1}{2}r^2\theta = \frac{1}{2}(100)(1) = 50\mathrm{ cm}^2

DSE Practice 4. Two circles C1:(x1)2+y2=9C_1: (x - 1)^2 + y^2 = 9 and C2:(x5)2+y2=25C_2: (x - 5)^2 + y^2 = 25 intersect at AA and BB. Find the length of the common chord ABAB.

Solution

Centres: O1=(1,0)O_1 = (1, 0), O2=(5,0)O_2 = (5, 0). Radii: r1=3r_1 = 3, r2=5r_2 = 5.

Distance between centres: d=4d = 4.

The common chord is perpendicular to O1O2O_1O_2 (the xx-axis) and passes through the midpoint.

By symmetry, the common chord is the line x=cx = c for some cc.

Substituting x=cx = c into C1C_1: (c1)2+y2=9    y2=9(c1)2(c - 1)^2 + y^2 = 9 \implies y^2 = 9 - (c - 1)^2.

Substituting x=cx = c into C2C_2: (c5)2+y2=25    y2=25(c5)2(c - 5)^2 + y^2 = 25 \implies y^2 = 25 - (c - 5)^2.

Setting equal: 9(c1)2=25(c5)29 - (c - 1)^2 = 25 - (c - 5)^2.

9c2+2c1=25c2+10c259 - c^2 + 2c - 1 = 25 - c^2 + 10c - 25

8+2c=10c    8c=8    c=18 + 2c = 10c \implies 8c = 8 \implies c = 1.

y2=90=9    y=±3y^2 = 9 - 0 = 9 \implies y = \pm 3. Points: (1,3)(1, 3) and (1,3)(1, -3).

AB=6AB = 6.

DSE Practice 5. Find the angle between the planes 2xy+2z=32x - y + 2z = 3 and x+2y2z=1x + 2y - 2z = 1.

Solution

Normal to first plane: {n1}=(2,1,2)\mathbf{'\{'}n_1{'\}'} = (2, -1, 2). Normal to second plane: {n2}=(1,2,2)\mathbf{'\{'}n_2{'\}'} = (1, 2, -2).

cosθ=2(1)+(1)(2)+2(2)4+1+41+4+4=22433=49\cos\theta = \frac{|2(1) + (-1)(2) + 2(-2)|}{\sqrt{4 + 1 + 4} \cdot \sqrt{1 + 4 + 4}} = \frac{|2 - 2 - 4|}{3 \cdot 3} = \frac{4}{9}

θ=arccos ⁣(49)63.6\theta = \arccos\!\left(\frac{4}{9}\right) \approx 63.6^\circ

DSE Practice 6. A pyramid has a rectangular base ABCDABCD with AB=8AB = 8, BC=6BC = 6. The vertex VV is directly above the centre of the base, and VA=10VA = 10. Find the angle between the face VABVAB and the base ABCDABCD.

Solution

The centre of the rectangle is O=(4,3,0)O = (4, 3, 0) (taking AA at the origin).

VA=10VA = 10, OA=42+32=5OA = \sqrt{4^2 + 3^2} = 5.

VO=VA2OA2=10025=75=53VO = \sqrt{VA^2 - OA^2} = \sqrt{100 - 25} = \sqrt{75} = 5\sqrt{3}.

Height of the pyramid: h=53h = 5\sqrt{3}.

The midpoint of ABAB is M=(4,0,0)M = (4, 0, 0).

VM=VO2+OM2=75+9=84=221VM = \sqrt{VO^2 + OM^2} = \sqrt{75 + 9} = \sqrt{84} = 2\sqrt{21}.

The angle between face VABVAB and the base is the angle between VMVM and OMOM:

cosϕ=OMVM=3221=2114\cos\phi = \frac{OM}{VM} = \frac{3}{2\sqrt{21}} = \frac{\sqrt{21}}{14}

ϕ=arccos ⁣(2114)69.2\phi = \arccos\!\left(\frac{\sqrt{21}}{14}\right) \approx 69.2^\circ

DSE Practice 7. The line 3x+4y25=03x + 4y - 25 = 0 intersects the circle x2+y2=25x^2 + y^2 = 25 at AA and BB. Find the area of the minor segment cut off by the chord ABAB.

Solution

Distance from the centre (0,0)(0, 0) to the line:

d=255=5d = \frac{|25|}{5} = 5

Since d=r=5d = r = 5, the line is tangent to the circle (not a chord). There is no minor segment -- the line touches the circle at exactly one point.

The point of contact: the foot of the perpendicular from (0,0)(0,0) to 3x+4y=253x + 4y = 25.

3x+4y=253x + 4y = 25 and y=34xy = \dfrac{3}{4}x (the perpendicular from the origin).

3x+434x=25    6x=25    x=2563x + 4 \cdot \dfrac{3}{4}x = 25 \implies 6x = 25 \implies x = \dfrac{25}{6}, y=258y = \dfrac{25}{8}.

Point of tangency: (256,258)\left(\dfrac{25}{6}, \dfrac{25}{8}\right).

Since the line is tangent (not a secant), the area of the minor segment is 00.