3D Geometry
Time Limit: 20 minutes
Total Marks: 30
Instructions: Attempt all questions. For True/False items, a brief justification is required for full marks.
Section A — Multiple Choice (1 mark each)
Q1. The number of octants into which 3D space is divided by the coordinate planes is: (a) 4 (b) 6 (c) 8 (d) 12
Q2. The point lies in the octant where the signs of are: (a) (b) (c) (d)
Q3. The distance of the point from the origin is: (a) 12 (b) 13 (c) (d) 19
Q4. The midpoint of the segment joining and is: (a) (b) (c) (d)
Q5. If the direction ratios of a line are , its direction cosines are: (a) (b) (c) (d)
Q6. For direction cosines , the value of is: (a) 0 (b) (c) 1 (d) 3
Q7. The symmetric form of a line through with direction ratios is:
(a)
(b)
(c)
(d)
Q8. The general equation of a plane is: (a) only (b) (c) (d)
Q9. A normal vector to the plane is: (a) (b) (c) (d)
Q10. The distance from point to the plane is: (a) 9 (b) 3 (c) (d) 1
Section B — Matching (5 marks)
Q11. Match Column I with Column II. (1 mark each correct pair)
| Column I | Column II | |
|---|---|---|
| (i) Angle between two lines (dir. ratios) | (P) $\dfrac{ | |
| (ii) Distance point to plane | (Q) $\cos\theta=\dfrac{ | |
| (iii) Angle between two planes | (R) $\sin\theta=\dfrac{ | |
| (iv) Angle between line and plane | (S) $\cos\theta=\dfrac{ | |
| (v) Shortest distance (skew lines) | (T) $\dfrac{ |
Section C — True / False with Justification (2 marks each)
Q12. Two lines with direction ratios and are parallel.
Q13. The plane and the line with direction ratios are perpendicular.
Q14. The point lies on the -axis.
Q15. Intersecting lines always have a nonzero shortest distance.
Q16. The intercept form meets the -axis at .
Q17. Direction cosines of the positive -axis are .
Answer keyMark scheme & solutions
Section A (1 mark each)
Q1. (c) 8 — The three mutually perpendicular coordinate planes divide space into octants.
Q2. (b) — , , .
Q3. (b) 13 — .
Q4. (a) — Midpoint .
Q5. (a) — Magnitude ; divide each ratio by 3.
Q6. (c) 1 — Fundamental relation .
Q7. (a) — Standard symmetric form of a line.
Q8. (b) — General (Cartesian) equation of a plane.
Q9. (b) — Coefficients of give the normal.
Q10. (b) 3 — .
Section B
Q11. Correct matches (1 mark each):
- (i) → (Q) (angle between lines uses direction vectors)
- (ii) → (P) (point-to-plane distance formula)
- (iii) → (S) (angle between planes uses normals)
- (iv) → (R) (line-plane uses sine with line-dir & normal)
- (v) → (T) (skew-line shortest distance)
Section C (2 marks each: 1 for correct T/F, 1 for justification)
Q12. TRUE. , so the direction ratios are proportional ⇒ lines parallel.
Q13. FALSE. For line ⊥ plane, the line's direction must be parallel to the normal . Here is not proportional to . (Also , so the line is actually parallel to the plane, not perpendicular.)
Q14. FALSE. Points on the -axis have . Here ; the point lies in the -plane.
Q15. FALSE. Intersecting lines share a common point, so their shortest distance is . (Nonzero shortest distance characterises skew lines.)
Q16. TRUE. Setting gives , i.e. intercept point .
Q17. TRUE. The positive -axis makes angles with axes, giving cosines ; and .
[
{"claim":"Q3 distance of (3,4,12) from origin is 13","code":"result = sqrt(3**2+4**2+12**2)==13"},
{"claim":"Q5 direction cosines of (2,-1,2) sum of squares equals 1","code":"mag=sqrt(2**2+(-1)**2+2**2); l=Rational(2,3); m=Rational(-1,3); n=Rational(2,3); result = simplify(l**2+m**2+n**2)==1 and mag==3"},
{"claim":"Q10 distance origin to x+2y+2z=9 is 3","code":"result = Rational(abs(-9),sqrt(1+4+4))==3"},
{"claim":"Q12 (1,2,3) and (2,4,6) are parallel (cross product zero)","code":"result = Matrix([1,2,3]).cross(Matrix([2,4,6]))==Matrix([0,0,0])"},
{"claim":"Q13 line dir (1,1,0) dot plane normal (1,-1,1) is 0 (parallel not perpendicular)","code":"result = (Matrix([1,1,0]).dot(Matrix([1,-1,1])))==0"}
]