I have two parameterized planes, for example, {u, 0, v} and {u-1, v-1, 1}. And I have to find the parametric equation of the line that intersects both planes. By setting both planes equal to each other I get {u=u-1, 0=v-1, v=1} = {0=-1, v=1, v=1}. Then by substituting v into the first equation {u, 0, v} I get the answer {u, 0, 1} which is correct but this approach doesn't seem correct. Is there another way to solve this?
2026-04-08 02:28:00.1775615280
Find intersection of 2 parameterized planes
176 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in GEOMETRY
- Point in, on or out of a circle
- Find all the triangles $ABC$ for which the perpendicular line to AB halves a line segment
- How to see line bundle on $\mathbb P^1$ intuitively?
- An underdetermined system derived for rotated coordinate system
- Asymptotes of hyperbola
- Finding the range of product of two distances.
- Constrain coordinates of a point into a circle
- Position of point with respect to hyperbola
- Length of Shadow from a lamp?
- Show that the asymptotes of an hyperbola are its tangents at infinity points
Related Questions in 3D
- Visualization of Projective Space
- Approximate spline equation with Wolfram Mathematica
- Three-Dimensional coordinate system
- Volume of sphere split into eight sections?
- Is $ABC$ similar with $A'B'C'$, where $A', B', C'$ are the projections of $A, B, C $ on a plane $\pi $.
- Intersection of a facet and a plane
- Distance from center of sphere to apex of pyramid?
- Looking for hints on the below 3D geometry problem.
- Finding the Euler angle/axis from a 2 axes rotation but that lies on the original 2 axes' plane
- Calculating the tangent line from a point to the surface of a sphere
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
I believe you meant that your planes are described by the parameterizations $$ S_1(u, v) = (u, 0, v) \\ S_2(u, v) = (u-1, v-1, 1) $$ That makes it easy to find the normal vector (vector perpendicular) to each. For $S_1$, take a derivative with respect to $u$ and to $v$ to get that two vectors in the plane are $(1, 0,0)$ and $(0, 0, 1)$. Their cross-product is the normal vector, i.e. $$ n_1 = (0, -1, 0). $$ In fact, you can write an implicit equation for the plane at this point: it has the form $$ n_1 \cdot (x, y, z) = \text{constant}. $$ Plugging in a known point of the plane --- say $S(0,0) = (0,0,0)$ for $(x,y, z)$, you get that the constant, in this case, must be 0, so the plane equation is $$ n_1 \cdot (x,y,z) = 0. $$
Computing, in the same way, the normal for $S_2$, we get $(1, 0, 0)$ and $(0, 1, 0)$ as vectors in the plane, with normal vector $$ n_2 = (0, 0, 1). $$ The cross product of these two normals, $w = (-1, 0, 0)$, is a direction perpendicular to both, hence it lies in each of the two planes. That means your intersection line runs in this direction. So your line has the form $$ P(t) = P_0 + t w, $$ where $P_0$ is any point of the intersection between the planes.
To find a point of intersection (there are many!), you need a point on the second plane that also lies on the first, i.e., a point $S_2(u, v)$ that satisfies $n_1 \cdot (x, y, z) = 0$. Plugging in, we get $$ (u-1, v-1, 1) \cdot (0, -1, 0) = 0 \\ 1-v = 0 $$ so any point with $v = 1$ lies on both planes. Let's take $(u, v) = (0, 1)$ to get $P_0 = S_2(u, v) = S_2(0, 1) = (-1, 0, 1)$. So now your intersection line is $$ P(t) = (-1, 0, 1) + (-1, 0, 0) t. $$
The method described applies to any two planes:
1.Find normals $n_1, n_2$ to both planes.
Write a parametric equation, $n_1 \cdot (x, y,z) = C$ for the first, using the normal and $S_1(0,0)$ to find the constant $C$.
Let $w = n_1 \times n_2$.
Solve $n_1 \cdot S_2(u, v) = C$ to find some pair $(u, v)$ such that $P_0 = S_2(u, v)$ is a point on both planes. (You'll have to make an arbitrary choice of $u$ or $v$ here).
Write down the parametric equation $P(t)= P_0 + t w$.