Connect via MCP →

Enter Calculation

Supported Functions:

t (identity function), t^2 (square), t^3 (cube), sin(t), cos(t), tan(t), exp(t) (exponential), log(t) (natural logarithm), sqrt(t) (square root)

Formula

Advertisement

Results

Input Value
x(t) t
y(t) t^2
t 5
Result Value
Point (x, y) (5, 25)
Curvature 0.002
Radius of Curvature 507.5187
Center of Osculating Circle (-500, 75.5)

What Is an Osculating Circle?

The osculating circle is the circle that best approximates a curve at a specific point. It "kisses" the curve there (the Latin osculare means "to kiss"), matching not just the point itself but also the curve's slope and how sharply it bends. For any smooth parametric curve defined by x(t) and y(t), the osculating circle at a chosen parameter t shares the curve's tangent direction and its curvature at that point.

This calculator takes your parametric equations and a value of t, then returns three things: the curvature \(\kappa\), the radius of curvature \(R\), and the coordinates of the circle's center. These quantities are widely used in physics, road and railway design, computer graphics, and differential geometry.

Curve with an osculating circle tangent to it at a point
The osculating circle hugs the curve at a point, sharing its tangent and curvature.

How to Use the Calculator

  • Enter the x-component of the curve as a function of t, e.g. cos(t).
  • Enter the y-component, e.g. sin(t).
  • Enter the parameter value t at which you want the circle (in radians where trig functions are used).
  • Read off the curvature, radius, and center point.

The Formulas Explained

For a parametric curve, the curvature is:

$$\kappa = \frac{\left| x^{\prime} y^{\prime\prime} - y^{\prime} x^{\prime\prime} \right|}{\left( x^{\prime 2} + y^{\prime 2} \right)^{3/2}}$$

The radius of curvature is simply the reciprocal: $$R = \frac{1}{\kappa}$$ A large radius means a gentle bend; a small radius means a tight turn.

The center of the osculating circle lies a distance \(R\) from the curve, along the inward-pointing normal direction. Its coordinates are computed from the point \((x, y)\) plus the appropriate normal offset.

Advertisement
Diagram showing radius of curvature, center, and tangent at a point on a curve
Radius R is the inverse of curvature; the center lies along the inward normal direction.

Worked Example

Take the curve \(x(t) = \cos(t)\), \(y(t) = \sin(t)\) — the unit circle — at \(t = 0\). Here \(x^{\prime} = -\sin(t)\), \(y^{\prime} = \cos(t)\), \(x^{\prime\prime} = -\cos(t)\), \(y^{\prime\prime} = -\sin(t)\). At \(t = 0\) this gives curvature \(\kappa = 1\), so the radius \(R = 1\). The center sits at the origin \((0, 0)\). That makes perfect sense: the osculating circle of a unit circle is the circle itself.

Frequently Asked Questions

What units does t use? If your functions contain trigonometric terms, t is treated as radians. For polynomial curves, t is just a dimensionless parameter.

What if the curvature is zero? At an inflection point or a straight segment, \(\kappa = 0\) and the radius becomes infinite — there is no finite osculating circle, only a tangent line.

Why is curvature useful? It quantifies how sharply something turns. Engineers use it to limit lateral acceleration on roads, and animators use it to create smooth motion paths.

Last updated: