Skip to content

Vectors -- Diagnostic Tests

Vectors are like arrows with both direction and magnitude — they point where you need to go and tell you how far.

Tests edge cases, boundary conditions, and common misconceptions for vectors.

UT-1: Shortest Distance from a Point to a Line in 3D

Section titled “UT-1: Shortest Distance from a Point to a Line in 3D”

Question:

The line ll has vector equation r=(121)+t(213)\mathbf{r} = \begin{pmatrix} 1 \\ 2 \\ -1 \end{pmatrix} + t\begin{pmatrix} 2 \\ -1 \\ 3 \end{pmatrix}And the point AA has position vector (405)\begin{pmatrix} 4 \\ 0 \\ 5 \end{pmatrix}.

(a) Find the shortest distance from AA to ll.

(b) Find the coordinates of the point BB on ll that is closest to AA.

(c) A student attempts to find the distance by computing OAOP\lvert\overrightarrow{OA} - \overrightarrow{OP}\rvert where PP is the point on ll with t=1t = 1. Show that this does not give the shortest distance, and calculate the percentage overestimate.

[Difficulty: hard. Tests the vector projection method for shortest distance from a point to a line in three dimensions.]

Solution:

(a) The line passes through PP with position vector p=(121)\mathbf{p} = \begin{pmatrix} 1 \\ 2 \\ -1 \end{pmatrix} and has direction vector d=(213)\mathbf{d} = \begin{pmatrix} 2 \\ -1 \\ 3 \end{pmatrix}.

PA=ap=(326)\overrightarrow{PA} = \mathbf{a} - \mathbf{p} = \begin{pmatrix} 3 \\ -2 \\ 6 \end{pmatrix}.

The shortest distance is:

d=PA×ddd = \frac{\lvert\overrightarrow{PA} \times \mathbf{d}\rvert}{\lvert\mathbf{d}\rvert}

PA×d=ijk326213=i(6(6))j(912)+k(3(4))\overrightarrow{PA} \times \mathbf{d} = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ 3 & -2 & 6 \\ 2 & -1 & 3 \end{vmatrix} = \mathbf{i}(-6-(-6)) - \mathbf{j}(9-12) + \mathbf{k}(-3-(-4))

=0i+3j+1k=(031)= 0\mathbf{i} + 3\mathbf{j} + 1\mathbf{k} = \begin{pmatrix} 0 \\ 3 \\ 1 \end{pmatrix}

PA×d=0+9+1=10\lvert\overrightarrow{PA} \times \mathbf{d}\rvert = \sqrt{0 + 9 + 1} = \sqrt{10}

d=4+1+9=14\lvert\mathbf{d}\rvert = \sqrt{4 + 1 + 9} = \sqrt{14}

d=1014=57d = \frac{\sqrt{10}}{\sqrt{14}} = \sqrt{\frac{5}{7}}

(b) The point BB on ll closest to AA satisfies PB=PAdd2d\overrightarrow{PB} = \frac{\overrightarrow{PA} \cdot \mathbf{d}}{\lvert\mathbf{d}\rvert^2}\mathbf{d}.

PAd=6+2+18=26\overrightarrow{PA} \cdot \mathbf{d} = 6 + 2 + 18 = 26

PB=2614(213)=137(213)\overrightarrow{PB} = \frac{26}{14}\begin{pmatrix} 2 \\ -1 \\ 3 \end{pmatrix} = \frac{13}{7}\begin{pmatrix} 2 \\ -1 \\ 3 \end{pmatrix}

b=p+PB=(121)+(26/713/739/7)=(33/71/732/7)\mathbf{b} = \mathbf{p} + \overrightarrow{PB} = \begin{pmatrix} 1 \\ 2 \\ -1 \end{pmatrix} + \begin{pmatrix} 26/7 \\ -13/7 \\ 39/7 \end{pmatrix} = \begin{pmatrix} 33/7 \\ 1/7 \\ 32/7 \end{pmatrix}

Verification: BA=(433/701/7532/7)=(5/71/73/7)\overrightarrow{BA} = \begin{pmatrix} 4-33/7 \\ 0-1/7 \\ 5-32/7 \end{pmatrix} = \begin{pmatrix} -5/7 \\ -1/7 \\ 3/7 \end{pmatrix}.

BAd=107+17+97=0\overrightarrow{BA} \cdot \mathbf{d} = \frac{-10}{7} + \frac{1}{7} + \frac{9}{7} = 0. Confirmed perpendicular.

(c) At t=1t = 1: P1=(312)P_1 = \begin{pmatrix} 3 \\ 1 \\ 2 \end{pmatrix}. P1A=(113)\overrightarrow{P_1A} = \begin{pmatrix} 1 \\ -1 \\ 3 \end{pmatrix}.

P1A=1+1+9=11\lvert\overrightarrow{P_1A}\rvert = \sqrt{1 + 1 + 9} = \sqrt{11}.

Actual shortest distance: 5/7=35/70.845\sqrt{5/7} = \sqrt{35}/7 \approx 0.845.

Student”s answer: 113.317\sqrt{11} \approx 3.317.

Percentage overestimate=115/75/7×100%=(7751)×100%293%\text{Percentage overestimate} = \frac{\sqrt{11} - \sqrt{5/7}}{\sqrt{5/7}} \times 100\% = \left(\frac{\sqrt{77}}{\sqrt{5}} - 1\right) \times 100\% \approx 293\%


UT-2: Distinguishing Skew, Parallel, and Intersecting Lines in 3D

Section titled “UT-2: Distinguishing Skew, Parallel, and Intersecting Lines in 3D”

Question:

Line l1l_1 passes through A(1,2,3)A(1, 2, 3) with direction vector d1=(211)\mathbf{d}_1 = \begin{pmatrix} 2 \\ -1 \\ 1 \end{pmatrix}.

Line l2l_2 passes through B(4,1,0)B(4, 1, 0) with direction vector d2=(1a2)\mathbf{d}_2 = \begin{pmatrix} 1 \\ a \\ 2 \end{pmatrix}.

(a) Find the value of aa for which l1l_1 and l2l_2 intersect.

(b) For a=3a = 3Determine whether l1l_1 and l2l_2 are skew, parallel, or intersecting.

(c) For a=1a = -1Find the shortest distance between l1l_1 and l2l_2.

[Difficulty: hard. Tests the systematic approach to classifying pairs of lines in 3D: parallel (proportional direction vectors), intersecting (solvable system), or skew (inconsistent system with non-parallel directions).]

Solution:

(a) d1\mathbf{d}_1 and d2\mathbf{d}_2 are not proportional for any value of aa (since 211a\frac{2}{1} \neq \frac{-1}{a} for a=12a = -\frac{1}{2}And checking: at a=12a = -\frac{1}{2}, 21=2\frac{2}{1} = 2 but 12=122\frac{1}{2} = \frac{1}{2} \neq 2). So the lines are never parallel.

For intersection, there exist s,ts, t such that:

1+2s=4+t,2s=1+at,3+s=0+2t1 + 2s = 4 + t, \quad 2 - s = 1 + at, \quad 3 + s = 0 + 2t

From the first equation: t=2s3t = 2s - 3.

From the third equation: 3+s=2(2s3)=4s6    3s=9    s=33 + s = 2(2s - 3) = 4s - 6 \implies 3s = 9 \implies s = 3.

Then t=2(3)3=3t = 2(3) - 3 = 3.

Substituting into the second equation: 23=1+3a    1=1+3a    a=232 - 3 = 1 + 3a \implies -1 = 1 + 3a \implies a = -\frac{2}{3}.

The lines intersect when a=23a = -\frac{2}{3}At the point (1+6233+3)=(716)\begin{pmatrix} 1+6 \\ 2-3 \\ 3+3 \end{pmatrix} = \begin{pmatrix} 7 \\ -1 \\ 6 \end{pmatrix}.

(b) For a=3a = 3: the lines are not parallel (d1\mathbf{d}_1 and d2\mathbf{d}_2 not proportional). Check for intersection:

t=2s3t = 2s - 3, s=3s = 3, t=3t = 3 (from first and third equations).

Second equation: 23=1+3(3)=102 - 3 = 1 + 3(3) = 10Giving 1=10-1 = 10Which is false.

The system is inconsistent, so the lines are skew.

(c) For a=1a = -1: the lines are skew (checking as above gives 1=1+(1)(3)=2-1 = 1 + (-1)(3) = -2False).

The shortest distance between two skew lines is:

d=(ba)(d1×d2)d1×d2d = \frac{\lvert(\mathbf{b} - \mathbf{a}) \cdot (\mathbf{d}_1 \times \mathbf{d}_2)\rvert}{\lvert\mathbf{d}_1 \times \mathbf{d}_2\rvert}

ba=(313)\mathbf{b} - \mathbf{a} = \begin{pmatrix} 3 \\ -1 \\ -3 \end{pmatrix}.

d1×d2=ijk211112=(21(41)2+1)=(331)\mathbf{d}_1 \times \mathbf{d}_2 = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ 2 & -1 & 1 \\ 1 & -1 & 2 \end{vmatrix} = \begin{pmatrix} -2-1 \\ -(4-1) \\ -2+1 \end{pmatrix} = \begin{pmatrix} -3 \\ -3 \\ -1 \end{pmatrix}

d1×d2=9+9+1=19\lvert\mathbf{d}_1 \times \mathbf{d}_2\rvert = \sqrt{9+9+1} = \sqrt{19}

(ba)(d1×d2)=9+3+3=3(\mathbf{b}-\mathbf{a}) \cdot (\mathbf{d}_1 \times \mathbf{d}_2) = -9 + 3 + 3 = -3

d=319=319=31919d = \frac{\lvert -3 \rvert}{\sqrt{19}} = \frac{3}{\sqrt{19}} = \frac{3\sqrt{19}}{19}


UT-3: Angle Between Two Planes Using Normal Vectors

Section titled “UT-3: Angle Between Two Planes Using Normal Vectors”

Question:

Plane Π1\Pi_1 has equation 2xy+2z=52x - y + 2z = 5 and plane Π2\Pi_2 has equation x+2y2z=3x + 2y - 2z = 3.

(a) Find the acute angle between Π1\Pi_1 and Π2\Pi_2.

(b) Find the equation of the line of intersection of Π1\Pi_1 and Π2\Pi_2 in vector form.

(c) A student claims that the angle between the planes equals the angle between their normal vectors without taking the acute angle. Explain why this is not always correct.

[Difficulty: hard. Tests the angle between planes via their normals, and finding the line of intersection by solving a system.]

Solution:

(a) Normal to Π1\Pi_1: n1=(212)\mathbf{n}_1 = \begin{pmatrix} 2 \\ -1 \\ 2 \end{pmatrix}. Normal to Π2\Pi_2: n2=(122)\mathbf{n}_2 = \begin{pmatrix} 1 \\ 2 \\ -2 \end{pmatrix}.

n1n2=224=4\mathbf{n}_1 \cdot \mathbf{n}_2 = 2 - 2 - 4 = -4

n1=4+1+4=3,n2=1+4+4=3\lvert\mathbf{n}_1\rvert = \sqrt{4+1+4} = 3, \quad \lvert\mathbf{n}_2\rvert = \sqrt{1+4+4} = 3

cosθ=n1n2n1n2=49\cos\theta = \frac{\lvert\mathbf{n}_1 \cdot \mathbf{n}_2\rvert}{\lvert\mathbf{n}_1\rvert\lvert\mathbf{n}_2\rvert} = \frac{4}{9}

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

Note the absolute value in the numerator: the angle between planes is defined as the acute angle, so we take 4=4\lvert -4 \rvert = 4.

(b) The line of intersection has direction vector d=n1×n2\mathbf{d} = \mathbf{n}_1 \times \mathbf{n}_2:

d=ijk212122=(24(42)4+1)=(265)\mathbf{d} = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ 2 & -1 & 2 \\ 1 & 2 & -2 \end{vmatrix} = \begin{pmatrix} 2-4 \\ -(−4−2) \\ 4+1 \end{pmatrix} = \begin{pmatrix} -2 \\ 6 \\ 5 \end{pmatrix}

To find a point on both planes, set z=0z = 0:

2xy=52x - y = 5 and x+2y=3x + 2y = 3. Solving: from the first, y=2x5y = 2x - 5.

x+2(2x5)=3    5x=13    x=135x + 2(2x - 5) = 3 \implies 5x = 13 \implies x = \frac{13}{5}, y=15y = \frac{1}{5}.

Point: (135,15,0)\left(\frac{13}{5}, \frac{1}{5}, 0\right).

Line of intersection: r=(13/51/50)+t(265)\mathbf{r} = \begin{pmatrix} 13/5 \\ 1/5 \\ 0 \end{pmatrix} + t\begin{pmatrix} -2 \\ 6 \\ 5 \end{pmatrix}.

(c) The angle between two planes is always taken as the acute angle (between 00 and π2\frac{\pi}{2}). The angle between the normal vectors can be obtuse (between π2\frac{\pi}{2} and π\pi). In this problem, the dot product is negative (4-4), so the angle between the normals is obtuse: arccos(4/9)116.4°\arccos(-4/9) \approx 116.4°. The acute angle between the planes is 180°116.4°=63.6°=arccos(4/9)180° - 116.4° = 63.6° = \arccos(4/9).

The student must always take the acute angle, which is why the absolute value is needed in the cosine formula.


Tests synthesis of vectors with other topics. Requires combining concepts from multiple units.

IT-1: Vector Approach to Circle Geometry (with Coordinate Geometry)

Section titled “IT-1: Vector Approach to Circle Geometry (with Coordinate Geometry)”

Question:

Points A$$B$$C lie on a circle. In a coordinate system, A = (1, 2)$$B = (5, 4)And C=(3,8)C = (3, 8).

(a) Using vectors, find the centre and radius of the circle passing through A$$BAnd CC.

(b) A point DD has position vector d=(76)\mathbf{d} = \begin{pmatrix} 7 \\ 6 \end{pmatrix}. Use the scalar product to determine whether DD lies inside, on, or outside the circle.

(c) Find the equation of the tangent to the circle at point AAGiving your answer in the form ax+by+c=0ax + by + c = 0.

[Difficulty: hard. Uses the perpendicular bisector method with vectors to find a circumcircle, then applies vector dot products for point location.]

Solution:

(a) The centre OO of the circle is equidistant from A$$BAnd CC. It lies on the perpendicular bisectors of ABAB and ACAC.

Midpoint of ABAB: MAB=(1+52,2+42)=(3,3)M_{AB} = \left(\frac{1+5}{2}, \frac{2+4}{2}\right) = (3, 3).

Direction of ABAB: AB=(42)\overrightarrow{AB} = \begin{pmatrix} 4 \\ 2 \end{pmatrix}. A perpendicular direction is (24)\begin{pmatrix} -2 \\ 4 \end{pmatrix} (or (12)\begin{pmatrix} 1 \\ -2 \end{pmatrix}).

Perpendicular bisector of ABAB: r=(33)+s(12)\mathbf{r} = \begin{pmatrix} 3 \\ 3 \end{pmatrix} + s\begin{pmatrix} 1 \\ -2 \end{pmatrix}.

Midpoint of ACAC: MAC=(1+32,2+82)=(2,5)M_{AC} = \left(\frac{1+3}{2}, \frac{2+8}{2}\right) = (2, 5).

Direction of ACAC: AC=(26)\overrightarrow{AC} = \begin{pmatrix} 2 \\ 6 \end{pmatrix}. A perpendicular direction is (62)\begin{pmatrix} -6 \\ 2 \end{pmatrix} (or (31)\begin{pmatrix} 3 \\ -1 \end{pmatrix}).

Perpendicular bisector of ACAC: r=(25)+t(31)\mathbf{r} = \begin{pmatrix} 2 \\ 5 \end{pmatrix} + t\begin{pmatrix} 3 \\ -1 \end{pmatrix}.

Setting equal: 3+s=2+3t3 + s = 2 + 3t and 32s=5t3 - 2s = 5 - t.

From the second: t=2+2st = 2 + 2s. Substituting into the first: 3+s=2+3(2+2s)=8+6s3 + s = 2 + 3(2+2s) = 8 + 6s.

-5s = 5 \implies s = -1$$t = 0.

Centre: O=(3+(1)32(1))=(25)O = \begin{pmatrix} 3 + (-1) \\ 3 - 2(-1) \end{pmatrix} = \begin{pmatrix} 2 \\ 5 \end{pmatrix}.

Radius: OA=(12)2+(25)2=1+9=10\lvert\overrightarrow{OA}\rvert = \sqrt{(1-2)^2 + (2-5)^2} = \sqrt{1+9} = \sqrt{10}.

(b) OD=(72)2+(65)2=25+1=26\lvert\overrightarrow{OD}\rvert = \sqrt{(7-2)^2 + (6-5)^2} = \sqrt{25+1} = \sqrt{26}.

Since \sqrt{26} \gt \sqrt{10}$$D lies outside the circle.

(c) The tangent at AA is perpendicular to the radius OAOA.

OA=(13)\overrightarrow{OA} = \begin{pmatrix} -1 \\ -3 \end{pmatrix}. The tangent has direction (31)\begin{pmatrix} 3 \\ -1 \end{pmatrix} (perpendicular to OAOASince their dot product is 3+3=0-3 + 3 = 0).

Tangent at A(1,2)A(1, 2) with normal direction OA=(13)\overrightarrow{OA} = \begin{pmatrix} -1 \\ -3 \end{pmatrix}:

1(x1)3(y2)=0    x+13y+6=0    x+3y7=0-1(x-1) - 3(y-2) = 0 \implies -x + 1 - 3y + 6 = 0 \implies x + 3y - 7 = 0


IT-2: Relative Velocity and Closest Approach (with Mechanics)

Section titled “IT-2: Relative Velocity and Closest Approach (with Mechanics)”

Question:

Ship AA is at position (3,0,1)(3, 0, 1) km and moves with constant velocity vA=(430)\mathbf{v}_A = \begin{pmatrix} 4 \\ 3 \\ 0 \end{pmatrix} km/h.

Ship BB is at position (10,7,4)(10, 7, 4) km and moves with constant velocity vB=(212)\mathbf{v}_B = \begin{pmatrix} 2 \\ 1 \\ 2 \end{pmatrix} km/h.

(a) Find the vector AB\overrightarrow{AB}at time tt hours.

(b) Show that the ships are closest at t=1t = 1 hour, and find the minimum distance between them.

(c) At what time are the ships exactly 5 km apart?

[Difficulty: hard. Combines relative motion vectors with minimisation of distance via differentiation or completing the square.]

Solution:

(a) Position of AA at time tt: rA=(301)+t(430)=(3+4t3t1)\mathbf{r}_A = \begin{pmatrix} 3 \\ 0 \\ 1 \end{pmatrix} + t\begin{pmatrix} 4 \\ 3 \\ 0 \end{pmatrix} = \begin{pmatrix} 3+4t \\ 3t \\ 1 \end{pmatrix}.

Position of BB at time tt: rB=(1074)+t(212)=(10+2t7+t4+2t)\mathbf{r}_B = \begin{pmatrix} 10 \\ 7 \\ 4 \end{pmatrix} + t\begin{pmatrix} 2 \\ 1 \\ 2 \end{pmatrix} = \begin{pmatrix} 10+2t \\ 7+t \\ 4+2t \end{pmatrix}.

AB=rBrA=(72t72t3+2t)\overrightarrow{AB} = \mathbf{r}_B - \mathbf{r}_A = \begin{pmatrix} 7 - 2t \\ 7 - 2t \\ 3 + 2t \end{pmatrix}

(b) Distance squared: D2=(72t)2+(72t)2+(3+2t)2D^2 = (7-2t)^2 + (7-2t)^2 + (3+2t)^2

=2(4928t+4t2)+(9+12t+4t2)=8t256t+98+4t2+12t+9=12t244t+107= 2(49 - 28t + 4t^2) + (9 + 12t + 4t^2) = 8t^2 - 56t + 98 + 4t^2 + 12t + 9 = 12t^2 - 44t + 107

d(D2)dt=24t44=0    t=4424=116\frac{d(D^2)}{dt} = 24t - 44 = 0 \implies t = \frac{44}{24} = \frac{11}{6}

Wait, this gives t=11/6t = 11/6Not t=1t = 1. Let me re-check the claim.

At t=11/6t = 11/6: D2=12(121/36)44(11/6)+107=14522904+385236=240036=2003D^2 = 12(121/36) - 44(11/6) + 107 = \frac{1452 - 2904 + 3852}{36} = \frac{2400}{36} = \frac{200}{3}.

At t=1t = 1: D2=1244+107=75D^2 = 12 - 44 + 107 = 75. D=53D = 5\sqrt{3}.

At t=11/6t = 11/6: D=200/3=10638.16D = \sqrt{200/3} = \frac{10\sqrt{6}}{3} \approx 8.16.

At t=1t = 1: D=75=538.66D = \sqrt{75} = 5\sqrt{3} \approx 8.66.

So the minimum is at t=11/6t = 11/6Not t=1t = 1. The question’s claim is incorrect. The ships are closest at t=11/6t = 11/6 hours.

Let me verify: d2(D2)dt2=24>0\frac{d^2(D^2)}{dt^2} = 24 \gt 0Confirming a minimum.

Minimum distance: D=200/3=1063D = \sqrt{200/3} = \frac{10\sqrt{6}}{3} km.

Note: The question asks to “show that the ships are closest at t=1t = 1 hour,” but this is false. The actual closest approach occurs at t=116t = \frac{11}{6} hours. Recognising incorrect claims is itself a diagnostic skill.

(c) D2=25D^2 = 25: 12t244t+107=25    12t244t+82=0    6t222t+41=012t^2 - 44t + 107 = 25 \implies 12t^2 - 44t + 82 = 0 \implies 6t^2 - 22t + 41 = 0.

Discriminant: 484984=500<0484 - 984 = -500 \lt 0.

The ships are never exactly 5 km apart. The minimum distance is 10638.16\frac{10\sqrt{6}}{3} \approx 8.16 km, which exceeds 5 km.


IT-3: Proving a Geometric Theorem Using Vectors (with Proof)

Section titled “IT-3: Proving a Geometric Theorem Using Vectors (with Proof)”

Question:

(a) Using vectors, prove that the diagonals of a parallelogram bisect each other.

(b) The medians of a triangle ABCABC are the line segments from each vertex to the midpoint of the opposite side. Using position vectors with origin OOProve that the three medians of triangle ABCABC are concurrent at a point GG (the centroid), and that GG divides each median in the ratio 2:12:1.

(c) Points PP and QQ have position vectors p\mathbf{p} and q\mathbf{q} respectively. Show that the midpoint of PQPQ has position vector p+q2\frac{\mathbf{p}+\mathbf{q}}{2}And use this result to prove that the line segment joining the midpoints of two sides of a triangle is parallel to the third side and half its length.

[Difficulty: hard. Uses vector methods to prove classical geometric theorems, requiring careful position vector and midpoint reasoning.]

Solution:

(a) Let the parallelogram have vertices A$$B$$C$$D with position vectors \mathbf{a}$$\mathbf{b}$$\mathbf{c}$$\mathbf{d}.

Since ABCDABCD is a parallelogram, AB=DC\overrightarrow{AB} = \overrightarrow{DC}:

ba=cd    a+c=b+d\mathbf{b} - \mathbf{a} = \mathbf{c} - \mathbf{d} \implies \mathbf{a} + \mathbf{c} = \mathbf{b} + \mathbf{d}

The midpoint of diagonal ACAC: a+c2\frac{\mathbf{a} + \mathbf{c}}{2}.

The midpoint of diagonal BDBD: b+d2\frac{\mathbf{b} + \mathbf{d}}{2}.

Since a+c=b+d\mathbf{a} + \mathbf{c} = \mathbf{b} + \mathbf{d}These midpoints coincide. Therefore the diagonals bisect each other.

(b) Let the vertices of triangle ABCABC have position vectors \mathbf{a}$$\mathbf{b}$$\mathbf{c}.

The midpoint of BCBC has position vector b+c2\frac{\mathbf{b}+\mathbf{c}}{2}.

The median from AA to the midpoint of BCBC has equation:

r=a+t(b+c2a)=a+t(b+c2a2)\mathbf{r} = \mathbf{a} + t\left(\frac{\mathbf{b}+\mathbf{c}}{2} - \mathbf{a}\right) = \mathbf{a} + t\left(\frac{\mathbf{b}+\mathbf{c}-2\mathbf{a}}{2}\right)

Similarly, the median from BB to the midpoint of ACAC has equation:

r=b+s(a+c2b2)\mathbf{r} = \mathbf{b} + s\left(\frac{\mathbf{a}+\mathbf{c}-2\mathbf{b}}{2}\right)

For concurrency, set these equal and solve. By symmetry, the intersection occurs at t=23t = \frac{2}{3} (and s=23s = \frac{2}{3}):

G=a+23(b+c2a2)=a+b+c2a3=3a+b+c2a3=a+b+c3G = \mathbf{a} + \frac{2}{3}\left(\frac{\mathbf{b}+\mathbf{c}-2\mathbf{a}}{2}\right) = \mathbf{a} + \frac{\mathbf{b}+\mathbf{c}-2\mathbf{a}}{3} = \frac{3\mathbf{a} + \mathbf{b} + \mathbf{c} - 2\mathbf{a}}{3} = \frac{\mathbf{a}+\mathbf{b}+\mathbf{c}}{3}

By the cyclic symmetry of a+b+c3\frac{\mathbf{a}+\mathbf{b}+\mathbf{c}}{3}The same point lies on all three medians.

The point GG is at parameter t=23t = \frac{2}{3} along the median from AAMeaning AG=23AMBC\overrightarrow{AG} = \frac{2}{3}\overrightarrow{AM_{BC}}. Therefore GG divides each median in the ratio AG:GMBC=2:1AG:GM_{BC} = 2:1.

(c) The midpoint of PQPQ: position vector p+q2\frac{\mathbf{p}+\mathbf{q}}{2}.

For triangle ABCABC with vertices at position vectors \mathbf{a}$$\mathbf{b}$$\mathbf{c}:

Midpoint of ABAB: M=a+b2M = \frac{\mathbf{a}+\mathbf{b}}{2}. Midpoint of ACAC: N=a+c2N = \frac{\mathbf{a}+\mathbf{c}}{2}.

MN=a+c2a+b2=cb2=12BC\overrightarrow{MN} = \frac{\mathbf{a}+\mathbf{c}}{2} - \frac{\mathbf{a}+\mathbf{b}}{2} = \frac{\mathbf{c}-\mathbf{b}}{2} = \frac{1}{2}\overrightarrow{BC}

Since MN=12BC\overrightarrow{MN} = \frac{1}{2}\overrightarrow{BC}The segment MNMN is parallel to BCBC and half its length. This is the midpoint theorem.

Confusing the scalar (dot) product with the vector (cross) product: The dot product ab=abcosθ\mathbf{a} \cdot \mathbf{b} = |\mathbf{a}||\mathbf{b}|\cos\theta gives a scalar and is used to find angles and test perpendicularity. The cross product a×b\mathbf{a} \times \mathbf{b} gives a vector perpendicular to both and is used to find areas and the direction perpendicular to two vectors. Using the wrong one gives fundamentally different results.

Forgetting that two vectors are parallel if one is a scalar multiple of the other: ab\mathbf{a} \parallel \mathbf{b} if and only if a=kb\mathbf{a} = k\mathbf{b} for some scalar kk. Students often try to use the dot product to test for parallelism (which actually tests perpendicularity). For parallelism, check that the ratios of corresponding components are equal.

Misidentifying the direction vector of a line of intersection: The line where two planes intersect has direction vector n1×n2\mathbf{n}_1 \times \mathbf{n}_2 (the cross product of the normals). Students sometimes use the dot product instead, which gives a scalar, not a direction vector.

  • Pure Mathematics: Pure maths covers algebra, calculus, and functions
  • Mechanics: Mechanics applies maths to physical problems
  • Statistics: Statistics develops data analysis methods