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
2025-01-13 09:45:39.1736761539
Sampling a curve (parametric)
765 Views Asked by mony https://math.techqa.club/user/mony/detail At
1
There are 1 best solutions below
Related Questions in PARAMETRIC
- Parametric line segment in 3-space
- Finding an equation relating $x$ and $y$ with their respective parametric equations and using its differential?
- Area of parametric surface (theory)
- Trigonometric equation with parameter
- Parametrics, when $t$ is not in between $0<t<1$
- Parameterization of an ellipse
- Is there a general equation for an n-ellipse?
- On my grapher, $(\cos t, \sin (t+1))$ generates a geometric figure. What is that figure?
- Parametric curve: $x=\frac{a}{2}(t+\frac{1}{t})$, $y=\frac{b}{2}(t-\frac{1}{t})$?
- Is this parametric equation describe a circle?
Related Questions in CURVES
- Parametrization of intersection of curves
- Parametric line segment in 3-space
- Closed periodic curve
- Derive curve and equation from points
- Torsion and curvature of a curve
- Transforming a curve to pass through given points
- Show that $\textbf{$\gamma$}$ lies on a sphere of radius $r$
- Given series aircraft attitude readings produce a smoother version of flown route
- What do I call this curve
- Finding an example of "A reparametrization of a closed curve need not be closed"$\text{}$
Related Questions in SAMPLING-THEORY
- Why is $\mathrm E( x_i)= \mu$ where $\mu$ is the mean of the population when sampling is done without replacement?
- Is sharing the same support a necessary condition for exchangeability?
- Summation of L1-function values finite
- Sampling a curve (parametric)
- Expected difference for two largest samples
- the sampling distribution of sample means, why are samples taken with replacement?
- Are there any generalization of the DKW inequality to the cluster sampling case?
- Algebraic expression of random sampling without replacement
- Apply formula on random sampling without replacement, but with replacement between each iterations
- How to determine the sample size for a two sided $z$-test?
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Refuting the Anti-Cantor Cranks
- Find $E[XY|Y+Z=1 ]$
- 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?
- What are the Implications of having VΩ as a model for a theory?
- How do we know that the number $1$ is not equal to the number $-1$?
- Defining a Galois Field based on primitive element versus polynomial?
- Is computer science a branch of mathematics?
- Can't find the relationship between two columns of numbers. Please Help
- 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
- A community project: prove (or disprove) that $\sum_{n\geq 1}\frac{\sin(2^n)}{n}$ is convergent
- Alternative way of expressing a quantied statement with "Some"
Popular # Hahtags
real-analysis
calculus
linear-algebra
probability
abstract-algebra
integration
sequences-and-series
combinatorics
general-topology
matrices
functional-analysis
complex-analysis
geometry
group-theory
algebra-precalculus
probability-theory
ordinary-differential-equations
limits
analysis
number-theory
measure-theory
elementary-number-theory
statistics
multivariable-calculus
functions
derivatives
discrete-mathematics
differential-geometry
inequality
trigonometry
Popular Questions
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- 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)$?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- How to find mean and median from histogram
- Difference between "≈", "≃", and "≅"
- Easy way of memorizing values of sine, cosine, and tangent
- How to calculate the intersection of two planes?
- What does "∈" mean?
- If you roll a fair six sided die twice, what's the probability that you get the same number both times?
- Probability of getting exactly 2 heads in 3 coins tossed with order not important?
- Fourier transform for dummies
- Limit of $(1+ x/n)^n$ when $n$ tends to infinity
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.