3D Geometry
Level: 2 (Recall / Standard textbook problems) Time: 30 minutes Total Marks: 40
Q1. Find the distance between the points and . (3 marks)
Q2. Find the coordinates of the point which divides the line joining and internally in the ratio . (4 marks)
Q3. State the relation between the direction cosines of a line. If a line has direction ratios , find its direction cosines. (4 marks)
Q4. In which octant do the following points lie? (a) (b) (c) (d) (4 marks)
Q5. Write the vector and Cartesian (symmetric) equations of the line passing through the point and parallel to the vector . (4 marks)
Q6. Find the angle between the two lines whose direction ratios are and . (5 marks)
Q7. Find the equation of the plane passing through the point with normal vector . Also write it in general form. (4 marks)
Q8. Find the distance of the point from the plane . (4 marks)
Q9. Find the angle between the two planes and . (4 marks)
Q10. Find the shortest distance between the skew lines (4 marks)
Answer keyMark scheme & solutions
Q1. (3 marks) Distance formula: (1) (1) (1)
Q2. (4 marks) Section formula (internal, ratio ): (1) (1) (1) ; Point (1)
Q3. (4 marks) Relation: (1) Magnitude of direction ratios: (1) Direction cosines : (2)
Q4. (4 marks) — 1 mark each Sign convention determines octant: (a) : → Octant II (1) (b) : → Octant VIII (1) (c) : → Octant III (1) (d) : → Octant I (1)
Q5. (4 marks) Vector form: (2) Cartesian (symmetric) form: (2)
Q6. (5 marks) (1) Numerator: (2) Denominators: and (1) (lines are perpendicular) (1)
Q7. (4 marks) Plane through with normal : (1) (2) (1)
Q8. (4 marks) Distance (1) Numerator: (2) Denominator: ; Distance (1)
Q9. (4 marks) Normals: , (1) (2) (1)
Q10. (4 marks) ; (1) ; dot with : (2) (1)
[
{"claim":"Q1 distance is sqrt(34)","code":"d=sqrt((4-1)**2+(1+2)**2+(-1-3)**2); result = simplify(d - sqrt(34))==0"},
{"claim":"Q2 section point is (10/3,5/3,0)","code":"x=(2*4+1*2)/3; y=(2*3+1*(-1))/3; z=(2*(-2)+1*4)/3; result = (x==Rational(10,3)) and (y==Rational(5,3)) and (z==0)"},
{"claim":"Q3 direction cosines are (2/7,-3/7,6/7)","code":"mag=sqrt(2**2+(-3)**2+6**2); result = (mag==7) and (Rational(2,7)**2+Rational(-3,7)**2+Rational(6,7)**2==1)"},
{"claim":"Q8 distance is 13/3","code":"num=abs(2*3-(-2)+2*1+3); den=sqrt(4+1+4); result = simplify(num/den - Rational(13,3))==0"},
{"claim":"Q10 shortest distance is 3/sqrt(2)","code":"b1=Matrix([1,-1,1]); b2=Matrix([2,1,2]); c=b1.cross(b2); a=Matrix([1,-3,-2]); d=abs(a.dot(c))/c.norm(); result = simplify(d - 3/sqrt(2))==0"}
]