Multivariable Calculus Maple Help

Click For Summary

Homework Help Overview

The discussion revolves around using Maple software for a multivariable calculus assignment focused on vectors and their properties, including dot products, lengths, angles, and curvature of vector-valued functions.

Discussion Character

  • Exploratory, Conceptual clarification, Mathematical reasoning

Approaches and Questions Raised

  • The original poster attempts to define vectors and graph them in Maple, questioning the choice of vector v and seeking guidance on performing operations like dot products and graphing.
  • Some participants provide specific Maple commands for vector operations and graphing, while others express uncertainty about their ability to graph certain functions.
  • There is a mention of a second part of the assignment involving curvature, with questions about graphing and computing various properties of vector-valued functions.

Discussion Status

Participants are sharing Maple commands and discussing their effectiveness. There is an ongoing exploration of how to graph vectors and compute properties, with some guidance provided on specific commands. However, there is no explicit consensus on the best approach to take for all parts of the assignment.

Contextual Notes

Participants note that their experience with Maple varies, and some mention specific versions of the software, which may affect the commands used. There is also a reference to class lessons that may provide additional context for the assignment.

Mbruinsma
Messages
3
Reaction score
0
1. I am working on an assignment in maple for my Calc 3 class. It seems really simple, but I have no experience using Maple. Any help would be very much appreciated.

PART 1: 3D – VECTORS IN MAPLE
1. Let u= i + 2j. Define a vector v. Draw the two vectors in a Maple graph.
2. Use Maple to compute the dot product of u and v.
3. Use Maple to compute the length of both vectors without using a formula that involves the vector components.
4. Using 2 and 3, write a formula for computing the angle between u and v.
5. Use the formula to compute the angle in radians, and also in degrees.
6. Find a vector w that is perpendicular to v. Use Maple to prove that w and v are perpendicular.
7. Graph both vectors in Maple to visualize that the angle between them is a right angle.



I started by setting u:=([1,2]). I then made a vector v:=([2,1]) (Does it matter what vector I use? I just chose 2i+j) How can I graph this and how do I do the dot product?

Thanks for Any help you can give me!
 
Last edited:
Physics news on Phys.org
Mbruinsma said:
1. I am working on an assignment in maple for my Calc 3 class. It seems really simple, but I have no experience using Maple. Any help would be very much appreciated.

PART 1: 3D – VECTORS IN MAPLE
1. Let u= i + 2j. Define a vector v. Draw the two vectors in a Maple graph.
2. Use Maple to compute the dot product of u and v.
3. Use Maple to compute the length of both vectors without using a formula that involves the vector components.
4. Using 2 and 3, write a formula for computing the angle between u and v.
5. Use the formula to compute the angle in radians, and also in degrees.
6. Find a vector w that is perpendicular to v. Use Maple to prove that w and v are perpendicular.
7. Graph both vectors in Maple to visualize that the angle between them is a right angle.






I started by setting u:=([1,2]). I then made a vector v:=([2,1]) (Does it matter what vector I use? I just chose 2i+j) How can I graph this and how do I do the dot product?

Thanks for Any help you can give me!

Unfortunately for you, it depends on what version of Maple you are using. Here are some steps that work in Maple 13, which may or may not help you. You might have to refer to your class lessons

> with(VectorCalculus); BasisFormat(false);
> u := <1|2>;
v := `<3|5>;
> v.u;
> Norm(u, 2);
> PlotVector(u, scaling = constrained);
>
 
Thank you so much for your help LCKurtz. I am using Maple 13.
 
Last edited:
This is the next part. If anyone can give me any tips on getting started, I'd appreciate it.

Thanks!

PART 2: CURVATURE OF THE GRAPH OF A VECTOR VALUED FUNCTIONS
The curvature function of this space curve is constructed via the following formula:

1. Let r(t) = (cost, sint). Graph in maple r(t) for 0<t<2п.
2. Write in maple, in vector form r’(t) and r’’(t).
3. Using Maple to compute the cross product of r’(t) and r’’(t)
4. Using Maple to compute the length of the vector resulting from 2.
5. Using maple compute the length of r’(t) and the cube it.
6. Compute the funtion K(t). You should not find this result surprising, why?
7. Use the observation in 5. to decide what should the curvature of a circle with radius r is.
8. Repeat all the process from 1 to 7 to find the curvature function of a given ellipsis. Compare the curvature function of an ellipses with the curvature funtion of a circle.
9. Repeat all the process from 1 to 7 to find the curvature function of a 3D vector valued funtion. Be creative or choose any vector valued function given in the textbook.I can't seem to graph r(t). I don't know why.
 
Last edited:
For cross products, you will need 3D vectors:

> with(plots):
> r := <cos(t)|sin(t)|0>;
> spacecurve(r, t = 0 .. 2*Pi, axes = boxed, color = black);
 

Similar threads

  • · Replies 9 ·
Replies
9
Views
2K
Replies
9
Views
2K
Replies
2
Views
2K
Replies
10
Views
3K
  • · Replies 19 ·
Replies
19
Views
3K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
Replies
9
Views
2K
  • · Replies 11 ·
Replies
11
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K