Mathematics · Book 2 · Grades 10–12

High School Mathematics

High School Mathematics · Grades 10–12

15Vectors and Lines in the Plane

Vectors encode displacements; lines are their trajectories. The key new tool of this chapter is the determinant, a single number that decides whether two vectors are collinear — and, from there, produces equations of lines and settles alignment and parallelism questions by pure computation. The same ideas extend to space in Chapter 31.

15.1 Vectors: a recap

Definition 15.1 (Vector, coordinates)

A vector u\vec u represents a displacement: all arrows with the same direction, orientation and length represent the same vector. In a coordinate system, u(x,y)\vec u\,(x, y) records the displacement (xx horizontally, yy vertically); for points A(xA,yA)A(x_A, y_A) and B(xB,yB)B(x_B, y_B),

AB(xBxA, yByA).\vect{AB}\,\bigl(x_B - x_A,\ y_B - y_A\bigr).

Vectors add coordinate-wise, and λu\lambda\vec u has coordinates (λx,λy)(\lambda x, \lambda y).

Proposition 15.2 (Midpoint)

The midpoint MM of the segment [AB][AB] has coordinates (xA+xB2, yA+yB2)\left(\frac{x_A + x_B}{2},\ \frac{y_A + y_B}{2}\right).

Proof. MM is characterized by AM=12AB\vect{AM} = \frac12\vect{AB}: coordinate-wise, xMxA=12(xBxA)x_M - x_A = \frac12(x_B - x_A), so xM=xA+xB2x_M = \frac{x_A + x_B}{2}, and similarly for yMy_M.

15.2 Collinearity and the determinant

Definition 15.3 (Collinear vectors)

Two vectors are collinear if one is a scalar multiple of the other: v=λu\vec v = \lambda \vec u for some λR\lambda \in \R (or u=0\vec u = \vec 0). Geometrically: they have the same direction, or one of them is zero.

Definition 15.4 (Determinant)

The determinant of u(x,y)\vec u\,(x, y) and v(x,y)\vec v\,(x', y') is

det(u,v)=xxyy=xyxy.\det(\vec u, \vec v) = \begin{vmatrix} x & x' \\ y & y' \end{vmatrix} = x y' - x' y .

Theorem 15.5 (Collinearity criterion)

Two vectors u\vec u and v\vec v are collinear if and only if det(u,v)=0\det(\vec u, \vec v) = 0.

Proof. (\Rightarrow) If v=λu\vec v = \lambda\vec u, then x=λxx' = \lambda x and y=λyy' = \lambda y, so det(u,v)=x(λy)(λx)y=0\det(\vec u, \vec v) = x(\lambda y) - (\lambda x)y = 0; if u=0\vec u = \vec 0, the determinant is trivially 00.

(\Leftarrow) Suppose xyxy=0xy' - x'y = 0 and u0\vec u \neq \vec 0, say x0x \neq 0 (the case y0y \neq 0 is symmetric). Set λ=xx\lambda = \frac{x'}{x}. Then x=λxx' = \lambda x by construction, and the relation xy=xy=λxyxy' = x'y = \lambda x y gives, after dividing by x0x \neq 0, y=λyy' = \lambda y. Hence v=λu\vec v = \lambda \vec u.

Example 15.6

u(3,2)\vec u\,(3, -2) and v(6,4)\vec v\,(-6, 4): det=3×4(6)×(2)=1212=0\det = 3 \times 4 - (-6) \times (-2) = 12 - 12 = 0, collinear (indeed v=2u\vec v = -2\vec u). u(3,2)\vec u\,(3, -2) and w(2,1)\vec w\,(2, 1): det=3+4=70\det = 3 + 4 = 7 \neq 0, not collinear.

Method 15.7 (Alignment of three points)

AA, BB, CC are aligned if and only if AB\vect{AB} and AC\vect{AC} are collinear: compute both vectors and check det(AB,AC)=0\det\bigl(\vect{AB}, \vect{AC}\bigr) = 0.

15.3 Cartesian equations of lines

Definition 15.8 (Direction vector)

A direction vector of a line dd is any nonzero vector u\vec u such that AB\vect{AB} is collinear with u\vec u for all points A,BA, B of dd.

Theorem 15.9 (Cartesian equation)

A line with direction vector u(b,a)\vec u\,(-b, a) admits an equation of the form

ax+by+c=0(a,b)(0,0).ax + by + c = 0 \qquad (a, b) \neq (0, 0).

Conversely, every such equation describes a line with direction vector u(b,a)\vec u\,(-b, a).

Proof. Let dd pass through A(xA,yA)A(x_A, y_A) with direction u(b,a)\vec u\,(-b, a). A point M(x,y)M(x, y) lies on dd exactly when AM\vect{AM} is collinear with u\vec u, i.e. (Theorem 15.5)

0=det(AM,u)=(xxA)a(b)(yyA)=ax+by(axA+byA),0 = \det\bigl(\vect{AM}, \vec u\bigr) = (x - x_A)\,a - (-b)(y - y_A) = ax + by - (a x_A + b y_A),

an equation of the announced form with c=(axA+byA)c = -(a x_A + b y_A). Conversely, the solutions of ax+by+c=0ax + by + c = 0 with, say, b0b \neq 0 are the points (x,ax+cb)\left(x, -\frac{a x + c}{b}\right): subtracting two of them shows every chord is collinear with (b,a)(-b, a), and one solution always exists — it is the line through it directed by (b,a)(-b, a).

Method 15.10 (Line through two points)

To find an equation of the line (AB)(AB): compute the direction vector AB(xBxA,yByA)\vect{AB}\,(x_B - x_A, y_B - y_A); match it with (b,a)(-b, a), i.e. take a=yByAa = y_B - y_A and b=(xBxA)b = -(x_B - x_A); determine cc by plugging in the coordinates of AA.

Example 15.11

Line through A(1,2)A(1, 2) and B(4,3)B(4, 3): AB(3,1)\vect{AB}\,(3, 1), so a=1a = 1, b=3b = -3, and the equation is x3y+c=0x - 3y + c = 0. Plugging in AA: 16+c=01 - 6 + c = 0, so c=5c = 5. Equation: x3y+5=0x - 3y + 5 = 0. Check with BB: 49+5=04 - 9 + 5 = 0.

Remark 15.12

When b0b \neq 0, the equation can be solved for yy: y=mx+py = mx + p with slope m=abm = -\frac ab. The cartesian form ax+by+c=0ax + by + c = 0 is more general: it also covers vertical lines (b=0b = 0), which have no slope.

The line x - 3y + 5 = 0 of , its direction vector u = AB (red, here scaled by 1/2), and the two points used to build the equation.
The line x3y+5=0x - 3y + 5 = 0 of Example 15.11, its direction vector u=AB\vec u = \vect{AB} (red, here scaled by 12\frac12), and the two points used to build the equation.

15.4 Parametric representation

Definition 15.13 (Parametric representation)

The line through A(xA,yA)A(x_A, y_A) with direction u(α,β)\vec u\,(\alpha, \beta) is the set of points

M(xA+tα, yA+tβ),tR.M\bigl(x_A + t\alpha,\ y_A + t\beta\bigr), \qquad t \in \R .

The number tt is the parameter: each value of tt produces one point of the line, as if travelling along it at constant speed u\vec u.

Example 15.14

The line of Example 15.11 is also {(1+3t, 2+t):tR}\{(1 + 3t,\ 2 + t) : t \in \R\}: t=0t = 0 gives AA, t=1t = 1 gives BB. Eliminating tt (t=y2t = y - 2, so x=1+3(y2)x = 1 + 3(y-2)) recovers x3y+5=0x - 3y + 5 = 0.

15.5 Relative positions of two lines

Proposition 15.15 (Parallel or intersecting)

Two lines with direction vectors u\vec u and v\vec v are parallel if and only if det(u,v)=0\det(\vec u, \vec v) = 0. In equation form: d:ax+by+c=0d : ax + by + c = 0 and d:ax+by+c=0d' : a'x + b'y + c' = 0 are parallel if and only if abab=0ab' - a'b = 0. Non-parallel lines meet in exactly one point.

Proof. Parallelism means collinear directions, which is Theorem 15.5; with u(b,a)\vec u\,(-b, a) and v(b,a)\vec v\,(-b', a'), the determinant is (b)a(b)a=abab(-b)a' - (-b')a = ab' - a'b. If the lines are not parallel, solving the two equations simultaneously (by substitution or combination) leads to a unique solution: the system behaves like a nonzero-determinant 2×22 \times 2 system.

Method 15.16 (Intersection of two lines)

Solve the system of the two equations: isolate one unknown in one equation and substitute into the other, or combine the equations to eliminate one unknown. Always check the resulting point in both equations.

Example 15.17

Intersect d:x3y+5=0d: x - 3y + 5 = 0 and d:2x+y4=0d': 2x + y - 4 = 0. From dd': y=42xy = 4 - 2x. Substituting into dd:

x3(42x)+5=0    x12+6x+5=0    7x=7    x=1,x - 3(4 - 2x) + 5 = 0 \iff x - 12 + 6x + 5 = 0 \iff 7x = 7 \iff x = 1,

then y=2y = 2. The lines meet at (1,2)(1, 2). Check in dd: 16+5=01 - 6 + 5 = 0.

15.6 Exercises

Exercise 15.1

Given A(2,1)A(2, -1), B(5,3)B(5, 3) and C(1,1)C(-1, 1), compute the coordinates of AB\vect{AB}, AC\vect{AC}, AB+AC\vect{AB} + \vect{AC} and 2AB3AC2\vect{AB} - 3\vect{AC}, and the midpoint of [BC][BC].

Solution

Solution of Exercise 15.1.

AB(3,4)\vect{AB}\,(3, 4), AC(3,2)\vect{AC}\,(-3, 2), AB+AC(0,6)\vect{AB} + \vect{AC}\,(0, 6), 2AB3AC(6+9, 86)=(15,2)2\vect{AB} - 3\vect{AC}\,(6 + 9,\ 8 - 6) = (15, 2). The midpoint of [BC][BC] is (5+(1)2,3+12)=(2,2)\left(\frac{5 + (-1)}{2}, \frac{3+1}{2}\right) = (2, 2).

Exercise 15.2

Are the vectors collinear?

u(4,6) and v(2,3);u(2,5) and v(3,7);u(0,3) and v(0,8).\vec u\,(4, -6) \text{ and } \vec v\,(-2, 3); \qquad \vec u\,(2, 5) \text{ and } \vec v\,(3, 7); \qquad \vec u\,(0, 3) \text{ and } \vec v\,(0, -8).
Solution

Solution of Exercise 15.2.

det=4×3(2)×(6)=1212=0\det = 4 \times 3 - (-2) \times (-6) = 12 - 12 = 0: collinear (indeed v=12u\vec v = -\frac12 \vec u).

det=2×73×5=10\det = 2 \times 7 - 3 \times 5 = -1 \neq 0: not collinear.

det=0×(8)0×3=0\det = 0 \times (-8) - 0 \times 3 = 0: collinear (both vertical).

Exercise 15.3

Find a cartesian equation of the line through A(2,1)A(2, 1) with direction vector u(3,1)\vec u\,(3, -1), then of the line through B(0,4)B(0, 4) and C(2,0)C(2, 0).

Solution

Solution of Exercise 15.3.

Through A(2,1)A(2,1), direction (3,1)(3, -1): matching (b,a)=(3,1)(-b, a) = (3, -1) gives a=1a = -1, b=3b = -3, so x3y+c=0-x - 3y + c = 0; plugging in AA: 23+c=0-2 - 3 + c = 0, c=5c = 5. Multiplying by 1-1: x+3y5=0x + 3y - 5 = 0.

Through B(0,4)B(0,4) and C(2,0)C(2,0): BC(2,4)\vect{BC}\,(2, -4), so a=4a = -4, b=2b = -2: 4x2y+c=0-4x - 2y + c = 0; plugging in BB: 8+c=0-8 + c = 0, c=8c = 8. Simplifying by 2-2: 2x+y4=02x + y - 4 = 0. Check with CC: 4+04=04 + 0 - 4 = 0.

Exercise 15.4

For the line d:3x2y+6=0d: 3x - 2y + 6 = 0, give a direction vector, the intersections with the two coordinate axes, and decide whether the points P(2,6)P(2, 6) and Q(1,4)Q(1, 4) belong to dd.

Solution

Solution of Exercise 15.4.

A direction vector is (b,a)=(2,3)(-b, a) = (2, 3). Intersections: x=0x = 0 gives y=3y = 3, point (0,3)(0, 3); y=0y = 0 gives x=2x = -2, point (2,0)(-2, 0). For P(2,6)P(2,6): 3×22×6+6=03 \times 2 - 2 \times 6 + 6 = 0, so PdP \in d. For Q(1,4)Q(1,4): 38+6=103 - 8 + 6 = 1 \neq 0, so QdQ \notin d.

Exercise 15.5 ★★

Are the points A(1,2)A(1, 2), B(4,8)B(4, 8), C(2,4)C(-2, -4) aligned? Same question for D(0,1)D(0, 1), E(2,4)E(2, 4), F(5,9)F(5, 9).

Solution

Solution of Exercise 15.5.

AB(3,6)\vect{AB}\,(3, 6) and AC(3,6)\vect{AC}\,(-3, -6): det=3×(6)(3)×6=0\det = 3 \times (-6) - (-3) \times 6 = 0, so AA, BB, CC are aligned.

DE(2,3)\vect{DE}\,(2, 3) and DF(5,8)\vect{DF}\,(5, 8): det=2×85×3=10\det = 2 \times 8 - 5 \times 3 = 1 \neq 0: DD, EE, FF are not aligned.

Exercise 15.6 ★★

Determine the intersection point, if any:

d:2x+y7=0  and  d:xy+1=0;e:x2y+3=0  and  e:2x+4y+1=0.d: 2x + y - 7 = 0 \ \text{ and }\ d': x - y + 1 = 0; \qquad e: x - 2y + 3 = 0 \ \text{ and }\ e': -2x + 4y + 1 = 0 .
Solution

Solution of Exercise 15.6.

First pair: adding the two equations, (2x+y7)+(xy+1)=3x6=0(2x + y - 7) + (x - y + 1) = 3x - 6 = 0, so x=2x = 2, then y=x+1=3y = x + 1 = 3: they meet at (2,3)(2, 3) (check: 4+37=04 + 3 - 7 = 0).

Second pair: abab=1×4(2)×(2)=0ab' - a'b = 1 \times 4 - (-2) \times (-2) = 0, so the lines are parallel; multiplying ee by 2-2 gives 2x+4y6=0-2x + 4y - 6 = 0, which differs from ee' (61-6 \neq 1): strictly parallel, no intersection.

Exercise 15.7 ★★

Give a parametric representation of the line d:2xy+3=0d: 2x - y + 3 = 0, and a cartesian equation of the line {(1+2t, 3+t):tR}\bigl\{(1 + 2t,\ -3 + t) : t \in \R\bigr\}.

Solution

Solution of Exercise 15.7.

For d:2xy+3=0d: 2x - y + 3 = 0: direction (b,a)=(1,2)(-b, a) = (1, 2) and the point (0,3)(0, 3) lies on dd, so d={(t, 3+2t):tR}d = \{(t,\ 3 + 2t) : t \in \R\}.

For the parametric line through (1,3)(1, -3) with direction (2,1)(2, 1): a=1a = 1, b=2b = -2, so x2y+c=0x - 2y + c = 0; plugging in (1,3)(1, -3): 1+6+c=01 + 6 + c = 0, c=7c = -7. Equation: x2y7=0x - 2y - 7 = 0 (check t=1t = 1, point (3,2)(3, -2): 3+47=03 + 4 - 7 = 0).

Exercise 15.8 ★★

Find the equation of the line through P(1,2)P(1, -2) parallel to d:4x3y+2=0d: 4x - 3y + 2 = 0, and the value of mm for which the line mx+2y5=0mx + 2y - 5 = 0 is parallel to dd.

Solution

Solution of Exercise 15.8.

A parallel line has the same (a,b)(a, b): 4x3y+c=04x - 3y + c = 0; through P(1,2)P(1, -2): 4+6+c=04 + 6 + c = 0, so c=10c = -10 and the line is 4x3y10=04x - 3y - 10 = 0.

Parallelism of mx+2y5=0mx + 2y - 5 = 0 with dd requires abab=4×2m×(3)=8+3m=0ab' - a'b = 4 \times 2 - m \times (-3) = 8 + 3m = 0, so m=83m = -\frac83.

Exercise 15.9 ★★

Let A(1,0)A(-1, 0), B(3,2)B(3, 2) and C(1,4)C(1, -4). Find a cartesian equation of the median of the triangle ABCABC issued from CC (the line joining CC to the midpoint of [AB][AB]).

Solution

Solution of Exercise 15.9.

The midpoint of [AB][AB] is M ⁣(1+32,0+22)=(1,1)M\!\left(\frac{-1+3}{2}, \frac{0+2}{2}\right) = (1, 1). The median is the line (CM)(CM) with C(1,4)C(1, -4): both points have abscissa 11, so the median is the vertical line

x1=0.x - 1 = 0 .

Exercise 15.10 ★★

For which value(s) of the parameter mm are the vectors u(m,2)\vec u\,(m, 2) and v(3,m1)\vec v\,(3, m - 1) collinear?

Solution

Solution of Exercise 15.10.

det(u,v)=m(m1)3×2=m2m6\det(\vec u, \vec v) = m(m - 1) - 3 \times 2 = m^2 - m - 6. It vanishes when m2m6=0m^2 - m - 6 = 0: Δ=1+24=25\Delta = 1 + 24 = 25, roots m=1±52m = \frac{1 \pm 5}{2}, i.e. m=3m = 3 or m=2m = -2.

Exercise 15.11 ★★★

Let ABCDABCD be a parallelogram, II the midpoint of [AB][AB], and JJ the point defined by DJ=23DI\vect{DJ} = \frac23 \vect{DI}. Working in the coordinate system where A(0,0)A(0,0), B(1,0)B(1,0), D(0,1)D(0,1) (so C(1,1)C(1,1)):

  1. Compute the coordinates of II and JJ.
  2. Show that AA, JJ and CC are aligned. (A nice fact: the line (DI)(DI) cuts the diagonal (AC)(AC) one third of the way up.)
Solution

Solution of Exercise 15.11.

1. I=(12,0)I = \left(\frac12, 0\right). Then DI=(120, 01)=(12,1)\vect{DI} = \left(\frac12 - 0,\ 0 - 1\right) = \left(\frac12, -1\right) and DJ=23DI=(13,23)\vect{DJ} = \frac23\vect{DI} = \left(\frac13, -\frac23\right), so

J=D+DJ=(13, 13).J = D + \vect{DJ} = \left(\frac13,\ \frac13\right).

2. AJ(13,13)\vect{AJ}\left(\frac13, \frac13\right) and AC(1,1)\vect{AC}\,(1, 1): det=13×11×13=0\det = \frac13 \times 1 - 1 \times \frac13 = 0, so AA, JJ, CC are aligned — in fact AJ=13AC\vect{AJ} = \frac13\vect{AC}: the line (DI)(DI) cuts the diagonal (AC)(AC) at exactly one third of its length from AA.

15.7 Problem: Collision courses and clever coordinates

Problem 15.1

Weekend problem — crossing paths is not colliding: closest approach at sea, and theorems proved by choosing the right frame

Two ships’ straight courses cross — must the ships collide? Not unless they reach the crossing at the same time: paths are sets of points, motions are parametric, and confusing the two has sunk real ships. This problem runs a small vessel-traffic service on parametric lines (Definition 15.13), then turns to pure geometry with the other superpower of coordinates: choosing them cleverly, as in Exercise 15.11, to make classical theorems compute themselves.

Part I — Lines, three ways.

  1. Give a parametric representation of the line through A(1,2)A(1, 2) with direction vector u(3,1)\vec u(3, -1), then eliminate the parameter to obtain a Cartesian equation.
  2. For the line 2x5y+3=02x - 5y + 3 = 0: read off a direction vector (Theorem 15.9), find one point, and write a parametric representation.
  3. Compute the intersection point of the two lines of questions 1 and 2 (Method 15.16).
  4. Confirm with the determinant (Theorem 15.5) that those two lines had to intersect; then show that 2x5y+3=02x - 5y + 3 = 0 and 4x+10y+1=0-4x + 10y + 1 = 0 are strictly parallel.
  5. Are A(2,1)A(2, 1), B(5,3)B(5, 3), C(11,7)C(11, 7) aligned (Method 15.7)?

Part II — The vessel-traffic service. At time tt (hours), ship PP is at (2t, 3+t)(2t,\ 3 + t) and ship QQ at (10t, 2t1)(10 - t,\ 2t - 1) (distances in nautical miles).

  1. Find the Cartesian equations of the two paths, and compute where the paths cross.
  2. At what time does each ship pass the crossing point? Do the ships collide? State the general warning in one sentence: crossing paths against meeting motions.
  3. Compute the squared distance D2(t)D^2(t) between the ships at time tt, and reduce it to a quadratic in tt. At what time are the ships closest, and how close do they come (Problem 10.1 vertex technology)?
  4. Regulations demand a separation of at least 11 mile. Is it violated? If so, solve D2(t)<1D^2(t) < 1 and give the duration of the violation.
  5. Explain why, for any two ships on straight courses at constant speeds, D2(t)D^2(t) is always a quadratic function of tt — so “closest point of approach” is always a vertex computation.
  6. Interception: a patrol boat starts at the origin at t=0t = 0 with constant velocity (a,b)(a, b) and must meet ship PP exactly at t=3t = 3. Compute the required (a,b)(a, b) and the patrol boat’s speed.

Part III — Clever coordinates. Work in the frame of Exercise 15.11: the parallelogram ABCDABCD becomes A(0,0)A(0,0), B(1,0)B(1,0), C(1,1)C(1,1), D(0,1)D(0,1); let II be the midpoint of [AB][AB] and KK the midpoint of [CD][CD].

  1. Compute a Cartesian equation of the line (DI)(DI).
  2. Intersect (DI)(DI) with the diagonal (AC)(AC): recover Exercise 15.11’s fact — the cut lies exactly one third of the way up the diagonal.
  3. Now the line (BK)(BK): find its equation, intersect with (AC)(AC), and conclude the full classical theorem: the cevians (DI)(DI) and (BK)(BK) trisect the diagonal (AC)(AC).
  4. Why was it legitimate to prove the theorem in this one special frame? (What does the choice of coordinates preserve, and what does the statement involve?) Answer in two or three sentences.
  5. One more trisection for practice: let EE be the midpoint of [BC][BC]. Where does the line (AE)(AE) cut the other diagonal (DB)(DB)?

Part IV — Position puzzles.

  1. Are the three lines x+y=4x + y = 4, 2xy=22x - y = 2, x2y=2x - 2y = -2 concurrent? (Intersect two, test the third.)
  2. For each real mm, let dmd_m be the line mxy+23m=0mx - y + 2 - 3m = 0. Show that every dmd_m passes through one fixed point. (Group the terms in mm.)
  3. In the family (dm)(d_m): which member is parallel to y=2x+7y = 2x + 7? Which passes through the origin?
  4. Finale — the three costumes of a line: Cartesian (membership tests in one substitution), reduced (slope and graph at sight), parametric (motion, timing, interception); the determinant as parallelism oracle; and the well-chosen frame as a theorem factory. One sentence each.
Solution

Solution of Problem 15.1.

1. x=1+3tx = 1 + 3t, y=2ty = 2 - t. From the second, t=2yt = 2 - y; substituting: x=1+3(2y)=73yx = 1 + 3(2 - y) = 7 - 3y: Cartesian equation x+3y7=0x + 3y - 7 = 0.

2. For ax+by+c=0ax + by + c = 0, a direction vector is (b,a)(-b, a): here (5,2)(5, 2). A point: y=1y = 1 gives x=1x = 1: (1,1)(1, 1). Parametric: x=1+5tx = 1 + 5t, y=1+2ty = 1 + 2t.

3. From x=73yx = 7 - 3y in 2x5y+3=02x - 5y + 3 = 0: 146y5y+3=014 - 6y - 5y + 3 = 0, so y=1711y = \frac{17}{11} and x=75111=2611x = 7 - \frac{51}{11} = \frac{26}{11}: the point (2611,1711)\left(\frac{26}{11}, \frac{17}{11}\right).

4. Directions (5,2)(5, 2) and (3,1)(3, -1): det=5×(1)2×3=110\det = 5 \times (-1) - 2 \times 3 = -11 \neq 0: intersecting, as found. For the second pair: directions (5,2)(5, 2) and (10,4)(10, 4) have det=0\det = 0 (parallel), and doubling 2x5y+3=02x - 5y + 3 = 0 gives 4x+10y6=04x+10y+1=0-4x + 10y - 6 = 0 \neq -4x + 10y + 1 = 0: strictly parallel.

5. AB(3,2)\vect{AB}(3, 2), AC(9,6)\vect{AC}(9, 6): det=1818=0\det = 18 - 18 = 0: aligned.

6. PP: from x=2tx = 2t, y=3+ty = 3 + t: y=3+x2y = 3 + \frac x2. QQ: from x=10tx = 10 - t: t=10xt = 10 - x, so y=2(10x)1=192xy = 2(10 - x) - 1 = 19 - 2x. Crossing: 3+x2=192x3 + \frac x2 = 19 - 2x gives x=6.4x = 6.4, y=6.2y = 6.2: the paths cross at (6.4, 6.2)(6.4,\ 6.2).

7. PP passes there when 2t=6.42t = 6.4: t=3.2t = 3.2 h. QQ when 10t=6.410 - t = 6.4: t=3.6t = 3.6 h. Twenty-four minutes apart: no collision. Warning: a chart shows paths; only the parametric clocks say whether two motions occupy the same point at the same instant.

8. D2(t)=(3t10)2+(4t)2=10t268t+116D^2(t) = (3t - 10)^2 + (4 - t)^2 = 10t^2 - 68t + 116: vertex at t=6820=3.4t = \frac{68}{20} = 3.4 h, where D2=0.4D^2 = 0.4: closest approach D=0.40.63D = \sqrt{0.4} \approx 0.63 mile at t=3.4t = 3.4.

9. Violated: 0.63<10.63 < 1. D2(t)<1D^2(t) < 1 reads 10t268t+115<010t^2 - 68t + 115 < 0: Δ=46244600=24\Delta = 4624 - 4600 = 24, roots 68±2420=3.4±0.245\frac{68 \pm \sqrt{24}}{20} = 3.4 \pm 0.245: the ships are too close from t3.16t \approx 3.16 to t3.64t \approx 3.64 — about 2929 minutes of infraction. One of them must alter course.

10. Each coordinate of each ship is an affine function of tt, so each difference of coordinates is affine, and D2D^2 — a sum of two squared affine functions — is a quadratic (with nonnegative leading coefficient). Closest approach is therefore always read off a vertex.

11. Meeting PP at t=3t = 3, i.e. at (6,6)(6, 6): (3a,3b)=(6,6)(3a, 3b) = (6, 6) gives (a,b)=(2,2)(a, b) = (2, 2), speed 82.8\sqrt{8} \approx 2.8 knots.

12. D(0,1)D(0, 1), I(12,0)I\left(\frac12, 0\right): direction (12,1)\left(\frac12, -1\right), i.e. (1,2)(1, -2): equation 2x+y=12x + y = 1.

13. (AC)(AC): y=xy = x. Then 2x+x=12x + x = 1: x=13x = \frac13: the point (13,13)\left(\frac13, \frac13\right), one third of the way from AA to CC.

14. B(1,0)B(1, 0), K(12,1)K\left(\frac12, 1\right): direction (12,1)\left(-\frac12, 1\right), equation 2x+y=22x + y = 2. With y=xy = x: x=23x = \frac23: the point (23,23)\left(\frac23, \frac23\right). The two cevians cut (AC)(AC) at its two trisection points: theorem proved, twice three lines of arithmetic.

15. Any parallelogram is carried onto the unit square by choosing AA as origin and AB\vect{AB}, AD\vect{AD} as the two axes’ units. That choice preserves everything the theorem speaks of — midpoints, alignment, and ratios along a given line (all expressible with vectors and scalars) — so proving the statement in the square proves it for every parallelogram. (It would not transport lengths or angles: those the frame distorts.)

16. E(1,12)E\left(1, \frac12\right): line (AE)(AE): y=x2y = \frac x2. Diagonal (DB)(DB): from (0,1)(0,1) to (1,0)(1,0): y=1xy = 1 - x. Intersection: x2=1x\frac x2 = 1 - x: x=23x = \frac23: the point (23,13)\left(\frac23, \frac13\right) — again a trisection point, now of the other diagonal. Midpoint cevians love thirds.

17. First two: x+y=4x + y = 4 and 2xy=22x - y = 2 give 3x=63x = 6: (2,2)(2, 2). Third: 24=22 - 4 = -2: satisfied. Concurrent at (2,2)(2, 2).

18. mxy+23m=m(x3)+(2y)=0mx - y + 2 - 3m = m(x - 3) + (2 - y) = 0: for the equation to hold for every mm, take x=3x = 3, y=2y = 2 — and indeed every dmd_m contains (3,2)(3, 2). A pencil of lines through one point, one line per slope mm.

19. Parallel to y=2x+7y = 2x + 7: slope m=2m = 2, the line 2xy4=02x - y - 4 = 0. Through the origin: 23m=02 - 3m = 0: m=23m = \frac23.

20. Cartesian: plug in a point, membership answered. Reduced: slope and intercept visible, graph immediate. Parametric: the clock built in — collisions, closest approach, interception. The determinant: one multiplication cross, and parallelism is decided. The chosen frame: a parallelogram becomes a unit square, and a classical trisection theorem becomes three intersections of lines.