### Related Formula
textShortest distance = frac|(veca_2 - veca_1) cdot (vecb_1 times vecb_2)||vecb_1 times vecb_2|$$\text{Shortest distance} = \frac{|(\vec{a_2} - \vec{a_1}) \cdot (\vec{b_1} \times \vec{b_2})|}{|\vec{b_1} \times \vec{b_2}|}$$
### Core Logic
From the given lines:
Point on line 1:
veca_1 = -hati + 2hatj + 4hatk$\vec{a_1} = -\hat{i} + 2\hat{j} + 4\hat{k}$
Direction vector:
vecb_1 = alphahati - hatj - alphahatk$\vec{b_1} = \alpha\hat{i} - \hat{j} - \alpha\hat{k}$
Point on line 2:
veca_2 = 0hati + 1hatj + 1hatk$\vec{a_2} = 0\hat{i} + 1\hat{j} + 1\hat{k}$
Direction vector:
vecb_2 = alphahati + 2hatj + 2alphahatk$\vec{b_2} = \alpha\hat{i} + 2\hat{j} + 2\alpha\hat{k}$
Difference in points:
veca_2 - veca_1 = (0 - (-1))hati + (1 - 2)hatj + (1 - 4)hatk = hati - hatj - 3hatk$$\vec{a_2} - \vec{a_1} = (0 - (-1))\hat{i} + (1 - 2)\hat{j} + (1 - 4)\hat{k} = \hat{i} - \hat{j} - 3\hat{k}$$
### Step 1: Cross Product and Determinant
The numerator of the distance formula is the scalar triple product
[veca_2-veca_1 quad vecb_1 quad vecb_2]$[\vec{a_2}-\vec{a_1} \quad \vec{b_1} \quad \vec{b_2}]$:
Numerator
= left| beginarrayccc 1 & -1 & -3 \\ alpha & -1 & -alpha \\ alpha & 2 & 2alpha endarray right|$= \left| \begin{array}{ccc} 1 & -1 & -3 \\ \alpha & -1 & -\alpha \\ \alpha & 2 & 2\alpha \end{array} \right|$
(Note: The official solution uses
veca_1-veca_2$\vec{a_1}-\vec{a_2}$, leading to
[-1 quad 1 quad 3]$[-1 \quad 1 \quad 3]$ in the first row. We will follow that sign convention below).
Numerator
= -1(-2alpha + 2alpha) - 1(2alpha^2 + alpha^2) + 3(2alpha + alpha)$= -1(-2\alpha + 2\alpha) - 1(2\alpha^2 + \alpha^2) + 3(2\alpha + \alpha)$
= 0 - 3alpha^2 + 9alpha = -3alpha^2 + 9alpha$$= 0 - 3\alpha^2 + 9\alpha = -3\alpha^2 + 9\alpha$$
Denominator
= |vecb_1 times vecb_2| = left| beginarrayccc hati & hatj & hatk \\ alpha & -1 & -alpha \\ alpha & 2 & 2alpha endarray right|$= |\vec{b_1} \times \vec{b_2}| = \left| \begin{array}{ccc} \hat{i} & \hat{j} & \hat{k} \\ \alpha & -1 & -\alpha \\ \alpha & 2 & 2\alpha \end{array} \right|$
= hati(-2alpha + 2alpha) - hatj(2alpha^2 + alpha^2) + hatk(2alpha + alpha)$$= \hat{i}(-2\alpha + 2\alpha) - \hat{j}(2\alpha^2 + \alpha^2) + \hat{k}(2\alpha + \alpha)$$
= 0hati - 3alpha^2hatj + 3alphahatk$$= 0\hat{i} - 3\alpha^2\hat{j} + 3\alpha\hat{k}$$
Magnitude of denominator =
sqrt(-3alpha^2)^2 + (3alpha)^2 = sqrt9alpha^4 + 9alpha^2$\sqrt{(-3\alpha^2)^2 + (3\alpha)^2} = \sqrt{9\alpha^4 + 9\alpha^2}$
### Step 2: Equating to Distance
textDistance = frac|-3alpha^2 + 9alpha|sqrt9alpha^4 + 9alpha^2 = sqrt2$$\text{Distance} = \frac{|-3\alpha^2 + 9\alpha|}{\sqrt{9\alpha^4 + 9\alpha^2}} = \sqrt{2}$$
Divide numerator and denominator by
3alpha$3\alpha$ (assuming
alpha neq 0$\alpha \neq 0$):
sqrt2 = frac|-alpha + 3|sqrtalpha^2 + 1$$\sqrt{2} = \frac{|-\alpha + 3|}{\sqrt{\alpha^2 + 1}}$$
Square both sides:
2 = fracalpha^2 - 6alpha + 9alpha^2 + 1$$2 = \frac{\alpha^2 - 6\alpha + 9}{\alpha^2 + 1}$$
2alpha^2 + 2 = alpha^2 - 6alpha + 9$$2\alpha^2 + 2 = \alpha^2 - 6\alpha + 9$$
alpha^2 + 6alpha - 7 = 0$$\alpha^2 + 6\alpha - 7 = 0$$
### Step 3: Solving the Quadratic
Factorizing the quadratic equation:
(alpha + 7)(alpha - 1) = 0$$(\alpha + 7)(\alpha - 1) = 0$$
alpha = -7, quad alpha = 1$$\alpha = -7, \quad \alpha = 1$$
The sum of all possible values of
alpha$\alpha$ is
-7 + 1 = -6$-7 + 1 = -6$.
### Pattern Recognition
When expanding scalar triple products with repeated scalar variables
alpha$\alpha$, zero terms consistently appear via parallel vector components. Factoring
alpha$\alpha$ out of the determinant speeds up calculation drastically.
### Evaluation Rubric / Model Answer
null
### Chapter Mix
Class 12 Maths: Three Dimensional Geometry