mScientist Posted July 28, 2011 Posted July 28, 2011 Hi, I have two points in 3D space: point A: (1,2,3) point B: (4,7,6) I want to find a third point between the two, where z = 5 So, point C: (x,y,5) How can I calculate x and y for point C. Thanks.
Shadow Posted July 28, 2011 Posted July 28, 2011 Hint: The point C lies on the line passing through A and B. How would one go about writing down the equation for this line?
mScientist Posted July 28, 2011 Author Posted July 28, 2011 Hint: The point C lies on the line passing through A and B. How would one go about writing down the equation for this line? I can solve this easily if it was 2D (only x and y). 2D Linear equation would be : y = k*x + m and k = (y2 - y1) / (x2 - x1) m = y - k*x But I don't know how to deal with if it was 3D with (x,y,z). Do you know how? thanks
Shadow Posted July 28, 2011 Posted July 28, 2011 You should first learn how to express a line in three dimensions; have a look here. For this specific problem, I would recommend the parametric expression, but to get a better grip on the subject it might not be a bad idea to try and solve this problem using all three expressions.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now