Calculating Lengths & Proving Identities: A Math Challenge

Click For Summary

Homework Help Overview

The discussion revolves around calculating the lengths of curves defined by parametric equations and proving vector identities, including the bac-cab formula and properties of cross products. The subject area includes calculus and vector algebra.

Discussion Character

  • Mixed

Approaches and Questions Raised

  • Participants explore methods for calculating the length of curves by integrating the magnitude of the velocity vector. There are questions about the interpretation of vector operations and the meaning of certain expressions, such as b(a*c). Some participants suggest using trigonometric substitutions and the Mean-Value Theorem in their reasoning.

Discussion Status

Several participants have provided insights into the calculations and interpretations of vector operations, while others have posed clarifying questions. The discussion is active, with various approaches being examined without a clear consensus on the methods or proofs being discussed.

Contextual Notes

Participants are working within the constraints of homework guidelines, which may limit the depth of solutions provided. There are also references to specific theorems and formulas that may not be universally understood among all participants.

JasonJo
Messages
425
Reaction score
2
1. calculate the length of the following paths:
f(t) = (7, t, t^2) over 1<t<3

the way i was taught in class to calculate the length of a curve is to integrate the magnitude of the velocity, but i can't seem to naturally integrate the magnitude of (0, 1, 2t)

similarly for:
f(t) = (cos(3t), sin(3t), 2t^(3/2)) 0<t<4

2. prove the bac-cab formula
aX(bXc) = b(a*c) - c(a*b)
where * is the dot product

what does b(a*c) mean?! how do i evaluate that?

i wrote aX(bXc) in terms of the component form, etc.

3. prove the length curve and curvature formulas.

5. prove aX(bXc) = (aXb)Xc + bX(aXc)

PLEASE HELP!
 
Physics news on Phys.org
JasonJo said:
1. calculate the length of the following paths:
f(t) = (7, t, t^2) over 1<t<3
the way i was taught in class to calculate the length of a curve is to integrate the magnitude of the velocity, but i can't seem to naturally integrate the magnitude of (0, 1, 2t)
No reason why you can't! Personally, I dislike "physics" names for mathematical concepts: you integrate the magnitude of the tangent vector!
Yes, the tangent vector to f(t)= (7, t, t2) is j+ 2tk and its magnitude is [tex]\sqrt{1+ 4t^2}[/tex]. The arclength you seek is
[tex]\int_1^3\sqrt{1+ 4t^2}dt[/tex]. When I see that I immediately think "trig substitution". sin2u+ cos2u= 1 so, dividing by cos2 u, tan2u+ 1= sec2. Let 2t= tan u so that 2dt= sec2u du or dt= (1/2)sec2udu and [tex]\sqrt{1+ 4t^2}= \sqrt{1+ tan^2 u}= sec u[/tex]. The integral becomes [tex]\frac{1}{2}\int sec^3 u du= \frac{1}{2}\frac{du}{cos^3 u}[/itex] (the limits of integration are u= arctan 2 and u= arctan 6. Multiply numerator and denominator by cos u to get [tex]\int \frac{cos u du}{cos^4 u}= \int \frac{cos u du}{(1- sin^2u)^2}[/tex]. Make the change of variable x= sin u so that dx= cos u du and the integral becomes [tex]\int \frac{dx}{(1-x^2)^2}[/tex] which can be done by "partial fractions". <br /> <blockquote data-attributes="" data-quote="" data-source="" class="bbCodeBlock bbCodeBlock--expandable bbCodeBlock--quote js-expandWatch"> <div class="bbCodeBlock-content"> <div class="bbCodeBlock-expandContent js-expandContent "> similarly for:<br /> f(t) = (cos(3t), sin(3t), 2t^(3/2)) 0<t<4 </div> </div> </blockquote> The tangent vector is -3sin(3t)i+ 3cos(3t)j+ 3t<sup>1/2</sup>k. The magnitude of that vector is [tex]\sqrt{9sin^2(3t)+ 9cos^2(3t)+ 9t}[/tex] which looks to me like [tex]3\sqrt{1+ t}[/tex]. The arclength is [tex]3\int_0^4\sqrt{1+ t}dt[/tex]. Don't you think "u= 1+t" would take care of that?<br /> <blockquote data-attributes="" data-quote="" data-source="" class="bbCodeBlock bbCodeBlock--expandable bbCodeBlock--quote js-expandWatch"> <div class="bbCodeBlock-content"> <div class="bbCodeBlock-expandContent js-expandContent "> 2. prove the bac-cab formula<br /> aX(bXc) = b(a*c) - c(a*b)<br /> where * is the dot product<br /> what does b(a*c) mean?! how do i evaluate that? </div> </div> </blockquote> You just said * is the dot product so (a*c) is a number (scalar). b(a*c) is just that number times the vector b. <br /> If [tex]a= a_1i+ a_2j+ a_3k[/tex], [tex]b= b_1i+ b_2j+ b_3k[/tex], and [tex]c= c_1i+ c_2j+ c_3k[/tex], then [tex]a*c= a_1c_1+ a_2c_2+ a_3c_3[/tex] and [tex]b(a*c)= (a_1c_1+ a_2c_2+ a_3c_3)b_1i+ (a_1c_1+ a_2c_2+ a_3c_3)b_2j+ (a_1c_1+ a_2c_2+ a_3c_3)b_3k[/tex]<br /> [tex]a*b= a_1b_1+ a_2b_2+ a_3b_3[/tex] so [tex]c(a*b)= (a_1b_1+ a_2b_2+ a_3b_3)c_1i+ (a_1b_1+ a_2b_2+ a_3b_3)c_2j+ (a_1b_1+ a_2b_2+ a_3b_3)c_3k[/tex]<br /> [tex]b(a*c)- c(a*b)= {(a_1c_1+ a_2c_2+ a_3c_3)b_1- (a*b= a_1b_1+ a_2b_2+ a_3b_3)c_1}i+ {(a_1c_1+ a_2c_2+ a_3c_3)b_2-(a_1b_1+ a_2b_2+ a_3b_3)c_2}j+ { (a_1c_1+ a_2c_2+ a_3c_3)b_3-(a_1b_1+ a_2b_2+ a_3b_3)c_3}k[/tex]<br /> Multiply that out and see if it is the same as you got for aX(bXC)<br /> <blockquote data-attributes="" data-quote="" data-source="" class="bbCodeBlock bbCodeBlock--expandable bbCodeBlock--quote js-expandWatch"> <div class="bbCodeBlock-content"> <div class="bbCodeBlock-expandContent js-expandContent "> i wrote aX(bXc) in terms of the component form, etc.<br /> 3. prove the length curve and curvature formulas. </div> </div> </blockquote> How you would do that depends on what theorems you have to work with.<br /> <blockquote data-attributes="" data-quote="" data-source="" class="bbCodeBlock bbCodeBlock--expandable bbCodeBlock--quote js-expandWatch"> <div class="bbCodeBlock-content"> <div class="bbCodeBlock-expandContent js-expandContent "> 5. prove aX(bXc) = (aXb)Xc + bX(aXc)<br /> PLEASE HELP! </div> </div> </blockquote> Write out the components![/tex]
 
Last edited by a moderator:
much thanks, possibly the most helpful homework post ever.

thanks!
 
wait wait, one question:

prove the length of the path is equal to : int over a to b of sqrt(1+f'(x)) dx

using the fact that the integral of the magnitude of the velocity over the interval a to b is also equal to the length of the path
 
JasonJo said:
wait wait, one question:
prove the length of the path is equal to : int over a to b of sqrt(1+f'(x)) dx
using the fact that the integral of the magnitude of the velocity over the interval a to b is also equal to the length of the path

hint: position(x)=<x,f(x)> and velocity(x)=[tex]\frac{d}{dx}[/tex]position(x).
 
You could also use two points (xn+1,yn+1) and (xn,yn) and use the Pythagorean Theorem to find the distance between them. Now sum those distances and let them get very small (in other words, write it as an integral). The last thing to do is use the Mean-Value Theorem to replace your [itex]{y_n}^{2}[/itex] with [itex]\left(f'(x)\Delta x\right)^2[/itex].
 

Similar threads

Replies
2
Views
1K
Replies
6
Views
9K
Replies
3
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 42 ·
2
Replies
42
Views
12K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 102 ·
4
Replies
102
Views
12K
  • · Replies 56 ·
2
Replies
56
Views
12K
  • · Replies 86 ·
3
Replies
86
Views
14K
  • · Replies 100 ·
4
Replies
100
Views
13K