Circle of curvature

Consider any point P on the curve $ C$. The tangent drawn to the curve at P has the same slope as the curve itself at P (see §6.1). In an analogous manner we may construct for each point of the curve a circle whose curvature is the same as the curvature of the curve itself at that point. To do this, proceed as follows. Draw the normal to the curve at P on the concave side of the curve.

Figure 12.3: The circle of curvature.
\includegraphics[height=6cm,width=7cm]{circle-curvature2.eps}

Lay off on this normal the distance PC = radius of curvature (= R) at P. With C as a center draw the circle passing through P. The curvature of this circle is then $ K = \frac{1}{R}$, which also equals the curvature of the curve itself at P. The circle so constructed is called the circle of curvature for the point P on the curve.

In general, the circle of curvature of a curve at a point will cross the curve at that point. This is illustrated in the Figure 12.3.

Just as the tangent at P shows the direction of the curve at P, so the circle of curvature at P aids us very materially in forming a geometric concept of the curvature of the curve at P, the rate of change of direction of the curve and of the circle being the same at P.

The circle of curvature can be defined as the limiting position of a secant circle, a definition analogous to that of the tangent given in §4.9.

Example 12.6.1   Find the radius of curvature at the point $ (3, 4)$ on the equilateral hyperbola $ xy = 12$, and draw the corresponding circle of curvature.

Solution. $ \frac{dy}{dx} = -\frac{y}{x}$, $ \frac{d^2 y}{dx^2} = \frac{2y}{x^2}$. For $ (3, 4)$, $ \frac{dy}{dx} = -\frac{4}{3}$, $ \frac{d^2 y}{dx^2} = \frac{8}{9}$, so

$\displaystyle R
= \frac{ [1 + \frac{16}{9}]^{\frac{3}{2}} }{ \frac{8}{9} }
= \frac{125}{24} = 25\frac{5}{24}.
$

The circle of curvature crosses the curve at two points.

We solve for the circle of curvature using SAGE. First, we solve for the intersection of the normal $ y-4=(-1/m)(x-3)$, where $ m=y'(3)=-4/3$, and the circle of radius $ R=125/24$ about $ (3, 4)$:

[fontsize=\scriptsize,fontfamily=courier,fontshape=tt,frame=single,label=\sage]

sage: x = var("x")
sage: y = 12/x
sage: K = diff(y,x,2)/(1+diff(y,x)^2)^(3/2)
sage: K
24/((144/x^4 + 1)^(3/2)*x^3)
sage: K(3)
24/125
sage: R = 1/K(3)
sage: m = diff(y,x)(3); m
-4/3
sage: xx = var("xx")
sage: yy = var("yy")
sage: solve((xx-3)^2+(-1/m)^2*(xx-3)^2==R^2, xx)
[xx == -7/6, xx == 43/6]

This tells us that the normal line intersects the circle of radius $ R$ centered at $ (3, 4)$ in 2 points, one of which is at $ (43/6, 57/8)$. This is the center of the circle of curvature, so the equation is $ (x-43/6)^2+(y-57/8)^2=R^2$.

Figure 12.4: The circle of curvature of a hyperbola.
\includegraphics[height=5cm,width=6cm]{circle-curvature3.eps}

david joyner 2008-08-11