Is finding the intersection of two lines in R4 using the same method as in R3?

Click For Summary
Finding the intersection of two lines in R4 follows a similar method to R3, where the lines are set equal to each other, resulting in four equations with two unknowns. These equations are derived from the parametric representations of the lines in four dimensions. However, the likelihood of two lines intersecting in R4 is significantly lower than in R3, as it is a rare occurrence compared to parallel or skew lines. In R3, lines typically do not intersect unless they are parallel, while in R4, the intersection is an even more exceptional case. Thus, while the method remains consistent, the geometric implications differ greatly across dimensions.
theRukus
Messages
49
Reaction score
0
To find the intersection of two lines in R3, you set the lines equal, right?
[a,b,c] + d[e,f,g] = [h,i,j] + k[l,m,n]
Then split these into three equations,
1. a + d(e) = h + k(l)
2. b + d(f) = i + k(m)
3. c + d(g) = j + k(n)

And solve for k and d, correct?

If k and d are consistent, then these values are used to find the point of intersection.

My question is: Is this same method used in R4, with two lines of 4 dimensions?
 
Physics news on Phys.org
Probably you could get some help after explaining your notation...
 
Yes, it is exactly the same. You would have one line given by, say,
\begin{pmatrix}x_1 \\ x_2 \\ x_3 \\ x_4\end{pmatrix}= \begin{pmatrix}a_1t+ b_1 \\ a_2t+ b_2 \\ a_3t+ b_3 \\ a_4t+ b_4\end{pmatrix}
and the other by
\begin{pmatrix}x_1 \\ x_2 \\ x_3 \\ x_4\end{pmatrix}= \begin{pmatrix}c_1s+ d_1 \\ c_2s+ d_2 \\ c_3s+ d_3 \\ c_4s+ d_4\end{pmatrix}
then you would set them equal getting 4 equations in the two unknown values s and t:
a_1t+ b_1= c_1s+ d_1
a_2t+ b_2= c_2s+ d_2
a_3t+ b_3= c_3s+ d_3
a_4t+ b_4= c_4s+ d_4

Of course, it would be unlikely for 2 numbers to satisfy all 4 equations!

In the plane, the "typical" behavior is for lines to intersect- the only non-intersecting lines are parallel lines, a very unusual situation. And, in two dimensions, we are solving two equations in two unknowns- there would not be a unique solution only if the determinant of the coefficient matrix were 0.

In three dimensions, the "typical" behavior is for lines to be skew- not intersecting. In order to be able to solve three equations for two unknown values, the equations must NOT be independent.

And the situation is worse in four dimensions. Two lines intersecting is a very special situation indeed.
 
Thread 'How to define a vector field?'
Hello! In one book I saw that function ##V## of 3 variables ##V_x, V_y, V_z## (vector field in 3D) can be decomposed in a Taylor series without higher-order terms (partial derivative of second power and higher) at point ##(0,0,0)## such way: I think so: higher-order terms can be neglected because partial derivative of second power and higher are equal to 0. Is this true? And how to define vector field correctly for this case? (In the book I found nothing and my attempt was wrong...

Similar threads

  • · Replies 5 ·
Replies
5
Views
1K
  • · Replies 17 ·
Replies
17
Views
4K
  • · Replies 17 ·
Replies
17
Views
3K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 3 ·
Replies
3
Views
862
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 13 ·
Replies
13
Views
1K
  • · Replies 5 ·
Replies
5
Views
929
  • · Replies 2 ·
Replies
2
Views
1K