Command last updated 6/3/2024.
Extends Charlie Watson’s eActivity. Modify the values of the input variables, then click the top line and hit EXE. The outputs are stored in the relevant variables.
Find vector and Cartesian equations of plane given 1 point and 2 direction vectors on plane.
Input: A, B, C
Output: A, AB, AC soln, n, q, E
r = A + λAB + μAC
r·n = q (n = ai + bj + ck)
ax + by + cz = q
Find a Cartesian equation of the plane containing points \((1, 0, 2)\), \((2, 3, 0)\) and \((1, 2, 1)\). (Sample Specialist Exam 2 Section B Question 5aii)
Find Cartesian equation of plane given 1 point and 2 direction vectors on plane.
Input: A, P, Q
Output: soln, n, q, E
r = A + λP + μQ
r·n = q (n = ai + bj + ck)
ax + by + cz = q
Find a Cartesian equation of the plane described by \(x = 1 + 2s + 3t\), \(y = -2 - s - 2t\) and \(z = 2 - s + t\). (Sample Specialist Exam 2 Section B Question 3b)
Find vector equation of plane given Cartesian equation of plane.
Input: n, q
Output: A, P, Q
ax + by + cz = q
r·n = q (n = ai + bj + ck)
r = A + λP + μQ
Find a vector equation of the plane \(2x + 3y - 5z = 7\).
Find intersection between line and plane.
Input: a, b, n, p
Output: X
r = a + tb
r·n = p·n
Find the point of intersection between the plane \(2x - 2y - z = -18\), and a line normal to the plane passing through the origin. (2023 Specialist Exam 2 Section B Question 5f)
Find intersection between two planes.
Input: P1, n1, P2, n2
Output: A, B
r·n1 = P1·n1
r·n2 = P2·n2
r = A + λB
Find the line of intersection between the planes \(x + y + 2z = 5\) and \(x - y - z = 0\). (Sample Specialist Exam 2 Section B Question 5bii)
Find shortest distance between point and plane.
Input: A, P, n
Output: D
r·n = P·n
Find the shortest distance between the origin and the plane \(2x - 2y - z = -18\). (2023 Specialist Exam 2 Section B Question 5e)
Find shortest distance between line and plane.
Input: A, B, P, n
Output: D
r = A + λB
r·n = P·n
Find the shortest distance between the line \(\mathbf{r}(t) = \mathbf{i} + \mathbf{j} - 5\mathbf{k} + t(4\mathbf{i} + 2\mathbf{j} + 2\mathbf{k})\) and the plane \(2x - 3y - z = 2\). (Sample Specialist Exam 2 Section B Question 4c)
Find shortest distance between two planes.
Input: P1, n1, P2, n2
Output: D
r·n1 = P1·n1
r·n2 = P2·n2
Find the shortest distance between the planes \(5x - 4y - 12z = 10\) and \(-15x + 12y + 36z = 20\). (Sample Specialist Exam 2 Section A Question 6)
Find both angles between line and plane.
Input: b, n
Output: θ1, θ2
r = a + λb
r·n = k
Find the acute angle at which the line \(\mathbf{r}(t) = 3\mathbf{i} + 2\mathbf{j} + 4\mathbf{k} + t(\mathbf{i} - 2\mathbf{j} + 2\mathbf{k})\) intersects the plane \(2x - 2y - z = -18\). (2023 Specialist Exam 2 Section B Question 5c)
Find both angles between two planes.
Input: n1, n2
Output: θ1, θ2
r·n1 = k1
r·n2 = k2
Find the value of \(k\) for which the planes \(2x - ky + 3z = 1\) and \(2kx + 3y - 2z = 4\) are perpendicular. (2023 Specialist Exam 2 Section A Question 18)