I have a circle shaped object which has; center point C(X1,Y1), radius R, moving with speed of S1 and angle B. Now I want to throw a particle from origin (0,0) with speed of S2 and with an angle of A so the particle would touch (be tangent to) circle not from it's front (where the circle moves towards) but from it's back. All parameters except A are known and constant through movement. How may I find A (what angle to throw particle)?
2026-05-02 04:18:29.1777695509
Shooting tangent to a moving circle
185 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in LINEAR-ALGEBRA
- An underdetermined system derived for rotated coordinate system
- How to prove the following equality with matrix norm?
- Alternate basis for a subspace of $\mathcal P_3(\mathbb R)$?
- Why the derivative of $T(\gamma(s))$ is $T$ if this composition is not a linear transformation?
- Why is necessary ask $F$ to be infinite in order to obtain: $ f(v)=0$ for all $ f\in V^* \implies v=0 $
- I don't understand this $\left(\left[T\right]^B_C\right)^{-1}=\left[T^{-1}\right]^C_B$
- Summation in subsets
- $C=AB-BA$. If $CA=AC$, then $C$ is not invertible.
- Basis of span in $R^4$
- Prove if A is regular skew symmetric, I+A is regular (with obstacles)
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 ANALYTIC-GEOMETRY
- Asymptotes of hyperbola
- 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
- Surface by revolution
- All possible values of coordinate k such that triangle ABC is a right triangle?
- Triangle inside triangle
- Is there an equation to describe regular polytopes?
- How do I prove that the gradient between a fixed and any general point on a given line is $m$?
- Three-Dimensional coordinate system
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'd think of this in terms of two unknowns: the angle $A$ and the time $t$ at which the contact is to occur. With these you can compute the point of contact as $$P=S_2\cdot t\cdot(\cos A,\sin A)$$ and the position of the center at that time as $$Q=(X_1,Y_1)+S_1\cdot t\cdot(\cos B,\sin B)\;.$$ Now you need to express two conditions: one that the distance between these is $R$, which you can write e.g. using the scalar product $\langle\cdot,\cdot\rangle$ as $$\langle P-Q,P-Q\rangle=R^2\tag1$$ and another to ensure that the tangent line is perpendicular to the radius, i.e. $$\langle P,P-Q\rangle=0\;.\tag2$$
At this point you have two equations in two unknowns. But these equations are non-linear, they even contain trigonometric functions. You could use the tangent half-angle formula to turn $\sin A$ and $\cos A$ into rational functions, and then multiply the equation with the denominator to obtain a polynomial equation. Then you can eliminate $t$ using standard elimination techniques like the resultant. Once you have a bunch of algebraic solutions, you need to check which of them are in front of the movement and which behind.
With $\cos A=\frac{1-u^2}{1+u^2}$ and $\sin A=\frac{2u}{1+u^2}$ I can eliminate $u$ using a resultant and then factor that resultant to obtain different sufficient conditions. Several of the conditions represent non-degeneracy constraints: $S_2=0$ and $t=0$ (since a null vector solved (2) even if it originates in $t=0$ or $S_2=0$; you could remove those factors there if you wanted). There is also one term quadratic in $t$ which only allows complex solutions (negative discriminant). And finally there is one relevant quadratic equation in $t$:
$$ (S_1^2 - S_2^2)t^2 + (2S_1(X_1\cos B + Y_1\sin B))t + (X_1^2 + Y_1^2 - R^2) =0\;.\tag3$$
Solve this and you find at which times $t$ you can obtain a solution. You may want to ignore negative values of $t$ as these represent times in the past. Then you can compute the two associated points of tangency (essentially a circle-circle intersection), and of these pick the one which is “from it's back” in terms of the direction of movement. Note that there might be situations (with the movement directed almost towards or away from the origin) where both or neither of the points of tangency could be considered “back”.
I have created an interactive demonstration of this problem, which you can use to explore some of the scenarios.
Historical detail: Originally I had used the resultant to eliminate $t$ in order to more directly read the angle off the solutions. Only when creating my demonstration did I realize that for every point $t$ there would be two tangents, usually one “front” and one “back”. At this point I realized that solving for $t$ first would likely make things easier. The relevant conditions in terms of $u$ are
\begin{align*} (S_1(X_1\sin B-(Y_1+R)\cos B)-S_2(Y_1+R))&\,u^2 + \\ 2(-X_1S_2+RS_1\sin B)&\,u\phantom{^1} + \tag4 \\ (S_1(X_1\sin B-(Y_1-R)\cos B)+S_2(Y_1-R))&\,\phantom{u^0}=0 \\[4ex] (S_1(X_1\sin B-(Y_1-R)\cos B)-S_2(Y_1-R))&\,u^2 + \\ 2(-X_1S_2-RS_1\sin B)&\,u\phantom{^1} + \tag5 \\ (S_1(X_1\sin B-(Y_1+R)\cos B)+S_2(Y_1+R))&\,\phantom{u^0}=0 \end{align*}
Note that there might be situations where the coefficient of the quadratic term becomes zero, making the whole equation linear instead. In these situations, the usual formula for solving a quadratic equation would entail a division by zero. This is an indication that $u=\infty$ is a solution, along with the solution from the remaining linear equation. It corresponds to $A=\pi$. The correct framework here is the real projective line, where division by zero is well defined. One could express the whole quadratic equation in a homogeneous fashion, but I fear that would be going too far here.
If either of the quadratic equations (4) or (5) is satisfied, then there exists a $t$ such that both the equations (1) and (2) are satisfied simultaneously. Which means you have up to 4 solutions to consider, two from each quadratic equation. I consider it likely that these fall into pairs for many situations: two from the past ($t<0$) and two from the future, as well as two tangent from the front and two from the back. But this is not always the case, and the interactive demonstration can help you explore corner cases.