Geometry is the art of measuring and describing shapes — from simple triangles to complex solids.
Tests edge cases, boundary conditions, and common misconceptions for coordinate geometry.
Question:
Find the equation of the circle passing through the three points A ( 1 , 2 ) A(1, 2) A ( 1 , 2 ) , B ( 5 , 4 ) B(5, 4) B ( 5 , 4 ) And C ( 3 , 8 ) C(3, 8) C ( 3 , 8 ) .
Express your answer in the form ( x − a ) 2 + ( y − b ) 2 = r 2 (x-a)^2 + (y-b)^2 = r^2 ( x − a ) 2 + ( y − b ) 2 = r 2 and in the expanded form x 2 + y 2 + p x + q y + r = 0 x^2 + y^2 + px + qy + r = 0 x 2 + y 2 + p x + q y + r = 0 .
[Difficulty: hard. Tests the perpendicular bisector method and algebraic verification.]
Solution:
Step 1: Find the perpendicular bisector of A B AB A B .
Midpoint of A B AB A B : M 1 = ( 1 + 5 2 , 2 + 4 2 ) = ( 3 , 3 ) M_1 = \left(\frac{1+5}{2}, \frac{2+4}{2}\right) = (3, 3) M 1 = ( 2 1 + 5 , 2 2 + 4 ) = ( 3 , 3 ) .
Gradient of A B AB A B : m A B = 4 − 2 5 − 1 = 1 2 m_{AB} = \frac{4-2}{5-1} = \frac{1}{2} m A B = 5 − 1 4 − 2 = 2 1 .
Gradient of perpendicular bisector: m 1 = − 2 m_1 = -2 m 1 = − 2 .
Equation: y − 3 = − 2 ( x − 3 ) y - 3 = -2(x - 3) y − 3 = − 2 ( x − 3 ) I.e. y = − 2 x + 9 y = -2x + 9 y = − 2 x + 9 .
Step 2: Find the perpendicular bisector of B C BC B C .
Midpoint of B C BC B C : M 2 = ( 5 + 3 2 , 4 + 8 2 ) = ( 4 , 6 ) M_2 = \left(\frac{5+3}{2}, \frac{4+8}{2}\right) = (4, 6) M 2 = ( 2 5 + 3 , 2 4 + 8 ) = ( 4 , 6 ) .
Gradient of B C BC B C : m B C = 8 − 4 3 − 5 = 4 − 2 = − 2 m_{BC} = \frac{8-4}{3-5} = \frac{4}{-2} = -2 m B C = 3 − 5 8 − 4 = − 2 4 = − 2 .
Gradient of perpendicular bisector: m 2 = 1 2 m_2 = \frac{1}{2} m 2 = 2 1 .
Equation: y − 6 = 1 2 ( x − 4 ) y - 6 = \frac{1}{2}(x - 4) y − 6 = 2 1 ( x − 4 ) I.e. y = 1 2 x + 4 y = \frac{1}{2}x + 4 y = 2 1 x + 4 .
Step 3: Find the centre (intersection of perpendicular bisectors).
− 2 x + 9 = 1 2 x + 4 -2x + 9 = \frac{1}{2}x + 4 − 2 x + 9 = 2 1 x + 4 5 = 5 2 x 5 = \frac{5}{2}x 5 = 2 5 x x = 2 x = 2 x = 2
y = − 2 ( 2 ) + 9 = 5 y = -2(2) + 9 = 5 y = − 2 ( 2 ) + 9 = 5
The centre is O = ( 2 , 5 ) O = (2, 5) O = ( 2 , 5 ) .
Step 4: Find the radius.
r = ∣ O A ∣ = ( 2 − 1 ) 2 + ( 5 − 2 ) 2 = 1 + 9 = 10 r = |OA| = \sqrt{(2-1)^2 + (5-2)^2} = \sqrt{1 + 9} = \sqrt{10} r = ∣ O A ∣ = ( 2 − 1 ) 2 + ( 5 − 2 ) 2 = 1 + 9 = 10
Verification with point C C C : ∣ O C ∣ = ( 2 − 3 ) 2 + ( 5 − 8 ) 2 = 1 + 9 = 10 |OC| = \sqrt{(2-3)^2 + (5-8)^2} = \sqrt{1+9} = \sqrt{10} ∣ O C ∣ = ( 2 − 3 ) 2 + ( 5 − 8 ) 2 = 1 + 9 = 10 . Confirmed.
Step 5: Write the equations.
Standard form: ( x − 2 ) 2 + ( y − 5 ) 2 = 10 (x - 2)^2 + (y - 5)^2 = 10 ( x − 2 ) 2 + ( y − 5 ) 2 = 10 .
Expanded form: x 2 − 4 x + 4 + y 2 − 10 y + 25 = 10 x^2 - 4x + 4 + y^2 - 10y + 25 = 10 x 2 − 4 x + 4 + y 2 − 10 y + 25 = 10 Giving:
x 2 + y 2 − 4 x − 10 y + 19 = 0 x^2 + y^2 - 4x - 10y + 19 = 0 x 2 + y 2 − 4 x − 10 y + 19 = 0
Question:
Find the value of k k k such that the line y = k x + 5 y = kx + 5 y = k x + 5 is tangent to the circle x 2 + y 2 − 4 x − 6 y + 9 = 0 x^2 + y^2 - 4x - 6y + 9 = 0 x 2 + y 2 − 4 x − 6 y + 9 = 0 .
Hence find the coordinates of the point of tangency for each valid value of k k k .
[Difficulty: hard. Tests the discriminant method for tangency and the geometric interpretation.]
Solution:
Step 1: Substitute the line into the circle equation.
x 2 + ( k x + 5 ) 2 − 4 x − 6 ( k x + 5 ) + 9 = 0 x^2 + (kx+5)^2 - 4x - 6(kx+5) + 9 = 0 x 2 + ( k x + 5 ) 2 − 4 x − 6 ( k x + 5 ) + 9 = 0 x 2 + k 2 x 2 + 10 k x + 25 − 4 x − 6 k x − 30 + 9 = 0 x^2 + k^2x^2 + 10kx + 25 - 4x - 6kx - 30 + 9 = 0 x 2 + k 2 x 2 + 10 k x + 25 − 4 x − 6 k x − 30 + 9 = 0 ( 1 + k 2 ) x 2 + ( 10 k − 4 − 6 k ) x + 4 = 0 (1+k^2)x^2 + (10k - 4 - 6k)x + 4 = 0 ( 1 + k 2 ) x 2 + ( 10 k − 4 − 6 k ) x + 4 = 0 ( 1 + k 2 ) x 2 + ( 4 k − 4 ) x + 4 = 0 (1+k^2)x^2 + (4k - 4)x + 4 = 0 ( 1 + k 2 ) x 2 + ( 4 k − 4 ) x + 4 = 0
Step 2: Set the discriminant to zero for tangency.
Δ = ( 4 k − 4 ) 2 − 4 ( 1 + k 2 ) ( 4 ) = 0 \Delta = (4k-4)^2 - 4(1+k^2)(4) = 0 Δ = ( 4 k − 4 ) 2 − 4 ( 1 + k 2 ) ( 4 ) = 0 16 k 2 − 32 k + 16 − 16 − 16 k 2 = 0 16k^2 - 32k + 16 - 16 - 16k^2 = 0 16 k 2 − 32 k + 16 − 16 − 16 k 2 = 0 − 32 k = 0 -32k = 0 − 32 k = 0 k = 0 k = 0 k = 0
Step 3: Find the point of tangency.
With k = 0 k = 0 k = 0 The line is y = 5 y = 5 y = 5 . Substituting into the circle:
x 2 + 25 − 4 x − 30 + 9 = 0 x^2 + 25 - 4x - 30 + 9 = 0 x 2 + 25 − 4 x − 30 + 9 = 0 x 2 − 4 x + 4 = 0 x^2 - 4x + 4 = 0 x 2 − 4 x + 4 = 0 ( x − 2 ) 2 = 0 (x-2)^2 = 0 ( x − 2 ) 2 = 0 x = 2 x = 2 x = 2
The point of tangency is ( 2 , 5 ) (2, 5) ( 2 , 5 ) .
Geometric check: The circle ( x − 2 ) 2 + ( y − 3 ) 2 = 4 (x-2)^2 + (y-3)^2 = 4 ( x − 2 ) 2 + ( y − 3 ) 2 = 4 has centre ( 2 , 3 ) (2, 3) ( 2 , 3 ) and radius 2 2 2 . The line y = 5 y = 5 y = 5 is at distance ∣ 5 − 3 ∣ = 2 |5-3| = 2 ∣5 − 3∣ = 2 from the centre, equal to the radius. Confirmed.
Question:
The matrix R R R represents a rotation anticlockwise by 90 ° 90° 90° about the origin, and the matrix S S S represents a reflection in the line y = x y = x y = x .
R = ( 0 − 1 1 0 ) , S = ( 0 1 1 0 ) R = \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix}, \quad S = \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix} R = ( 0 1 − 1 0 ) , S = ( 0 1 1 0 )
(a) Find the matrix R S RS R S and describe the single transformation it represents.
(b) Find the matrix S R SR S R and describe the single transformation it represents.
(c) The point P ( 3 , 1 ) P(3, 1) P ( 3 , 1 ) is first reflected in the line y = x y = x y = x and then rotated 90 ° 90° 90° anticlockwise about the origin. Find the coordinates of the image of P P P .
(d) The triangle with vertices (0, 0)$$(4, 0)$$(0, 3) is transformed by R S RS R S . Find the area of the image and explain why it is preserved.
[Difficulty: hard. Tests understanding that matrix multiplication is not commutative for transformations, and the relationship between determinant and area.]
Solution:
(a)
R S = ( 0 − 1 1 0 ) ( 0 1 1 0 ) = ( 0 ⋅ 0 + ( − 1 ) ⋅ 1 0 ⋅ 1 + ( − 1 ) ⋅ 0 1 ⋅ 0 + 0 ⋅ 1 1 ⋅ 1 + 0 ⋅ 0 ) = ( − 1 0 0 1 ) RS = \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix}\begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix} = \begin{pmatrix} 0\cdot0+(-1)\cdot1 & 0\cdot1+(-1)\cdot0 \\ 1\cdot0+0\cdot1 & 1\cdot1+0\cdot0 \end{pmatrix} = \begin{pmatrix} -1 & 0 \\ 0 & 1 \end{pmatrix} R S = ( 0 1 − 1 0 ) ( 0 1 1 0 ) = ( 0 ⋅ 0 + ( − 1 ) ⋅ 1 1 ⋅ 0 + 0 ⋅ 1 0 ⋅ 1 + ( − 1 ) ⋅ 0 1 ⋅ 1 + 0 ⋅ 0 ) = ( − 1 0 0 1 )
This is a reflection in the y y y -axis.
(b)
S R = ( 0 1 1 0 ) ( 0 − 1 1 0 ) = ( 0 ⋅ 0 + 1 ⋅ 1 0 ⋅ ( − 1 ) + 1 ⋅ 0 1 ⋅ 0 + 0 ⋅ 1 1 ⋅ ( − 1 ) + 0 ⋅ 0 ) = ( 1 0 0 − 1 ) SR = \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix}\begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix} = \begin{pmatrix} 0\cdot0+1\cdot1 & 0\cdot(-1)+1\cdot0 \\ 1\cdot0+0\cdot1 & 1\cdot(-1)+0\cdot0 \end{pmatrix} = \begin{pmatrix} 1 & 0 \\ 0 & -1 \end{pmatrix} S R = ( 0 1 1 0 ) ( 0 1 − 1 0 ) = ( 0 ⋅ 0 + 1 ⋅ 1 1 ⋅ 0 + 0 ⋅ 1 0 ⋅ ( − 1 ) + 1 ⋅ 0 1 ⋅ ( − 1 ) + 0 ⋅ 0 ) = ( 1 0 0 − 1 )
This is a reflection in the x x x -axis.
Note: R S ≠ S R RS \neq SR R S = S R Confirming that transformations do not generally commute.
(c) Applying S S S first, then R R R : the image is R ⋅ S ⋅ ( 3 1 ) R \cdot S \cdot \begin{pmatrix} 3 \\ 1 \end{pmatrix} R ⋅ S ⋅ ( 3 1 ) .
S ( 3 1 ) = ( 0 1 1 0 ) ( 3 1 ) = ( 1 3 ) S\begin{pmatrix}3\\1\end{pmatrix} = \begin{pmatrix}0&1\\1&0\end{pmatrix}\begin{pmatrix}3\\1\end{pmatrix} = \begin{pmatrix}1\\3\end{pmatrix} S ( 3 1 ) = ( 0 1 1 0 ) ( 3 1 ) = ( 1 3 )
R ( 1 3 ) = ( 0 − 1 1 0 ) ( 1 3 ) = ( − 3 1 ) R\begin{pmatrix}1\\3\end{pmatrix} = \begin{pmatrix}0&-1\\1&0\end{pmatrix}\begin{pmatrix}1\\3\end{pmatrix} = \begin{pmatrix}-3\\1\end{pmatrix} R ( 1 3 ) = ( 0 1 − 1 0 ) ( 1 3 ) = ( − 3 1 )
The image of P P P is ( − 3 , 1 ) (-3, 1) ( − 3 , 1 ) .
Alternatively, using R S = ( − 1 0 0 1 ) RS = \begin{pmatrix}-1&0\\0&1\end{pmatrix} R S = ( − 1 0 0 1 ) :
R S ( 3 1 ) = ( − 3 1 ) RS\begin{pmatrix}3\\1\end{pmatrix} = \begin{pmatrix}-3\\1\end{pmatrix} R S ( 3 1 ) = ( − 3 1 )
Confirmed.
(d) The original triangle has area 1 2 × 4 × 3 = 6 \frac{1}{2} \times 4 \times 3 = 6 2 1 × 4 × 3 = 6 square units.
The determinant of R S RS R S is det ( − 1 0 0 1 ) = − 1 \det\begin{pmatrix}-1&0\\0&1\end{pmatrix} = -1 det ( − 1 0 0 1 ) = − 1 .
The absolute value of the determinant gives the area scale factor: ∣ det ( R S ) ∣ = 1 |\det(RS)| = 1 ∣ det ( R S ) ∣ = 1 . Therefore the area of the image is 6 6 6 square units.
Both R R R (rotation) and S S S (reflection) are isometries (distance-preserving transformations). Their composite is also an isometry, so area is preserved.
Tests synthesis of coordinate geometry with other topics. Requires combining concepts from multiple units.
Question:
Find the point on the curve y = x 2 − 4 x + 7 y = x^2 - 4x + 7 y = x 2 − 4 x + 7 that is closest to the point ( 1 , 8 ) (1, 8) ( 1 , 8 ) .
[Difficulty: hard. Combines distance formula with differentiation to find the minimum distance.]
Solution:
Step 1: Set up the distance squared function. (Using distance squared avoids the square root and gives the same minimiser.)
A general point on the curve is ( x , x 2 − 4 x + 7 ) (x, x^2-4x+7) ( x , x 2 − 4 x + 7 ) .
D 2 = ( x − 1 ) 2 + ( x 2 − 4 x + 7 − 8 ) 2 = ( x − 1 ) 2 + ( x 2 − 4 x − 1 ) 2 D^2 = (x - 1)^2 + (x^2 - 4x + 7 - 8)^2 = (x-1)^2 + (x^2-4x-1)^2 D 2 = ( x − 1 ) 2 + ( x 2 − 4 x + 7 − 8 ) 2 = ( x − 1 ) 2 + ( x 2 − 4 x − 1 ) 2
Step 2: Differentiate with respect to x x x .
d ( D 2 ) d x = 2 ( x − 1 ) + 2 ( x 2 − 4 x − 1 ) ( 2 x − 4 ) \frac{d(D^2)}{dx} = 2(x-1) + 2(x^2-4x-1)(2x-4) d x d ( D 2 ) = 2 ( x − 1 ) + 2 ( x 2 − 4 x − 1 ) ( 2 x − 4 )
Set this equal to zero:
( x − 1 ) + ( x 2 − 4 x − 1 ) ( 2 x − 4 ) = 0 (x-1) + (x^2-4x-1)(2x-4) = 0 ( x − 1 ) + ( x 2 − 4 x − 1 ) ( 2 x − 4 ) = 0
( x − 1 ) + 2 ( x − 2 ) ( x 2 − 4 x − 1 ) = 0 (x-1) + 2(x-2)(x^2-4x-1) = 0 ( x − 1 ) + 2 ( x − 2 ) ( x 2 − 4 x − 1 ) = 0
Expand ( x − 2 ) ( x 2 − 4 x − 1 ) = x 3 − 4 x 2 − x − 2 x 2 + 8 x + 2 = x 3 − 6 x 2 + 7 x + 2 (x-2)(x^2-4x-1) = x^3 - 4x^2 - x - 2x^2 + 8x + 2 = x^3 - 6x^2 + 7x + 2 ( x − 2 ) ( x 2 − 4 x − 1 ) = x 3 − 4 x 2 − x − 2 x 2 + 8 x + 2 = x 3 − 6 x 2 + 7 x + 2 .
( x − 1 ) + 2 ( x 3 − 6 x 2 + 7 x + 2 ) = 0 (x-1) + 2(x^3 - 6x^2 + 7x + 2) = 0 ( x − 1 ) + 2 ( x 3 − 6 x 2 + 7 x + 2 ) = 0 x − 1 + 2 x 3 − 12 x 2 + 14 x + 4 = 0 x - 1 + 2x^3 - 12x^2 + 14x + 4 = 0 x − 1 + 2 x 3 − 12 x 2 + 14 x + 4 = 0 2 x 3 − 12 x 2 + 15 x + 3 = 0 2x^3 - 12x^2 + 15x + 3 = 0 2 x 3 − 12 x 2 + 15 x + 3 = 0
Step 3: Solve the cubic. Testing x = 1 x = 1 x = 1 : 2 − 12 + 15 + 3 = 8 ≠ 0 2 - 12 + 15 + 3 = 8 \neq 0 2 − 12 + 15 + 3 = 8 = 0 . Testing x = − 1 x = -1 x = − 1 : − 2 − 12 − 15 + 3 = − 26 -2 - 12 - 15 + 3 = -26 − 2 − 12 − 15 + 3 = − 26 . Testing x = 3 x = 3 x = 3 : 54 − 108 + 45 + 3 = − 6 54 - 108 + 45 + 3 = -6 54 − 108 + 45 + 3 = − 6 . Testing x = 1 2 x = \frac{1}{2} x = 2 1 : 1 4 − 3 + 15 2 + 3 = 7.25 \frac{1}{4} - 3 + \frac{15}{2} + 3 = 7.25 4 1 − 3 + 2 15 + 3 = 7.25 . Testing x = 0 x = 0 x = 0 : 3 3 3 .
By the intermediate value theorem, there is a root between x = − 1 x = -1 x = − 1 and x = 0 x = 0 x = 0 And possibly others.
Testing x = − 1 2 x = -\frac{1}{2} x = − 2 1 : − 1 4 − 3 − 15 2 + 3 = − 1 4 − 15 2 = − 31 4 -\frac{1}{4} - 3 - \frac{15}{2} + 3 = -\frac{1}{4} - \frac{15}{2} = -\frac{31}{4} − 4 1 − 3 − 2 15 + 3 = − 4 1 − 2 15 = − 4 31 . Between x = 0 x = 0 x = 0 (D " = 3 D" = 3 D " = 3 ) and x = 1 x = 1 x = 1 (D ′ = 8 D' = 8 D ′ = 8 ), no root. Between x = 3 x = 3 x = 3 (D ′ = − 6 D' = -6 D ′ = − 6 ) and x = 4 x = 4 x = 4 (D ′ = 128 − 192 + 60 + 3 = − 1 D' = 128-192+60+3 = -1 D ′ = 128 − 192 + 60 + 3 = − 1 ), and x = 5 x = 5 x = 5 (D ′ = 250 − 300 + 75 + 3 = 28 D' = 250-300+75+3=28 D ′ = 250 − 300 + 75 + 3 = 28 ), so a root between x = 4 x = 4 x = 4 and x = 5 x = 5 x = 5 .
Actually, let me check x = 3 2 x = \frac{3}{2} x = 2 3 : 27 4 − 27 + 45 2 + 3 = 6.75 − 27 + 22.5 + 3 = 5.25 \frac{27}{4} - 27 + \frac{45}{2} + 3 = 6.75 - 27 + 22.5 + 3 = 5.25 4 27 − 27 + 2 45 + 3 = 6.75 − 27 + 22.5 + 3 = 5.25 . Between x = 1 x = 1 x = 1 (8 8 8 ) and x = 3 x = 3 x = 3 (− 6 -6 − 6 ), a root near x = 2 x = 2 x = 2 : 16 − 48 + 30 + 3 = 1 16 - 48 + 30 + 3 = 1 16 − 48 + 30 + 3 = 1 . At x = 2.1 x = 2.1 x = 2.1 : 18.522 − 52.92 + 31.5 + 3 = 0.102 18.522 - 52.92 + 31.5 + 3 = 0.102 18.522 − 52.92 + 31.5 + 3 = 0.102 . At x = 2.12 x = 2.12 x = 2.12 : 19.08... − 53.95... + 31.8 + 3 = − 0.06... 19.08... - 53.95... + 31.8 + 3 = -0.06... 19.08... − 53.95... + 31.8 + 3 = − 0.06... .
Root near x ≈ 2.11 x \approx 2.11 x ≈ 2.11 .
The exact solution requires the cubic formula. For the closest point, we accept the numerical approximation. At x ≈ 2.11 x \approx 2.11 x ≈ 2.11 : y ≈ 4.45 − 8.44 + 7 = 3.01 y \approx 4.45 - 8.44 + 7 = 3.01 y ≈ 4.45 − 8.44 + 7 = 3.01 .
The closest point is approximately ( 2.11 , 3.01 ) (2.11, 3.01) ( 2.11 , 3.01 ) .
Question:
In triangle A B C ABC A B C The point D D D lies on B C BC B C such that B D : D C = 2 : 1 BD : DC = 2 : 1 B D : D C = 2 : 1 . The point E E E is the midpoint of A C AC A C . The lines A D AD A D and B E BE B E intersect at point F F F .
Using position vectors with origin at A A A And taking A B → = b \overrightarrow{AB} = \mathbf{b} A B = b and A C → = c \overrightarrow{AC} = \mathbf{c} A C = c :
(a) Find the position vector of F F F in terms of b \mathbf{b} b and c \mathbf{c} c .
(b) Find the ratio A F : F D AF : FD A F : F D .
(c) If ∣ b ∣ = 5 |\mathbf{b}| = 5 ∣ b ∣ = 5 , ∣ c ∣ = 7 |\mathbf{c}| = 7 ∣ c ∣ = 7 And b ⋅ c = 15 \mathbf{b} \cdot \mathbf{c} = 15 b ⋅ c = 15 Find ∣ A F → ∣ |\overrightarrow{AF}| ∣ A F ∣ .
[Difficulty: hard. Tests vector methods for concurrency problems and application of the dot product.]
Solution:
(a) Express all points in terms of b \mathbf{b} b and c \mathbf{c} c :
O B → = b \overrightarrow{OB} = \mathbf{b} O B = b , O C → = c \overrightarrow{OC} = \mathbf{c} O C = c (since origin is at A A A )O D → = O B → + 2 3 B C → = b + 2 3 ( c − b ) = 1 3 b + 2 3 c \overrightarrow{OD} = \overrightarrow{OB} + \frac{2}{3}\overrightarrow{BC} = \mathbf{b} + \frac{2}{3}(\mathbf{c} - \mathbf{b}) = \frac{1}{3}\mathbf{b} + \frac{2}{3}\mathbf{c} O D = O B + 3 2 B C = b + 3 2 ( c − b ) = 3 1 b + 3 2 c O E → = 1 2 c \overrightarrow{OE} = \frac{1}{2}\mathbf{c} O E = 2 1 c Point F F F lies on A D AD A D : O F → = O A → + s A D → = s ( 1 3 b + 2 3 c ) \overrightarrow{OF} = \overrightarrow{OA} + s\overrightarrow{AD} = s\left(\frac{1}{3}\mathbf{b} + \frac{2}{3}\mathbf{c}\right) O F = O A + s A D = s ( 3 1 b + 3 2 c ) for some 0 ≤ s ≤ 1 0 \leq s \leq 1 0 ≤ s ≤ 1 .
Point F F F also lies on B E BE B E : O F → = O B → + t B E → = b + t ( 1 2 c − b ) = ( 1 − t ) b + t 2 c \overrightarrow{OF} = \overrightarrow{OB} + t\overrightarrow{BE} = \mathbf{b} + t\left(\frac{1}{2}\mathbf{c} - \mathbf{b}\right) = (1-t)\mathbf{b} + \frac{t}{2}\mathbf{c} O F = O B + t B E = b + t ( 2 1 c − b ) = ( 1 − t ) b + 2 t c for some 0 ≤ t ≤ 1 0 \leq t \leq 1 0 ≤ t ≤ 1 .
Equating coefficients of b \mathbf{b} b and c \mathbf{c} c :
s 3 = 1 − t and 2 s 3 = t 2 \frac{s}{3} = 1 - t \quad \text{and} \quad \frac{2s}{3} = \frac{t}{2} 3 s = 1 − t and 3 2 s = 2 t
From the second equation: t = 4 s 3 t = \frac{4s}{3} t = 3 4 s .
Substituting into the first: s 3 = 1 − 4 s 3 \frac{s}{3} = 1 - \frac{4s}{3} 3 s = 1 − 3 4 s Giving 5 s 3 = 1 \frac{5s}{3} = 1 3 5 s = 1 So s = 3 5 s = \frac{3}{5} s = 5 3 .
O F → = 3 5 ( 1 3 b + 2 3 c ) = 1 5 b + 2 5 c \overrightarrow{OF} = \frac{3}{5}\left(\frac{1}{3}\mathbf{b} + \frac{2}{3}\mathbf{c}\right) = \frac{1}{5}\mathbf{b} + \frac{2}{5}\mathbf{c} O F = 5 3 ( 3 1 b + 3 2 c ) = 5 1 b + 5 2 c
(b) A F : F D AF : FD A F : F D . Since s = 3 / 5 s = 3/5 s = 3/5 Point F F F divides A D AD A D in the ratio s : ( 1 − s ) = 3 / 5 : 2 / 5 = 3 : 2 s : (1-s) = 3/5 : 2/5 = 3 : 2 s : ( 1 − s ) = 3/5 : 2/5 = 3 : 2 .
So A F : F D = 3 : 2 AF : FD = 3 : 2 A F : F D = 3 : 2 .
(c)
A F → = 1 5 b + 2 5 c \overrightarrow{AF} = \frac{1}{5}\mathbf{b} + \frac{2}{5}\mathbf{c} A F = 5 1 b + 5 2 c
∣ A F → ∣ 2 = ( 1 5 b + 2 5 c ) ⋅ ( 1 5 b + 2 5 c ) |\overrightarrow{AF}|^2 = \left(\frac{1}{5}\mathbf{b} + \frac{2}{5}\mathbf{c}\right) \cdot \left(\frac{1}{5}\mathbf{b} + \frac{2}{5}\mathbf{c}\right) ∣ A F ∣ 2 = ( 5 1 b + 5 2 c ) ⋅ ( 5 1 b + 5 2 c )
= 1 25 ∣ b ∣ 2 + 4 25 b ⋅ c + 4 25 ∣ c ∣ 2 = \frac{1}{25}|\mathbf{b}|^2 + \frac{4}{25}\mathbf{b}\cdot\mathbf{c} + \frac{4}{25}|\mathbf{c}|^2 = 25 1 ∣ b ∣ 2 + 25 4 b ⋅ c + 25 4 ∣ c ∣ 2
= 1 25 ( 25 ) + 4 25 ( 15 ) + 4 25 ( 49 ) = \frac{1}{25}(25) + \frac{4}{25}(15) + \frac{4}{25}(49) = 25 1 ( 25 ) + 25 4 ( 15 ) + 25 4 ( 49 )
= 1 + 60 25 + 196 25 = 1 + \frac{60}{25} + \frac{196}{25} = 1 + 25 60 + 25 196
= 1 + 256 25 = 281 25 = 1 + \frac{256}{25} = \frac{281}{25} = 1 + 25 256 = 25 281
∣ A F → ∣ = 281 5 |\overrightarrow{AF}| = \frac{\sqrt{281}}{5} ∣ A F ∣ = 5 281
Question:
A curve is defined parametrically by:
x = t 2 − 2 t , y = ( t 2 − 2 t ) 2 − 2 ( t 2 − 2 t ) x = t^2 - 2t, \quad y = (t^2 - 2t)^2 - 2(t^2 - 2t) x = t 2 − 2 t , y = ( t 2 − 2 t ) 2 − 2 ( t 2 − 2 t )
For t ∈ R t \in \mathbb{R} t ∈ R .
(a) Show that y = x 2 − 2 x y = x^2 - 2x y = x 2 − 2 x and hence identify the curve as a standard form.
(b) Find the coordinates of the turning points of the curve and determine their nature.
(c) The curve is translated so that its minimum point moves to the origin. Find the equation of the translated curve in the form y = a x 2 + b x + c y = ax^2 + bx + c y = a x 2 + b x + c .
[Difficulty: hard. Tests recognition of function composition in parametric equations and completing the square.]
Solution:
(a) Let f ( t ) = t 2 − 2 t = ( t − 1 ) 2 − 1 f(t) = t^2 - 2t = (t-1)^2 - 1 f ( t ) = t 2 − 2 t = ( t − 1 ) 2 − 1 .
Then x = f ( t ) x = f(t) x = f ( t ) and y = f ( f ( t ) ) = f ( x ) y = f(f(t)) = f(x) y = f ( f ( t )) = f ( x ) .
Therefore y = x 2 − 2 x = ( x − 1 ) 2 − 1 y = x^2 - 2x = (x-1)^2 - 1 y = x 2 − 2 x = ( x − 1 ) 2 − 1 .
This is a parabola with vertex at ( 1 , − 1 ) (1, -1) ( 1 , − 1 ) Opening upward.
(b) y = x 2 − 2 x y = x^2 - 2x y = x 2 − 2 x . Since x = ( t − 1 ) 2 − 1 ≥ − 1 x = (t-1)^2 - 1 \geq -1 x = ( t − 1 ) 2 − 1 ≥ − 1 for all t t t The domain of the curve is x ≥ − 1 x \geq -1 x ≥ − 1 .
d y d x = 2 x − 2 \frac{dy}{dx} = 2x - 2 d x d y = 2 x − 2 . Setting this to zero: x = 1 x = 1 x = 1 .
At x = 1 x = 1 x = 1 : y = 1 − 2 = − 1 y = 1 - 2 = -1 y = 1 − 2 = − 1 . This is the vertex.
d 2 y d x 2 = 2 > 0 \frac{d^2y}{dx^2} = 2 > 0 d x 2 d 2 y = 2 > 0 Confirming a minimum at ( 1 , − 1 ) (1, -1) ( 1 , − 1 ) .
The turning point is ( 1 , − 1 ) (1, -1) ( 1 , − 1 ) Which is a minimum.
Note: there are no other turning points. The curve is a standard parabola restricted to x ≥ − 1 x \geq -1 x ≥ − 1 .
At x = − 1 x = -1 x = − 1 (when t = 1 t = 1 t = 1 ): y = 1 + 2 = 3 y = 1 + 2 = 3 y = 1 + 2 = 3 . This is an endpoint of the parametric curve, not a turning point of the parabola itself.
(c) The translation moves ( 1 , − 1 ) (1, -1) ( 1 , − 1 ) to ( 0 , 0 ) (0, 0) ( 0 , 0 ) . The translation vector is ( − 1 , 1 ) (-1, 1) ( − 1 , 1 ) .
Let X = x − 1 X = x - 1 X = x − 1 and Y = y + 1 Y = y + 1 Y = y + 1 . Then y = ( x − 1 ) 2 − 1 y = (x-1)^2 - 1 y = ( x − 1 ) 2 − 1 becomes Y − 1 = X 2 − 1 Y - 1 = X^2 - 1 Y − 1 = X 2 − 1 I.e.:
Y = X 2 Y = X^2 Y = X 2
In terms of the original variables (after translation, using x x x and y y y for the new coordinates):
y = x 2 y = x^2 y = x 2
So a = 1 a = 1 a = 1 , b = 0 b = 0 b = 0 , c = 0 c = 0 c = 0 .
Confusing the equation of a line in different forms: y = m x + c y = mx + c y = m x + c is the gradient-intercept form. a x + b y + c = 0 ax + by + c = 0 a x + b y + c = 0 is the general form. y − y 1 = m ( x − x 1 ) y - y_1 = m(x - x_1) y − y 1 = m ( x − x 1 ) is the point-gradient form. Converting between these requires care — for example, rearranging y = 2 x + 3 y = 2x + 3 y = 2 x + 3 to general form gives 2 x − y + 3 = 0 2x - y + 3 = 0 2 x − y + 3 = 0 , not 2 x + y + 3 = 0 2x + y + 3 = 0 2 x + y + 3 = 0 .
Forgetting that perpendicular gradients multiply to − 1 -1 − 1 : If a line has gradient m m m , the perpendicular line has gradient − 1 / m -1/m − 1/ m . Students often write 1 / m 1/m 1/ m instead. Also, horizontal and vertical lines are perpendicular (m = 0 m = 0 m = 0 and m m m undefined), which is a special case often missed.
Mixing up the discriminant conditions for quadratics: Δ > 0 \Delta > 0 Δ > 0 means two distinct real roots. Δ = 0 \Delta = 0 Δ = 0 means one repeated real root. Δ < 0 \Delta < 0 Δ < 0 means no real roots (two complex roots). Students sometimes swap > > > and < < < or forget that Δ = 0 \Delta = 0 Δ = 0 gives a tangent (one point of contact).
Pure Mathematics : Pure maths covers algebra, calculus, and functionsMechanics : Mechanics applies maths to physical problemsStatistics : Statistics develops data analysis methods