Tangent and normal vectors can help us plot make interesting parametric functions.
A sine curve on a circle
Suppose you wish to make a sine curve on a circle like this:
How do you do this? Well, a general method for placing one curve along another is to use unit tangent and unit normal vectors!
xxxxxxxxxx
var('s t')
x(t) = 3*cos(t)
y(t) = 3*sin(t)
c(t) = (x(t),y(t))
circle=parametric_plot(c(t),(t,0,2*pi),color="black")
circle
xxxxxxxxxx
var('s t')
x(t) = 3*cos(t)
y(t) = 3*sin(t)
c(t) = (x(t),y(t))
dc=derivative(c,t)
ut= dc / dc.norm()
ddc = derivative(ut,t)
n = ddc / ddc.norm()
circle=parametric_plot(c(t),(t,0,2*pi),color="black")
curve=parametric_plot(c(t) + n*sin(5*t), (t,0,2*pi))
circle+curve
Thickening a curve
Suppose you have a vector-valued function that defines a curve in space, and you want to build a parameterized surface that looks like a “thickened” version of the curve. In other words, we want to convert a curve like
into a thickened “tube” likeTo plot a “tube” around a vector-valued function , we need three handy vectors:
- The unit tangent vector:
- The unit normal vector:
- The unit binormal vector:
Let’s see these vectors in action with our next example.
xxxxxxxxxx
var('s t')
x(t) = t^2-2
y(t) = t^2-2
z(t) = 1-t
f(t) = (x(t),y(t),z(t))
df=derivative(f,t)
ut = df / df.norm()
ddf = derivative(ut,t)
n = ddf / ddf.norm()
bn = ut.cross_product(n)
parametric_plot3d(f(t) + 0.5*n*cos(s) + 0.5*bn*sin(s), (t,-3,3), (s,0,2*pi))