Vardaan Learning Institute
Class 12 Mathematics • Comprehensive Chapter Notes
🌐 vardaanlearning.com📞 9508841336
Chapter 11: Three Dimensional Geometry
Dear Class 12 Student! Building directly upon Vector Algebra, we now map those vectors onto the real 3D world to study Lines and Planes. The Shortest Distance between Skew Lines is a perennial 5-mark board guarantee. While CBSE has rationalized some topics regarding Planes, they remain absolutely essential for JEE Mains and Advanced. Master the interplay between Cartesian and Vector forms!
1. Fundamentals (Bridging Vectors to 3D)
In 3D geometry, the direction of a line is entirely described by its Direction Ratios (DRs) and Direction Cosines (DCs).
Key Relationships
Direction Cosines ($l, m, n$): Represent the cosines of the angles a line makes with the positive x, y, and z axes. They satisfy: $\mathbf{l^2 + m^2 + n^2 = 1}$.
Direction Ratios ($a, b, c$): Any three numbers proportional to the direction cosines.
If a line passes through two points $P(x_1, y_1, z_1)$ and $Q(x_2, y_2, z_2)$, its Direction Ratios are simply:
$$ a = x_2 - x_1, \quad b = y_2 - y_1, \quad c = z_2 - z_1 $$
Collinearity: Three points A, B, and C are collinear if the direction ratios of AB are directly proportional to the direction ratios of BC (i.e., $\frac{a_1}{a_2} = \frac{b_1}{b_2} = \frac{c_1}{c_2}$).
Practice Problem 1: Collinearity
Question: Show that the points $A(2, 3, -4)$, $B(1, -2, 3)$, and $C(3, 8, -11)$ are collinear.
Solution:
1. Direction ratios of line segment AB ($a_1, b_1, c_1$):
$a_1 = 1 - 2 = -1$
$b_1 = -2 - 3 = -5$
$c_1 = 3 - (-4) = 7$
DRs of AB are $(-1, -5, 7)$.
2. Direction ratios of line segment BC ($a_2, b_2, c_2$):
$a_2 = 3 - 1 = 2$
$b_2 = 8 - (-2) = 10$
$c_2 = -11 - 3 = -14$
DRs of BC are $(2, 10, -14)$.
3. Check for proportionality: $\frac{a_1}{a_2} = \frac{-1}{2}$, $\frac{b_1}{b_2} = \frac{-5}{10} = -\frac{1}{2}$, $\frac{c_1}{c_2} = \frac{7}{-14} = -\frac{1}{2}$.
Since the DRs are proportional, lines AB and BC are parallel. Since point B is common to both, the points A, B, and C must lie on the same straight line. They are Collinear.
2. Equation of a Line in Space
A straight line in 3D space is uniquely determined if you know either: (a) A point on the line and its direction, OR (b) Two points on the line. Every equation must be known in both Vector and Cartesian forms.
Case 1: Line passing through a point & parallel to a vector
Let the line pass through a point $A$ (position vector $\vec{a}$, coordinates $(x_1, y_1, z_1)$) and be parallel to a given direction vector $\vec{b}$ (having DRs $a, b, c$).
Vector Form:
$$ \vec{r} = \vec{a} + \lambda\vec{b} $$
(Where $\vec{r}$ is the position vector of any arbitrary point on the line, and $\lambda$ is a real scalar parameter).
Cartesian Form (Symmetric Form):
$$ \frac{x - x_1}{a} = \frac{y - y_1}{b} = \frac{z - z_1}{c} $$
Case 2: Line passing through two given points
Let the line pass through points $A(\vec{a})$ and $B(\vec{b})$.
Vector Form:
$$ \vec{r} = \vec{a} + \lambda(\vec{b} - \vec{a}) $$
Cartesian Form:
$$ \frac{x - x_1}{x_2 - x_1} = \frac{y - y_1}{y_2 - y_1} = \frac{z - z_1}{z_2 - z_1} $$
The "General Point" on a Line
To find the coordinates of any random point on a line, equate the Cartesian form to a scalar parameter $\lambda$:
$\frac{x - x_1}{a} = \frac{y - y_1}{b} = \frac{z - z_1}{c} = \lambda$
This yields the coordinates of a General Point: $(a\lambda + x_1, b\lambda + y_1, c\lambda + z_1)$. This technique is critical for finding intersections and foot of perpendiculars.
Practice Problem 2: Equation Conversion
Question: The Cartesian equation of a line is $\frac{x - 5}{3} = \frac{y + 4}{7} = \frac{z - 6}{2}$. Write its vector form.
Solution:
1. From the Cartesian form $\frac{x - x_1}{a} = \frac{y - y_1}{b} = \frac{z - z_1}{c}$, we can extract:
- Point on the line $(x_1, y_1, z_1) = (5, -4, 6)$.
- Direction Ratios $(a, b, c) = (3, 7, 2)$.
2. Convert these into vectors:
- Position vector of the point: $\vec{a} = 5\hat{i} - 4\hat{j} + 6\hat{k}$.
- Parallel direction vector: $\vec{b} = 3\hat{i} + 7\hat{j} + 2\hat{k}$.
3. The Vector equation is $\vec{r} = \vec{a} + \lambda\vec{b}$:
$$ \vec{r} = (5\hat{i} - 4\hat{j} + 6\hat{k}) + \lambda(3\hat{i} + 7\hat{j} + 2\hat{k}) $$
3. Angle Between Two Lines
The angle between two lines is exactly the angle between their direction vectors ($\vec{b_1}$ and $\vec{b_2}$).
Angle Formulas
Vector Form: For lines $\vec{r} = \vec{a_1} + \lambda\vec{b_1}$ and $\vec{r} = \vec{a_2} + \mu\vec{b_2}$:
$$ \cos\theta = \left| \frac{\vec{b_1} \cdot \vec{b_2}}{|\vec{b_1}| |\vec{b_2}|} \right| $$
Cartesian Form: For lines with DRs $(a_1, b_1, c_1)$ and $(a_2, b_2, c_2)$:
$$ \cos\theta = \left| \frac{a_1 a_2 + b_1 b_2 + c_1 c_2}{\sqrt{a_1^2+b_1^2+c_1^2} \sqrt{a_2^2+b_2^2+c_2^2}} \right| $$
Conditions:
- Perpendicular Lines ($\theta = 90^\circ$): $\vec{b_1} \cdot \vec{b_2} = 0 \implies \mathbf{a_1 a_2 + b_1 b_2 + c_1 c_2 = 0}$.
- Parallel Lines ($\theta = 0^\circ$): $\vec{b_1} \times \vec{b_2} = \vec{0} \implies \mathbf{\frac{a_1}{a_2} = \frac{b_1}{b_2} = \frac{c_1}{c_2}}$.
Practice Problem 3: Orthogonality
Question: Find the value of $p$ so that the lines $\frac{1-x}{3} = \frac{7y-14}{2p} = \frac{z-3}{2}$ and $\frac{7-7x}{3p} = \frac{y-5}{1} = \frac{6-z}{5}$ are at right angles.
Solution:
1. Rewrite in Standard Form! The $x, y, z$ coefficients must be exactly $+1$.
- Line 1: $\frac{-(x-1)}{3} = \frac{7(y-2)}{2p} = \frac{z-3}{2} \implies \frac{x-1}{-3} = \frac{y-2}{2p/7} = \frac{z-3}{2}$.
DRs: $a_1 = -3, b_1 = 2p/7, c_1 = 2$.
- Line 2: $\frac{-7(x-1)}{3p} = \frac{y-5}{1} = \frac{-(z-6)}{5} \implies \frac{x-1}{-3p/7} = \frac{y-5}{1} = \frac{z-6}{-5}$.
DRs: $a_2 = -3p/7, b_2 = 1, c_2 = -5$.
2. For lines to be perpendicular (at right angles), $a_1 a_2 + b_1 b_2 + c_1 c_2 = 0$.
$(-3)\left(\frac{-3p}{7}\right) + \left(\frac{2p}{7}\right)(1) + (2)(-5) = 0$
$\frac{9p}{7} + \frac{2p}{7} - 10 = 0 \implies \frac{11p}{7} = 10 \implies 11p = 70 \implies \mathbf{p = \frac{70}{11}}$.
4. Shortest Distance Between Two Lines (5-Mark Guarantee)
[AI Image Placeholder: Landscape (16:9) - Background: #FFFFFF]
AI Prompt: "Two Skew Lines in 3D space. Line L1 is hovering above Line L2. They are not parallel and do not intersect. Draw a dashed perpendicular line segment 'd' that connects L1 and L2 at exactly a 90-degree angle to BOTH lines simultaneously. Label this dashed line 'Shortest Distance'. Clean textbook geometric style."
Skew Lines: Lines in 3D space that are neither parallel nor intersecting. They lie in completely different planes. For such lines, there exists a unique shortest distance ($d$) that is perpendicular to both lines simultaneously.
Formulas for Shortest Distance ($d$)
1. Between Two Skew Lines:
Let $L_1: \vec{r} = \vec{a_1} + \lambda\vec{b_1}$ and $L_2: \vec{r} = \vec{a_2} + \mu\vec{b_2}$.
$$ d = \left| \frac{(\vec{b_1} \times \vec{b_2}) \cdot (\vec{a_2} - \vec{a_1})}{|\vec{b_1} \times \vec{b_2}|} \right| $$
(Notice the numerator is the Scalar Triple Product $[\vec{b_1} \, \vec{b_2} \, (\vec{a_2}-\vec{a_1})]$).
Intersection Condition: If the shortest distance $d = 0$, it strictly means the lines intersect. They are coplanar.
2. Between Two Parallel Lines:
Let $L_1: \vec{r} = \vec{a_1} + \lambda\vec{b}$ and $L_2: \vec{r} = \vec{a_2} + \mu\vec{b}$. (The direction vector $\vec{b}$ is identical).
$$ d = \left| \frac{\vec{b} \times (\vec{a_2} - \vec{a_1})}{|\vec{b}|} \right| $$
Practice Problem 4: Shortest Distance
Question: Find the shortest distance between the lines $\vec{r} = (\hat{i} + 2\hat{j} + \hat{k}) + \lambda(\hat{i} - \hat{j} + \hat{k})$ and $\vec{r} = (2\hat{i} - \hat{j} - \hat{k}) + \mu(2\hat{i} + \hat{j} + 2\hat{k})$.
Solution:
1. Identify components:
$\vec{a_1} = \hat{i} + 2\hat{j} + \hat{k}$, $\quad \vec{b_1} = \hat{i} - \hat{j} + \hat{k}$
$\vec{a_2} = 2\hat{i} - \hat{j} - \hat{k}$, $\quad \vec{b_2} = 2\hat{i} + \hat{j} + 2\hat{k}$
2. Calculate $(\vec{a_2} - \vec{a_1})$:
$(\vec{a_2} - \vec{a_1}) = (2-1)\hat{i} + (-1-2)\hat{j} + (-1-1)\hat{k} = \hat{i} - 3\hat{j} - 2\hat{k}$.
3. Calculate $(\vec{b_1} \times \vec{b_2})$ using determinant:
$\vec{b_1} \times \vec{b_2} = \begin{vmatrix} \hat{i} & \hat{j} & \hat{k} \\ 1 & -1 & 1 \\ 2 & 1 & 2 \end{vmatrix} = \hat{i}(-2 - 1) - \hat{j}(2 - 2) + \hat{k}(1 - (-2)) = -3\hat{i} - 0\hat{j} + 3\hat{k}$.
4. Calculate the magnitude $|\vec{b_1} \times \vec{b_2}|$:
$|\vec{b_1} \times \vec{b_2}| = \sqrt{(-3)^2 + 0^2 + 3^2} = \sqrt{9 + 9} = \sqrt{18} = 3\sqrt{2}$.
5. Calculate the dot product $(\vec{b_1} \times \vec{b_2}) \cdot (\vec{a_2} - \vec{a_1})$:
$(-3\hat{i} + 3\hat{k}) \cdot (\hat{i} - 3\hat{j} - 2\hat{k}) = (-3)(1) + (0)(-3) + (3)(-2) = -3 + 0 - 6 = -9$.
6. Apply formula: $d = \left| \frac{-9}{3\sqrt{2}} \right| = \left| \frac{-3}{\sqrt{2}} \right| = \mathbf{\frac{3\sqrt{2}}{2} \text{ units}}$.
5. Foot of Perpendicular and Image of a Point (R.D. Sharma Focus)
This is a heavily tested conceptual algorithm in board exams. Do not try to memorize a direct formula; memorize the procedure.
Algorithm: Foot of Perpendicular from Point $P$ to Line $L$
1. Write the equation of Line $L$ in Cartesian symmetric form.
2. Equate it to $\lambda$ to find the coordinates of a General Point $Q$ on the line in terms of $\lambda$.
3. Find the Direction Ratios of the line segment $PQ$ by subtracting coordinates of $P$ from $Q$.
4. Since $PQ$ is perpendicular to Line $L$, apply the orthogonality condition: $a_1 a_2 + b_1 b_2 + c_1 c_2 = 0$ (where $a_1,b_1,c_1$ are DRs of $PQ$, and $a_2,b_2,c_2$ are DRs of line $L$).
5. Solve for $\lambda$ and substitute it back into point $Q$. This is the Foot of the Perpendicular.
6. To find the Image ($P'$), treat $Q$ as the exact midpoint between $P$ and $P'$ using the midpoint formula.
Practice Problem 5: Foot of Perpendicular
Question: Find the foot of the perpendicular drawn from the point $P(0, 2, 3)$ to the line $\frac{x+3}{5} = \frac{y-1}{2} = \frac{z+4}{3}$.
Solution:
1. Let the foot of the perpendicular be $Q$. Since $Q$ lies on the line, its coordinates in terms of $\lambda$ are:
$\frac{x+3}{5} = \frac{y-1}{2} = \frac{z+4}{3} = \lambda \implies Q(5\lambda - 3, 2\lambda + 1, 3\lambda - 4)$.
2. Direction Ratios of line segment $PQ$ (subtracting $P(0,2,3)$ from $Q$):
$a_1 = (5\lambda - 3) - 0 = 5\lambda - 3$
$b_1 = (2\lambda + 1) - 2 = 2\lambda - 1$
$c_1 = (3\lambda - 4) - 3 = 3\lambda - 7$
3. Direction Ratios of the given line $L$ are $(a_2, b_2, c_2) = (5, 2, 3)$.
4. Since $PQ \perp L$, then $a_1 a_2 + b_1 b_2 + c_1 c_2 = 0$.
$5(5\lambda - 3) + 2(2\lambda - 1) + 3(3\lambda - 7) = 0$
$25\lambda - 15 + 4\lambda - 2 + 9\lambda - 21 = 0$
$38\lambda - 38 = 0 \implies \lambda = 1$.
5. Substitute $\lambda = 1$ back into point $Q$:
$Q(5(1) - 3, 2(1) + 1, 3(1) - 4) = \mathbf{(2, 3, -1)}$. This is the foot of the perpendicular.
6. The Plane (JEE Focus / State Boards)
Notice: While sections on the Plane have been recently rationalized from the core CBSE syllabus, they are absolutely non-negotiable for JEE Mains and Advanced.
Definition: A plane is a surface such that if any two points are taken on it, the line segment joining them lies completely on the surface.
Normal to a Plane: A vector strictly perpendicular to the plane. In the Cartesian equation $Ax + By + Cz + D = 0$, the coefficients $(A, B, C)$ are the Direction Ratios of the normal to the plane.
Equations of a Plane
1. Normal Form: If the perpendicular distance from the origin is $d$ and $\hat{n}$ is the unit normal vector:
Vector: $\mathbf{\vec{r} \cdot \hat{n} = d}$ $\quad$ | $\quad$ Cartesian: $\mathbf{lx + my + nz = d}$.
2. Point & Normal Form: Passing through a point $\vec{a}$ and perpendicular to a normal vector $\vec{n}$:
Vector: $\mathbf{(\vec{r} - \vec{a}) \cdot \vec{n} = 0}$ $\quad$ | $\quad$ Cartesian: $\mathbf{A(x - x_1) + B(y - y_1) + C(z - z_1) = 0}$.
3. Passing through 3 non-collinear points: $\vec{a}, \vec{b}, \vec{c}$.
Vector: $\mathbf{(\vec{r} - \vec{a}) \cdot [(\vec{b} - \vec{a}) \times (\vec{c} - \vec{a})] = 0}$. (Represented as a $3 \times 3$ determinant in Cartesian).
4. Intercept Form: If the plane cuts intercepts $a, b, c$ on the x, y, and z axes:
$$\frac{x}{a} + \frac{y}{b} + \frac{z}{c} = 1$$
Practice Problem 6: Plane through 3 Points
Question: Find the equation of the plane passing through the points $A(1, 1, -1)$, $B(6, 4, -5)$, and $C(-4, -2, 3)$.
Solution:
To find the equation of a plane through 3 points, we use the determinant form:
$\begin{vmatrix} x - x_1 & y - y_1 & z - z_1 \\ x_2 - x_1 & y_2 - y_1 & z_2 - z_1 \\ x_3 - x_1 & y_3 - y_1 & z_3 - z_1 \end{vmatrix} = 0$
Substitute the points:
$\begin{vmatrix} x - 1 & y - 1 & z - (-1) \\ 6 - 1 & 4 - 1 & -5 - (-1) \\ -4 - 1 & -2 - 1 & 3 - (-1) \end{vmatrix} = 0$
$\begin{vmatrix} x - 1 & y - 1 & z + 1 \\ 5 & 3 & -4 \\ -5 & -3 & 4 \end{vmatrix} = 0$
Notice that Row 2 ($5, 3, -4$) is exactly the negative of Row 3 ($-5, -3, 4$). Thus $R_2 \propto R_3$. The determinant is identically zero for ALL $x,y,z$.
This means the points are collinear. Infinite planes can pass through them, so a unique plane equation does not exist.
7. Interaction of Planes and Lines (JEE Focus)
- Angle Between Two Planes: This is exactly the angle between their normal vectors.
$\cos\theta = \left| \frac{\vec{n_1} \cdot \vec{n_2}}{|\vec{n_1}| |\vec{n_2}|} \right|$.
- Angle Between a Line and a Plane: If the angle between the line and the plane is $\theta$, then the angle between the line and the plane's normal is $(90^\circ - \theta)$. Therefore, the formula uses sine instead of cosine!
$\sin\theta = \left| \frac{\vec{b} \cdot \vec{n}}{|\vec{b}| |\vec{n}|} \right|$
- Condition for Parallelism: A line is parallel to a plane if the line is perpendicular to the plane's normal.
$\vec{b} \perp \vec{n} \implies \mathbf{\vec{b} \cdot \vec{n} = 0}$.
Family of Planes (Intersection)
The equation of a plane passing through the line of intersection of two given planes $P_1 = 0$ and $P_2 = 0$ is given by:
$$ P_1 + \lambda P_2 = 0 $$
(You find $\lambda$ using an extra given condition, like passing through a 3rd point or being perpendicular to another plane).
Practice Problem 7: Line and Plane Interaction
Question: Find the angle between the line $\frac{x+1}{2} = \frac{y}{3} = \frac{z-3}{6}$ and the plane $10x + 2y - 11z = 3$.
Solution:
1. Extract the direction vector of the line ($\vec{b}$): $\vec{b} = 2\hat{i} + 3\hat{j} + 6\hat{k}$.
2. Extract the normal vector of the plane ($\vec{n}$): $\vec{n} = 10\hat{i} + 2\hat{j} - 11\hat{k}$.
3. Use the formula: $\sin\theta = \left| \frac{\vec{b} \cdot \vec{n}}{|\vec{b}| |\vec{n}|} \right|$.
4. Dot product $\vec{b} \cdot \vec{n} = (2)(10) + (3)(2) + (6)(-11) = 20 + 6 - 66 = -40$.
5. Magnitude $|\vec{b}| = \sqrt{2^2 + 3^2 + 6^2} = \sqrt{4+9+36} = \sqrt{49} = 7$.
6. Magnitude $|\vec{n}| = \sqrt{10^2 + 2^2 + (-11)^2} = \sqrt{100+4+121} = \sqrt{225} = 15$.
7. $\sin\theta = \left| \frac{-40}{7 \times 15} \right| = \frac{40}{105} = \frac{8}{21}$.
8. Angle $\theta = \mathbf{\sin^{-1}\left(\frac{8}{21}\right)}$.
8. Distance Formulas involving Planes
- Distance of a Point from a Plane: The perpendicular distance from a point $(x_1, y_1, z_1)$ to the plane $Ax + By + Cz + D = 0$ is:
$$ d = \left| \frac{Ax_1 + By_1 + Cz_1 + D}{\sqrt{A^2 + B^2 + C^2}} \right| $$
- Distance between Two Parallel Planes: For planes $Ax + By + Cz + D_1 = 0$ and $Ax + By + Cz + D_2 = 0$ (ensure $A,B,C$ coefficients are identical):
$$ d = \left| \frac{D_1 - D_2}{\sqrt{A^2 + B^2 + C^2}} \right| $$
Practice Problem 8: Distance to Plane
Question: Find the distance of the point $(2, 5, -3)$ from the plane $\vec{r} \cdot (6\hat{i} - 3\hat{j} + 2\hat{k}) = 4$.
Solution:
1. Convert plane to Cartesian form: $6x - 3y + 2z = 4 \implies 6x - 3y + 2z - 4 = 0$.
2. Identify parameters: Point $(x_1, y_1, z_1) = (2, 5, -3)$. Plane $(A, B, C, D) = (6, -3, 2, -4)$.
3. Use distance formula: $d = \left| \frac{A x_1 + B y_1 + C z_1 + D}{\sqrt{A^2 + B^2 + C^2}} \right|$.
4. $d = \left| \frac{6(2) + (-3)(5) + 2(-3) - 4}{\sqrt{6^2 + (-3)^2 + 2^2}} \right|$
5. $d = \left| \frac{12 - 15 - 6 - 4}{\sqrt{36 + 9 + 4}} \right| = \left| \frac{-13}{\sqrt{49}} \right| = \left| \frac{-13}{7} \right|$.
6. Distance $d = \mathbf{\frac{13}{7} \text{ units}}$.