LaTeX Struggling with LaTeX: Seeking Help With String Length & Mass

AI Thread Summary
The discussion revolves around using LaTeX to solve problems related to a parameterized curve defined by r(t)=(t,3t^2,6t^3) for 0 <= t <= 1. The user is seeking help to find the arc length of the string and its mass, given the mass per unit length function p(x,y,z) = xyz^2. To calculate the arc length, the integral of the magnitude of the derivative r'(t) from 0 to 1 is needed, which involves differentiating the components of r(t). Clarification is provided on integrating vectors and the correct interpretation of the arc length formula. The discussion highlights the challenges faced in applying these mathematical concepts using LaTeX.
mikeyrichster
Messages
9
Reaction score
0
Im afraid my use of LaTeX code, sucks. My apologies to anyone friendly enough to help!

The problem:

A string takes a path shown by the equation below:

r(t)=(t,3t^2,6t^3) Where the RHS is a verticle vector (didnt know how to code this!)

and 0 <= t <= 1

The mass per unit length of the wire at a point (x, y, z) is given by
p(x,y,z) = xyz^2

Im having trouble answering these last two questions..

c) Find the entire length of the string?
d) Find the mass of the string?

Thanks for your help!
 
Physics news on Phys.org
For c) you're being asked for the arc length. Do you know the expression that gives you arclength for a parameterized curve? It's not too bad to remember/derive: if you think of t as time, then the distance (not displacement) that the particle goes at time dt is the speed at the time, which is |r'(t)|, times dt. Therefore the total distance will be the integral from t = 0 to 1 of |r'(t)|dt.
 
Hi there, thanks for your help!

Is the expression you refer to the arc length formula?

you said "therefore the total distance will be the integral from t = 0 to 1 of |r'(t)|dt."
does that mean the integral from 0 to 1 of the absolutle vaule of r(t) differentiated?

How do you integrate vectors like this?

Thanks
 
By |r'(t)| I meant the norm (magnitude) of the vector r'(t). So if r(t) = (x(t), y(t), z(t)) then r'(t) = (x'(t), y'(t), z'(t)) so that |r'(t)| = sqrt(x'(t)^2 + y'(t)^2 + z'(t)^2).
 
Back
Top