I am working with parametric curves, I need to find the maximum curvature of these curves. I know the starting point, ending point and length of a curve. I want to use sampling method to know the curvature of the curve at various points. I am unable to figure out how can I proceed. Any help would be appreciated. Cheers
2026-03-25 13:35:33.1774445733
Sampling a curve (parametric)
759 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
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 CURVES
- Studying regular space curves when restricted to two differentiable functions
- The problem in my proof that if $\beta(s)=\alpha(-s)$ then the torsions of the curves satisfies $\tau_{\beta}(s)=-\tau_{\alpha}(-s)$
- Given a circle, can i assume that the point where all the normals went thought and the point where all the tangents are equidistants are the same?
- Function determining temperature of points along a curve (find local maxima temp & local minima temp)
- Reference for $L$-functions of curves
- About the Green's Theorem
- inhomogeneous coordinates to homogeneous coordinates
- Can the relocation of one control point of a NURBS curve be compensated by an adjustment of some weights?
- $\| \gamma'(t) \|$ = constant for all $t$, if and only if $\gamma''(t)$ is normal to the tangent vector space for all $t$.
- proving that a curve with constant curvature contained in a sphere its a circle
Related Questions in SAMPLING-THEORY
- [data generating process]-[sampling from an infinite population]-[i.i.d.]: some clarifications
- Which is the relation between between population/probability space/sampling?
- Cardinality of Intersection and Union of Multiple Sets Given Overlap coefficient(s)
- Linking probability measure to classical definition of probability when sampling from finite population
- Sampling without replacement with non uniform probabilities
- Sampling from a Mixture of Distributions
- random sampling on random samples
- Standard Error is of Population Total
- How is Welford's Algorithm derived?
- Merge weighted random sampled set with different distributions
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?
You cannot do this successfully without further information. Consider the curve given by \begin{align} x(t) &= \begin{cases} 0 & t \le 0\\ t^3 & t \ge 0 \end{cases}\\ y(t) = &= \begin{cases} t^3 & t \le 0\\ 0 & t \ge 0 \end{cases} \end{align}
The graph of this curve is a path coming up the negative $y$ axis, making a sharp turn to the right, and leaving along the postive $x$ axis. The curvature at the origin (which corresponds to $t = 0$) is infinite. For any discrete sampling strategy that happens to not include $t = 0$, you can replace this curve with another that has identical samples, but follows a small circle-arc between the axes, for $t$ in the interval between the last negative sample and the first positive sample. These two curves have identical samples, but one has bounded curvature, the other has unbounded. (And indeed, the bounded curvature one can have arbitrarily high curvature if we take the circe-arc to have a very small radius.)
You may object that these curves are defined piecewise, and your curves are far nicer, etc. But these piecewise curves can be arbitrarily closely approximated by polynomial curves, at least on a finite interval like $-1 \le t \le 1$, so that objection doesn't really rule out this situation.
Basically: finite sampling of parametric curves doesn't allow you to estimate anything unless you know something more about them, such as "the curve is band-limited" or "the curve is given by a polynomial of degree no larger than $n$", etc.
Sorry to be disappointing, but this is a very deep rathole that you're about to head into, and I want to help you avoid it.
Post-comment addition:
The poster has revealed that the curves in question are piecewise cubic. That makes the problem somewhat simpler, as there's a nice formula for the curvature:
$$ \kappa = \frac{\dot{x} \ddot{y} - \dot{y}\ddot{x}}{ \left( \dot{x}^2 + \dot{y}^2 \right)^\frac{3}{2}}. $$
The numerator here turns out to be quadratic; the denominator the $3/2$ power of a quartic. You can simply evaluate this expression at any point at which you want to compute the curvature. (BTW, this is the signed curvature -- it'll be positive for curves like a circle around the origin traversed counterclockwise, and negative for the same curve traversed clockwise.) For general curves, direct evaluation is a pain (or impossible, if you only have samples). For cubics...it's definitely worth doing.