Find equations of tangent and normal, lengths of subtangent and subnormal to each of the following curves at the point indicated:
Point:
.
Tangent line:
;
Normal line:
;
Subtangent:
;
Subnormal:
.
Point:
.
Tangent line:
;
Normal line:
;
Subtangent:
;
Subnormal:
.
Point:
.
Tangent line:
;
Normal line:
;
Subtangent:
;
Subnormal:
.
Point:
.
Tangent line:
;
Normal line:
;
Subtangent:
;
Subnormal:
.
Point:
.
Tangent line:
;
Normal line:
;
Subtangent:
;
Subnormal:
.
SAGE can help with the computations here:
[fontsize=\small,fontfamily=courier,fontshape=tt,frame=single,label=\sage]
sage: t = var("t")
sage: x = sin(t)
sage: y = cos(2*t)
sage: t0 = pi/6
sage: y_x = diff(y,t)/diff(x,t)
sage: y_x
-2*sin(2*t)/cos(t)
sage: y_x(t0)
-2
sage: m = y_x(t0); x0 = x(t0); y0 = y(t0)
sage: X,Y = var("X,Y")
sage: Y - y0 == m*(X - x0)
Y - 1/2 == -2*(X - 1/2)
The last line is the point-slope form of the tangent
line of the parametric curve at that point
(so,
).
We use
and
in place of
and
so as to not
over-ride the entries that SAGE has stored for them.
Continuing the above SAGE computations:
[fontsize=\small,fontfamily=courier,fontshape=tt,frame=single,label=\sage] sage: x_y = diff(x,t)/diff(y,t) sage: len_subtan = y(t0)*x_y(t0); len_subtan -1/4 sage: sage: len_subnor = y(t0)*y_x(t0); len_subnor -1 sage: len_tan = y(t0)*sqrt(x_y(t0)^2+1); len_tan sqrt(5)/4 sage: len_nor = y(t0)*sqrt(y_x(t0)^2+1); len_nor sqrt(5)/2
These tell us the length of the subtangent is
(as expected), as well as the lengths of the subnormal,
tangent and normal, using formulas
(6.10), (6.3), (6.4),
(6.5), (6.6) of the last section.
Point:
.
Point:
.
Point:
.
Point:
.
Point:
.
Point:
.
Point:
.
Point:
.
Point:
.
Point:
In the following curves find lengths of (a) subtangent, (b) subnormal, (c) tangent, (d) normal, at any point:
Ans. (a)
, (b)
, (c)
,
(d)
.
david joyner 2008-08-11