mtango345

20 Reputation

3 Badges

5 years, 30 days

MaplePrimes Activity


These are questions asked by mtango345

I have an arc length parametrization problem. I got the right answer for the speed. The lines of code before the long dividing line I successfully got to work. The main problem I am having is with the code underneath that. It is producing weird answers and just returning the same words without computing any mathematical calculation.

 

with(VectorCalculus):

with(plots):

T:= 4:

r := t -> <t^2 + t, sin(t^2)*(t + 1), cos(t^2)*(t + 1)>;

speed := Norm(diff(r(t), t));

evalf(Int(speed, t = 0 .. T)); (I got 62.98633182 for this part)

----------------------------This is where I started running into problems with the arc length parametrization.

L := b -> int(speed, t = 0 .. b);

speed := t -> subs(c = t, Norm(diff(r(c), c)));

speed2 := t -> sqrt(factor(simplify(speed(t)^2)));

solve(s = L(t), s);

assume(b > 0 'real');

g := s -> solve(s = L(b), b, useassumptions = true);

newr := s -> r(g(s));

newr(s);

 

 

I have an arc length parametrization question. The problem says to find a function g(s) that you can use to calculate the arc length parametrization, then find a formula for the arc length parametrization. I have r(t)= <cos(2t), sin(3t), 4t>. How would I do this?

I have a question about animating 3d space curves (vector-valued functions). I have a curve that has a component x(t), component y(t), component z(t), and a time, t. The problem says to create an animation of a point moving around the curve. How do I do this?

Thank you.

I have a vector calculus question. I was given three points, p,q, and r, and I got Maple to calculate vectors pq and pr. I also got Maple to calculate the cross product vector, pq x pr. The problem says to draw the triangle formed by p,q, and r, as well as the cross product vector. I tried to use the polygonplot tool to plot the triangle formed by the three points, but I am confused as to how to get the cross product vector to appear on the plot with the triangle. What tool do I use to plot the triangle with the cross product vector on it, so I can have a picture of the cross product vector starting at p, showing that it is orthogonal to vector pq and pr?

Thank you.

Page 1 of 1