Jump to content

Recommended Posts

Posted

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.

Posted

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?

Posted

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?unsure.gif

thanks

Posted

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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.