New Reply

Point at which a line intersects a plane

 
Share Thread Thread Tools
Nov14-12, 12:07 AM   #1
 

Point at which a line intersects a plane


So i know the equation of a plane.

Ax + By +Cz = D

Normal is the normal vector to the plane.

A = normal.x
B = normal.y
C = normal.z
p1 and p2 are 2 points on the line (which will intercept a plane at some point)
the .x and .y and .z refer to there respective components of the vector.

X = (p2.x - p1.x)* T + p1.x
Y = (p2.y - p1.y)* T + p1.y
Z = (p2.z - p1.z)* T + p1.z

I also know what D equals I solved for that by moving stuff around

The problem is a need a general solution for T.

It should be something like

A ((p2.x - p1.x) * T + p1.x)) + B ((p2.y - p1.y) * T + p1.y)) + C ((p2.z - p1.z) * T + p1.z)) = D

Except isolated for T (I believe)

In case your curious this is for a programming function. Thats why i'm using nothing but variables.

I can solve for every equation but T, while I can solve for T by myself given specific numbers im not sure how to isolate it even if I expand out the equation to stuff like

Ap2.x - Ap1.x * AT + Ap1.x ...

I'm thinking maybe im going down the wrong path here or something.

Any help would be much appreciated. :)
 
PhysOrg.com
PhysOrg
mathematics news on PhysOrg.com

>> Mathematicians analyze social divisions using cell phone data
>> Can math models of gaming strategies be used to detect terrorism networks?
>> Mathematician proves there are infinitely many pairs of prime numbers less than 70 million units apart
Nov14-12, 01:37 AM   #2
 
Recognitions:
Homework Helper Homework Help
You have p1 p2 and n?
Why not group terms in T ... then the equation has form: [itex]\lambda T + \mu = D[/itex]
 
New Reply
Thread Tools


Similar Threads for: Point at which a line intersects a plane
Thread Forum Replies
how to determine whether a line lies in / is parallel to / intersects a plane? Calculus & Beyond Homework 6
Find the point of intersection of the plane and line. Determine if line lies in plane Calculus & Beyond Homework 5
Finding the a circle's tangent line which intersects a given point Precalculus Mathematics Homework 4
Determine point on line where normal passes thr a point intersects the line. Calculus & Beyond Homework 7
Find point where line intersects plane Calculus & Beyond Homework 2