Vector Geometry Exercises#

Exercise 1

Given the following vectors

\[\begin{split} \begin{align*} \mathbf{a} &= \begin{pmatrix} 1 \\ 0 \\ 3 \end{pmatrix}, & \mathbf{b} &= \begin{pmatrix} -2 \\ 3 \\ 1 \end{pmatrix}, & \mathbf{c} &= \begin{pmatrix} 2 \\ 5 \\ -3 \end{pmatrix}, \end{align*} \end{split}\]

calculate:

(a) \(| \mathbf{a} |\);

(b) \(\hat{\mathbf{b}}\);

(c) \( 3\mathbf{a} + 2 \mathbf{c}\);

(d) \( \mathbf{a} \cdot \mathbf{b}\);

(e) the angle between \(\mathbf{a}\) and \(\mathbf{c}\);

(f) \(\mathbf{b} \times \mathbf{c}\);

(g) a unit vector \(\mathbf{d}\) which is perpendicular to \(\mathbf{a}\) and \(\mathbf{b}\)

Exercise 2

A basis in \(\mathbb{R}^3\) is \(U = \{ \mathbf{u}_1, \mathbf{u}_2, \mathbf{u}_3 \}\) where

\[\begin{split} \begin{align*} \mathbf{u}_1 &= \begin{pmatrix} 1 \\ 0 \\ 1 \end{pmatrix} &, \mathbf{u}_2 &= \begin{pmatrix} 0 \\ 1 \\ 1 \end{pmatrix} &, \mathbf{u}_3 &= \begin{pmatrix} 1 \\ 1 \\ 0 \end{pmatrix}. \end{align*} \end{split}\]

(a) Show that \(\{ \mathbf{u}_1, \mathbf{u}_2, \mathbf{u}_3 \}\) are linearly independent;

(b) Calculate the change of basis matrix \(A_{E \to U}\) that can be used to change the basis from the standard basis to \(U\);

(c) Given the vector \(\mathbf{v} = (2, -1, 3)_E\), determine \([\mathbf{v}]_U\) (the vector \(\mathbf{v}\) represented with respect to the basis \(U\));

(d) Another basis in \(\mathbb{R}^3\) is \(W = \{(-1, 1, 1), (0, 1, 0), (0, 1, -1) \}\), calculate the change of basis matrix \(A_{U\to W}\) and hence \([\mathbf{v}]_W\).

Exercise 3

A straight line \(\ell\) in \(\mathbb{R}^3\) passes through the two points \(\mathbf{p}_1 = (-1, 1, 2)\) and \(\mathbf{p}_2 = (2, -3, 0)\).

(a) Find the vector equation of \(\ell\).

(b) Calculate the position of a point two-thirds along the chord \(\mathbf{p}_1 \to \mathbf{p}_2\).

(c) Does \(\ell\) pass through the point \((-7, 9, 6)\)?

Exercise 4

A polygon has vertices with the co-ordinates \(\mathbf{p}_1=(8,-2,1)\), \(\mathbf{p}_2=(9,1,3)\) and \(\mathbf{p}_3=(8,2,-2)\).

(a) Determine the point-normal equation of the plane that passes through the polygon.

(b) Another point on the plane has co-ordinates \(\mathbf{p}_4 = (x, 9, 0)\). Determine the value of \(x\).

Exercise 5

Two lines are defined by the vector equations \((1, 0, 1) + t_1(2, -1, 3)\) and \((1, 4, 7) + t_2(2, 0, -1)\).

(a) find the point of intersection or show that they are skew;

(b) find the shortest distance between the two lines;

Exercise 6

In computer game a projectile is fired from position \((0, 5, -10)\) with velocity \((100, 100, 200)\) towards a wall that is modelled by the plane with normal vector \((-3, 0, -2)\) and the point at position \((10, 10, 0)\).

Calculate the position where the projectile will collide with the wall.

Exercise 7

A point is at co-ordinates \((-1,0,25)\) m travels along a straight line with velocity \((5, 2, -1)\) m/s and an observer watches the object from a point at position \((4, 6, 6)\) m.

(a) Calculate the time \(t\) at which the object makes its closest approach to the viewer.

(b) What is the distance between the observer and the object when it makes its closest approach?

Exercise 8

Two spherical objects are moving along straight lines. The centre of the first sphere is at \(\mathbf{p}_1\) and is travelling in the direction \(\mathbf{d}_1\) and the second sphere is at \(\mathbf{p}_2\) and is travelling in the direction \(\mathbf{d}_2\). Both spheres have the same radius \(r\).

../_images/sphere_sphere_collision.svg

(a) Derive the following formula for the calculation of \(t\) (hint: how far appart are \(\mathbf{c}_1\) and \(\mathbf{c}_2\) at the point of collision?)

\[ 0 = t^2 (\mathbf{d}_1 - \mathbf{d}_2)^2 + 2t(\mathbf{p}_1 - \mathbf{p}_2) \cdot (\mathbf{d}_1 - \mathbf{d}_2) + (\mathbf{p}_1 - \mathbf{p}_2)^2 - 4r^2.\]

(b) Write down a test for determining whether the spheres collide or not.

(c) Given that \(\mathbf{p}_1 = (67/3, 91/3, 103/3)\), \(\mathbf{d}_1 = (-7, -13, -10)\), \(\mathbf{p}_2 = (4/3, -9, -10)\), \(\mathbf{d}_2 = (2, 3, 9)\) and \(r = 1\), show that the spheres will collide and hence calculate the positions of the centres of the spheres at this time.

Exercise 9

Two planes are defined by their normal vectors \(\mathbf{n}_1 = (1, -1, 2)\) and \(\mathbf{n}_2 = (-2, 1, 3)\) and pass through the points \(\mathbf{p}_1 = (1, 0, 3)\) and \(\mathbf{p}_2 = (4, 1, 1)\) respectively.

Determine the equation of the line of intersection.