Question:medium

If shortest distance between the lines \[ \frac{x+1}{\alpha}=\frac{y-2}{-2}=\frac{z-4}{-2\alpha} \quad \text{and} \quad \frac{x}{\alpha}=\frac{y-1}{1}=\frac{z-1}{\alpha} \] is $\sqrt{2}$, then find the sum of all possible values of $\alpha$.

Show Hint

For skew lines, always use vector cross product to compute shortest distance.
Updated On: Jan 27, 2026
Show Solution

Correct Answer: -6

Solution and Explanation

Step 1: Identify points and direction vectors

Line 1:

(x + 1)/α = (y − 2)/(-2) = (z − 4)/(-2α)

A point on Line 1: A(−1, 2, 4)
Direction vector of Line 1: d1 = (α, −2, −2α)


Line 2:

x/α = (y − 1)/1 = (z − 1)/α

A point on Line 2: B(0, 1, 1)
Direction vector of Line 2: d2 = (α, 1, α)


Step 2: Formula for shortest distance between two skew lines

Shortest distance,

D = |(B − A) · (d1 × d2)| / |d1 × d2|

Given: D = √2


Step 3: Compute vector (B − A)

B − A = (1, −1, −3)


Step 4: Compute cross product d1 × d2

| i    j    k |
| α   −2   −2α |
| α    1    α |

d1 × d2 = (−2α + 2α)i − (α2 − (−2α2))j + (α + 2α)k

d1 × d2 = (0, −3α2, 3α)


Step 5: Compute numerator

(B − A) · (d1 × d2) = (1, −1, −3) · (0, −3α2, 3α)

= 0 + 3α2 − 9α

= 3α(α − 3)


Step 6: Compute denominator

|d1 × d2| = √[0 + 9α4 + 9α2]

= 3|α|√(α2 + 1)


Step 7: Apply distance condition

|3α(α − 3)| / [3|α|√(α2 + 1)] = √2

|α − 3| / √(α2 + 1) = √2

Square both sides:

(α − 3)2 = 2(α2 + 1)

α2 − 6α + 9 = 2α2 + 2

α2 + 6α − 7 = 0


Step 8: Solve quadratic equation

α = [−6 ± √(36 + 28)] / 2

α = [−6 ± 8] / 2

α = 1, −7


Final Answer:

Sum of all possible values of α = 1 + (−7) = −6

Was this answer helpful?
0