i've tried the question in another Q&A website but nobody could really helped me there so i will try it in here. I want to calculate the point where 2 objects hit each other. More detailled: Object 1 is moving with constant velocity in a constant direction(both known). The starting point is also known. Now there is another Object 2 with constant velocity and given start position. I want to know the direction (phi) of object 2 to hit object 1. Here is a drawn example of the situation My approach to solve this i've snapshoted in the following link: Thats the equation i developed So the next step would be that i insert "t" in the equation of sin(phi), which would be very time consuming. Is that the right way? Does anybody could give me a hint for a solution?
2026-03-25 06:09:33.1774418973
Collision course of 2 objects
519 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in COLLISION-DETECTION
- How do I detect if a circle overlaps with a polygon or not?
- Probability of picking the same choices
- Particle collisions in the plane
- Axis aligned torus collision detection
- Given 2 constant acceleration model with initial position in 2D, how can I compute the when will the two object be closest to each other?
- An application of the Hahn-Banach separation theorem
- Why do we need difference of radius when calculating the intersection of 2 circles?
- Finding collision probability of hash function using modulo operation
- How to better handle simple rectangle collision?
- Solution for finding intercept point of two moving objects (XY plane)
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?
Let the difference (object 2 minus object 1) of the starting positions be $\vec{\Delta}$.
Let $\hat{y}$ be a unit vector in the direction $\vec{\Delta}$, and let $\hat{x}$ be a unit vector perpendicular to $\hat{y}$ such that $\vec{v}_1$ lies in the plane spanned by $(\hat{x},\hat{y})$.
Then at the time of meeting the $x$ components are equal: $t \vec{v}_1 \cdot \hat{x} = t \vec{v}_2 \cdot \hat{x}$. This says that $$ \vec{v}_2 \cdot \hat{x} = \vec{v}_1 \cdot \hat{x} $$ And at the time of meeting the $y$ components are equal: $$ t \vec{v}_1 \cdot \hat{y} = \vec{\Delta} \cdot \hat{y} + t \vec{v}_2 \cdot \hat{y} $$ Also, the magnitude of $ \vec{v}_2 $ is known to be some value, which we can call $s_2$. So $$ \vec{v}_2 \cdot \hat{y} = \sqrt{s_2^2 - (\vec{v}_2 \cdot \hat{x} )^2} = \sqrt{s_2^2 - (\vec{v}_1 \cdot \hat{x} )^2} $$ Then, if we let $\hat{u}_2$ be the unit direction vector for object 2, so that $\vec{v}_2 =s_2\hat{u}_2$, the previous equation becomes $$ t \vec{v}_1 \cdot \hat{y} = \vec{\Delta} \cdot \hat{y} + t \sqrt{s_2^2 - (\vec{v}_1 \cdot \hat{x} )^2} $$ All the quantities in this equation are given known values, except for $t$. Solving for $t$ gives $$ t = \frac{\vec{\Delta} \cdot \hat{y}}{\vec{v}_1 \cdot \hat{y}-\sqrt{s_2^2 - (\vec{v}_1 \cdot \hat{x} )^2}} $$ Now that we know the collision time $t$, we can determine $\vec{v}_2 \cdot \hat{y}$ by $$ \vec{v}_2 \cdot \hat{y} = \frac{|\Delta|}t $$ and that determines the angle $\theta$ between $\vec{v}_2$ and the line between the starting points: $$\theta = \cos^{-1}\left( \frac{|\Delta|}{s_2t} \right) = \cos^{-1}\left( \frac{|\Delta| \left( \vec{v}_1 \cdot \hat{y}-\sqrt{s_2^2 - (\vec{v}_1 \cdot \hat{x} )^2}\right)}{s_2 (\vec{\Delta} \cdot \hat{y})} \right) = \cos^{-1}\left( \frac{ \vec{v}_1 \cdot \hat{y}-\sqrt{s_2^2 - (\vec{v}_1 \cdot \hat{x} )^2}}{s_2} \right) $$