What's a parametric equation (eg. $(x,y)=(\cos(t \cdot 2\pi),\sin(t \cdot 2\pi)$ plots a circle where $t$ is the 'time' along the circle) that draws an arc between the two points $(x_0,y_0)$ and $(x_1,y_1)$ with a start angle $a$. Also, can I calculate what the end angle is going to be? I drew a picture to show you what I mean. Thank you :) The picture
2026-03-31 02:58:58.1774925938
2D parametric equation for an arc between two points with a start angle
5k Views Asked by user338483 https://math.techqa.club/user/user338483/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 TRIGONOMETRY
- Is there a trigonometric identity that implies the Riemann Hypothesis?
- Finding the value of cot 142.5°
- Using trigonometric identities to simply the following expression $\tan\frac{\pi}{5} + 2\tan\frac{2\pi}{5}+ 4\cot\frac{4\pi}{5}=\cot\frac{\pi}{5}$
- Derive the conditions $xy<1$ for $\tan^{-1}x+\tan^{-1}y=\tan^{-1}\frac{x+y}{1-xy}$ and $xy>-1$ for $\tan^{-1}x-\tan^{-1}y=\tan^{-1}\frac{x-y}{1+xy}$
- Sine of the sum of two solutions of $a\cos\theta + b \sin\theta = c$
- Tan of difference of two angles given as sum of sines and cosines
- Limit of $\sqrt x \sin(1/x)$ where $x$ approaches positive infinity
- $\int \ x\sqrt{1-x^2}\,dx$, by the substitution $x= \cos t$
- Why are extraneous solutions created here?
- I cannot solve this simple looking trigonometric question
Related Questions in PARAMETRIC
- Suggest parametric equations for a given curve
- Parametric Circle equations and intersections
- Is it possible to construct the equation of a surface from its line element?
- Finding the equation of aline in implicit form
- Finding whether a parametric curve has a well defined tangent at the origin
- Parametric representation of a cylinder generated by a straight line
- Converting circle parametric equation
- Finding the major and minor axes lengths of an ellipse given parametric equations
- Draw (2, 3) torus knot on the unwrapped torus surface
- Question about parametric, implicit equation and vector equation
Related Questions in ANGLE
- How to find 2 points in line?
- Why are radians dimensionless?
- A discrete problem about coordinates or angle?
- Converting from Yaw,Pitch,Roll to Vector
- How do I calculate the angle between this two vectors?
- Given points $P(0, 3, 0) \;\;\; Q(-3, 4, 2) \;\;\; R(-2, 9, 1) \;$ find the measure of ∠PQR
- How do I find this angle?
- Length of Line Between Concentric Circles Based on Skew of Line to Circles
- How to find the norm of this vector and the angles between him and other?
- Find the measure of ∠PRQ, with points $P(0, 3, 0) \;\;\; Q(-3, 4, 2) \;\;\; R(-2, 9, 1) \;$
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 assume you mean a circular arc, an arc from a circle, with a fixed radius.
The general 2D parametric equation for a circular arc is $$\begin{cases} x(t) = x_c + r \cos(a_0 + a t)\\ y(t) = y_c + r \sin(a_0 + a t) \end{cases}$$ where $$a = a_1 - a_0$$ and $$0 \le t \le 1$$ The center is at $(x_c, y_c)$, and the arc starts at angle $a_0$, extends to angle $a_1$, with radius $r$. Note that $t=0$ is the start point, and $t=1$ the end point.
In your case, you know $a_0$, $x(0) = x_0$, $y(0) = y_0$, $x(1) = x_1$, and $y(1) = y_1$. The first three define $x_c$ and $y_c$: $$\begin{cases} x(0) = x_0 = x_c + r \cos(a_0)\\ y(0) = y_0 = y_c + r \sin(a_0) \end{cases} \iff \begin{cases} x_c = x_0 - r \cos(a_0)\\ y_c = y_0 - r \sin(a_0)\end{cases}$$ The last two can be used to define $r$ and $a$: $$\begin{cases} x(1) = x_1 = x_0 - r \cos(a_0) + r \cos(a_0 + a)\\ y(1) = y_1 = y_0 - r \sin(a_0) + r \sin(a_0 + a)\end{cases}$$ That is a bit of work to work out by hand, but we end up with $$r = \frac{(x_0-x_1)^2 + (y_0-y_1)^2}{2(x_0-x_1)\cos(a_0) + 2(y_0-y_1)\sin(a_0)}$$ and $$a = \arctan\left( \; ((x_0-x_1)^2 - (y_0-y_1)^2)\sin(a_0) - 2(x_0-x_1)(y_0-y_1)\cos(a_0), \\ ((y_0-y_1)^2 - (x_0-x_1)^2)\cos(a_0) - 2(x_0-x_1)(y_0-y_1)\sin(a_0) \;\right) - a_0$$ where $\arctan(y,x)$ returns the angle between the positive x axis and point $(x,y)$, counterclockwise, handling all four quadrants (as determined by the signs of $y$ and $x$), i.e. full 360°.
Also, since $a = a_1 - a_0$, the ending angle for the arc is $$a_1 = \arctan\left( \; ((x_0-x_1)^2 - (y_0-y_1)^2)\sin(a_0) - 2(x_0-x_1)(y_0-y_1)\cos(a_0), \\ ((y_0-y_1)^2 - (x_0-x_1)^2)\cos(a_0) - 2(x_0-x_1)(y_0-y_1)\sin(a_0) \;\right)$$