Chapter 2: Space Curves
Section 2.8: Resolution of R″ along T and N
Example 2.8.6
If C is the curve given by Rp=p i+3 p2 j+p3 k in Example 2.6.2, verify the validity of the decomposition R″p=ρ′T+κ ρ2N.
Solution
Mathematical Solution
By the usual techniques of the Frenet formalism, obtain the results in Table 2.8.6(a).
T=1α16 p3 p2
N=1αβ−3 p(p2+2)−(9 p4−1)p (18 p2+1)
ρ=α
κ=6βα3/2
Table 2.8.6(a) Items from the Frenet formalism, where α=9⁢p4+36⁢p2+1, β=9⁢p4+p2+1
Then R″=066⁢p and
ρ′T+κ ρ2N
=ddpα T+6βα3/2 α2 N
=18⁢p⁢p2+2α 1α16 p3 p2+6βα1αβ−3 p(p2+2)−(9 p4−1)p (18 p2+1)
=6α3 p p2+216 p3 p2+−3 p(p2+2)−(9 p4−1)p (18 p2+1)
=6α 09⁢p4+36⁢p2+1p⁢9⁢p4+36⁢p2+1
=6α 0αp α
=066 p
Indeed, the scalar projections of R″ on T and N, respectively, are
R″·T=066 p·16 p3 p2α= 18⁢p⁢p2+2α=ρ′
and
R″·N
=066 p·−3 p(p2+2)−(9 p4−1)p (18 p2+1)αβ
=6⁢9⁢p4+p2+1α⁢β
=6 βαβ
=6βα
=6βα3/2α2=κ ρ2
Maple Solution - Interactive
Set R″ as an Atomic Identifier, and invoke it as an Atomic Identifier each time it is called.
Initialize
Tools≻ Load Package: Student Vector Calculus
Loading Student:-VectorCalculus
Execute the BasisFormat command at the right, or use the task template.
BasisFormatfalse:
Write R=… as per Table 1.1.1.
Context Panel: Assign Name
R=p,3 p2,p3→assign
Obtain ρ=R′p and R″p
Keyboard the norm bars.
Calculus palette: Differentiation operator
Context Panel: Evaluate and Display Inline
Context Panel: Simplify≻Assuming Positive
Context Panel: Assign to a Name≻rho
ⅆⅆ p R = 9⁢p4+36⁢p2+1→assuming positive9⁢p4+36⁢p2+1→assign to a nameρ
Context Panel: Simplify≻Simplify
Context Panel: Assign to a Name≻Temp
Set R″ as an Atomic Identifier and equate to Temp.
ⅆ2ⅆp2 R = = simplify →assign to a nameTemp
R″=Temp →assign
Obtain T
Write R.
Context Panel: Student Multivariate Calculus≻Frenet Formalism≻Tangent Vector≻p
Context Panel: Student Multivariate Calculus≻Normalize≻Euclidean
Context Panel: Simplify≻Assuming Real
Context Panel: Assign to a Name≻T
R = →tangent vector →Euclidean-normalize →assuming real →assign to a nameT
Obtain N
Context Panel: Student Multivariate Calculus≻Frenet Formalism≻Principal Normal≻p
Context Panel: Assign to a Name≻N
R = →principal normal →2-normalize →assuming real →assign to a nameN
Obtain the curvature κ
Context Panel: Student Multivariate Calculus≻Frenet Formalism≻Curvature≻p
Context Panel: Assign to a Name≻kappa
R = →curvature12⁢36⁢p3+72⁢p29⁢p4+36⁢p2+13+4⁢−3⁢p⁢36⁢p3+72⁢p9⁢p4+36⁢p2+13/2+69⁢p4+36⁢p2+12+4⁢−32⁢p2⁢36⁢p3+72⁢p9⁢p4+36⁢p2+13/2+6⁢p9⁢p4+36⁢p2+129⁢p4+36⁢p2+1→assuming real6⁢9⁢p4+p2+19⁢p4+36⁢p2+13/2→assign to a nameκ
Compute ρ′T+κ ρ2N and compare with R″
ⅆⅆ p ρ T+κ ρ2 N = →assuming real
R″ =
Compare the scalar projection of R″ on T with ρ′
Common Symbols palette: Dot product operator
R″·T = 36⁢p9⁢p4+36⁢p2+1+18⁢p39⁢p4+36⁢p2+1= simplify 18⁢p⁢p2+29⁢p4+36⁢p2+1
ⅆⅆ p ρ = 12⁢36⁢p3+72⁢p9⁢p4+36⁢p2+1→assuming real18⁢p⁢p2+29⁢p4+36⁢p2+1
Compare the scalar projection of R″ on N with κ ρ2
Common Symbols palette: Cross product operator
R″·N = −6⁢9⁢p4−19⁢p4+36⁢p2+1⁢9⁢p4+p2+1+6⁢p2⁢18⁢p2+19⁢p4+36⁢p2+1⁢9⁢p4+p2+1= simplify 6⁢9⁢p4+p2+19⁢p4+36⁢p2+1
κ ρ2 = 6⁢9⁢p4+p2+19⁢p4+36⁢p2+1= simplify 6⁢9⁢p4+p2+19⁢p4+36⁢p2+1
Maple Solution - Coded
To assign to the symbol R″, it must be converted to an Atomic Identifier. Any reference to it thereafter must also be written as an Atomic Identifier.
Install the Student VectorCalculus package.
withStudent:-VectorCalculus:
Apply the BasisFormat command.
Define R and obtain R″,T,N,ρ,κ
Define C as a position vector.
R≔p,3 p2,p3:
Apply the diff command to obtain R″, setting the name R″ as an Atomic Identifier.
R″≔simplifydiffR,p,p:
Obtain T with the TangentVector and simplify commands.
Temp≔TangentVectorR,normalized:T≔simplifyTemp assuming p∷real:
Obtain N with the PrincipalNormal and simplify commands.
Temp≔PrincipalNormalR,normalized:N≔simplifyTemp assuming p∷real:
Obtain ρ with the diff and simplify commands.
ρ≔simplifyNormdiffR,p assuming p∷real:
Obtain κ with the Curvature and simplify commands.
κ≔simplifyCurvatureR assuming p∷real:
Display R″,T,N,ρ,κ
R″,T,N,ρ,κ
Obtain the right-hand side of the decomposition formula
Apply the diff and simplify commands to construct the right-hand side of the decomposition formula.
simplifydiffρ,p T+κ ρ2 N
Obtain the scalar projection of R″ on T and compare to ρ′
Apply the DotProduct and simplify commands.
simplifyDotProductR″,T
18⁢p⁢p2+29⁢p4+36⁢p2+1
Obtain ρ′ via the diff and simplify commands.
simplifydiffρ,p
Obtain the scalar projection of R″ on N and compare to κ ρ2
simplifyDotProductR″,N
6⁢9⁢p4+p2+19⁢p4+36⁢p2+1
Apply the simplify command.
simplifyκ ρ2
<< Previous Example Section 2.8 Next Example >>
© 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
Download Help Document