Given a vector function r ( t ) = ⟨ 2 t , t 2 , 3 t 3 ⟩ , if the smaller angle between the osculating planes at t = 1 and t = 2 can be represented in the form arccos ( β α ) , where α , β ∈ R and are coprime positive integers, find α + β .
Clarification
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Since we're solving for the relative angle between planes, it also suffices to simply calculate the cross product between the first and second derivative of the given vector. Then use the definition of the dot product (between the resultant cross product(s) evaluated at 1 and 2, respectively) to calculate the angle. This way you can find the answer without worrying about normalization, orientation etc., since those things don't change the relative angle.
Problem Loading...
Note Loading...
Set Loading...
Solution .
r ( t ) = ⟨ 2 t , t 2 , 3 t 3 ⟩ T ( t ) = ∣ r ’ ( t ) ∣ r ’ ( t ) = t 2 + 2 ⟨ 2 , 2 t , t 2 ⟩ N ( t ) = ∣ ∣ ∣ T ’ ( t ) ∣ ∣ ∣ T ’ ( t ) T ’ ( t ) = ⟨ − 2 ( t 2 + 2 ) − 2 2 t , ( t 2 + 2 ) 2 2 ( t 2 + 2 ) − ( 2 t ) 2 , ( t 2 + 2 ) 2 2 t ( t 2 + 2 ) − 2 t 3 , ⟩ = ⟨ ( t 2 + 2 ) 2 − 4 t , ( t 2 + 2 ) 2 4 − 2 t 2 , ( t 2 + 2 ) 2 4 t ⟩ ∣ ∣ ∣ T ’ ( t ) ∣ ∣ ∣ = ( t 2 + 2 ) 4 1 6 t 2 + 1 6 + 4 t 4 − 1 6 t 2 + 1 6 t 2 = ( t 2 + 2 ) 2 2 t 4 + 4 t 2 + 4 = t 2 + 2 2 N ( t ) = t 2 + 2 ⟨ − 2 t , 2 − t 2 , 2 t ⟩
The binormal vector B ( t ) will be a normal vector to the osculating plane at time t given by vectors N ( t ) , T ( t ) since B ( t ) = N ( t ) × T ( t )
B ( t ) = N ( t ) × T ( t ) = ∣ ∣ ∣ ∣ ∣ ∣ ∣ ∣ ∣ i ^ t 2 + 2 − 2 t t 2 + 2 2 j ^ t 2 + 2 2 − t 2 t 2 + 2 2 t k ^ t 2 + 2 2 t t 2 + 2 t 2 ∣ ∣ ∣ ∣ ∣ ∣ ∣ ∣ ∣
B ( t ) = i ^ [ ( t 2 + 2 2 − t 2 ) ( t 2 + 2 t 2 ) − ( t 2 + 2 2 t ) ( t 2 + 2 2 t ) ] − j ^ [ ( t 2 + 2 − 2 t ) ( t 2 + 2 t 2 ) − ( t 2 + 2 2 t ) ( t 2 + 2 2 ) ] + k ^ [ ( t 2 + 2 − 2 t ) ( t 2 + 2 2 t ) − ( t 2 + 2 2 − t 2 ) ( t 2 + 2 2 ) ]
= t 2 + 2 t 2 i ^ + 2 t j ^ − 2 k ^ B ( 1 ) = ⟨ 3 − 1 , 3 2 , 3 − 2 ⟩ ; B ( 2 ) = ⟨ 3 − 2 , 3 2 , 3 − 1 ⟩
The angle between two planes is the same as the angle between their normal vectors.
cos θ = ∣ ∣ ∣ B ( 1 ) ∣ ∣ ∣ ∣ ∣ ∣ B ( 2 ) ∣ ∣ ∣ B ( 1 ) ⋅ B ( 2 ) = ( 3 − 1 ) 2 + ( 3 2 ) 2 + ( 3 − 2 ) 2 ( 3 − 2 ) 2 + ( 3 2 ) 2 + ( 3 − 1 ) 2 3 − 1 ⋅ 3 − 2 + 3 2 ⋅ 3 2 + 3 − 2 ⋅ 3 − 1 = 9 8 ; arccos ( 9 8 ) = θ
α + β = 8 + 9 = 1 7