How do you calculate the intersection of a line and a plane?
Calculate lambda by substituting the values of ‘x’, ‘y’, and ‘z’ from the line equation into the equation of the plane
How do you calculate the angle between a line and a plane?
Find the angle between the direction vector of the line and the normal vector of the plane using the dot product
Take this away from 90o
What is the formula for the vector product of a x b?
a2b3 - a3b2
a3b1 - a1b3
a1b2 - a2b1
What does the vector product equal?
a x b = IaI * IbI * sin(x) * n
‘x’ is the angle between ‘a’ and ‘b’
‘n’ is the unit vector perpendicular to ‘a’ and ‘b’
What is the vector product?
The product of ‘a’ and ‘b’ is perpendicular to both ‘a’ and ‘b’
How do you calculate the distance between a point and a line in two dimensions?
Point : (x1, y1)
Line : ax + by + c = 0
Distance = I ax1 + by1 + c I / Sqrt( a2 + b2)
How do you calculate the distance between a point and a plane?
Point : (x1, y1, z1)
Plane : n 1x + n2y + n3z + d = 0
Distance = I n1x1 + n2y2 + n3z3 + d I / Sqrt( n12 + n22 + n32)
How do you calculate the distance between skew lines?
d1 is parallel to the first line
a1 is a position vector of a point on the first line
I d1 x d2 / I d1 x d2 I . (a1 - a2) I
What is the formula for the shortest distance of a point to a line?
‘AP’ is the vector of a point ‘A’ on the line to point ‘P’
‘d’ is the direction vector of the line
D = I AP x d I / IdI