Chapter 2: Space Curves
Section 2.3: Tangent Vectors
|
Example 2.3.9
|
|
Given the two plane curves ,
a)
|
At , obtain the equation of the line tangent to .
|
b)
|
Find the coordinates of the intersection of and the tangent line found in Part (a).
|
c)
|
Construct a vector from to the point found in Part (b).
|
d)
|
Obtain , the natural tangent vector at .
|
e)
|
Show that the vectors in Parts (c) and (d) are parallel.
(Hint: Show their components are proportional.)
|
f)
|
Draw both curves, the tangent line (Part (a)), and the tangent vector (Part (d)).
|
|
|
|
|
Solution
|
|
|
Mathematical Solution
|
|
•
|
At , the line tangent to the graph of is given by
|
•
|
The intersection of this tangent line with the graph of is obtained by solving the equations and for the two points and . Because of the restriction , only the second solution is accepted.
|
|
>
|
use plots, VectorCalculus in
module()
local p1,p2,p3,T;
T:=RootedVector(root=[1,1],<1,2>);
p1:=PlotVector(T);
p2:=plot([x^2,8-(x/4)^2,2*x-1],x=0..5,y=0..8,color=[red,blue,green]);
p3:=display(p1,p2,scaling=constrained);
print(p3);
end module:
end use:
|
|
Figure 2.3.9(a) Graph of and the tangent line (green)
|
|
|
|
|
|
•
|
The vector from to is
|
•
|
If is the radius-vector form of the curve defined by the graph of , then . Clearly, this tangent vector has the same direction as since these two vectors are proportional.
|
•
|
Figure 2.3.9(a) shows the graph of in red, the graph of in blue, and of the tangent line in green. The vector is represented by the black arrow.
|
|
|
Maple Solution - Interactive
|
|
Initialize
|
•
|
Tools≻Load Package: Student Multivariate Calculus
|
|
Loading Student:-MultivariateCalculus
|
•
|
Context Panel: Assign Function
|
|
|
•
|
Context Panel: Assign Function
|
|
|
Part (a)
|
•
|
Implement the point-slope form of the tangent line and press the Enter key.
|
|
|
Part (b)
|
•
|
Write the sequence of equations to be solved and press the Enter key.
|
•
|
Context Panel: Solve≻Solve
|
|
|
Part (c)
|
•
|
Context Panel: Assign Name
|
|
|
•
|
Context Panel: Evaluate and Display Inline
|
|
=
|
Part (d)
|
•
|
Context Panel: Assign Name
|
|
|
•
|
Expression palette: Evaluation template
|
•
|
Calculus palette: Differentiation operator
|
•
|
Context Panel: Assign to a Name≻dR1
|
|
=
|
Part (e)
|
•
|
Write V and 3 dR1, and press the Enter key.
|
•
|
Since these two vectors are obviously equal, V and dR1 are proportional.
|
|
|
Part (f)
|
•
|
Context Panel: Evaluate and Display inline
|
•
|
Context Panel: Plots: Arrow from point
|
|
=
|
•
|
Write the sequence of three functions shown to the right.
Press the Enter key.
|
•
|
Context Panel: Plots≻Plot Builder
Set
Options:
Range from 0 to 8
Constrained Scaling
|
•
|
Copy and paste the tangent vector.
|
|
|
|
|
|
|
Maple Solution - Coded
|
|
Initialize
|
|
|
|
|
Part (a)
|
•
|
Obtain, at , the equation of the line tangent to the graph of .
|
|
|
Part (b)
|
•
|
Obtain the intersection of the graph of and the line tangent to the graph of .
|
|
|
Part (c)
|
•
|
Obtain the vector from the point to , the point of intersection of the line tangent to the graph of and the graph of .
|
|
|
Part (d)
|
•
|
Use the notation for the position-vector representation of the graph of . Then use the map command to apply the diff command to each component of the vector. Finally, use the eval command to evaluate the tangent vector at .
|
|
|
Part (e)
|
•
|
Use the Equal command from the LinearAlgebra package to show that .
|
|
|
Part (f)
|
|
|
|
|
|
|
<< Previous Example Section 2.3
Next Section >>
© Maplesoft, a division of Waterloo Maple Inc., 2024. All rights reserved. This product is protected by copyright and distributed under licenses restricting its use, copying, distribution, and decompilation.
For more information on Maplesoft products and services, visit www.maplesoft.com
|