Maple T.A. Questions and Posts Maple T.A. Questions and Posts Feed

These are Posts and Questions associated with the product, Maple T.A.

Let (d1): x = 2*t +1, y = t-2, z =-2*t+2 and 

(d2): x = 2-m, y = 3+m,z = 4+m 

be two lines and (P): x - y + z - 6 = 0 be a plane. Write the equation of the line (Delta), knowing that (Delta) parallel to (P) and cuts (d1), (d2) at the points M and N, respectively so that MN = 3*sqrt(6).

Equation of a line (6)

February 05 2012 by toandhsp 25 Maple Maple T.A.

Let A(1, -1, 3) is a point; (P): x + y + 5z = 0 be a plane; (l): x= 2t, y = -5t, z = 6t be a line. Write the equation of a line Delta parallel to the plane (P) and has a distance to (l) equal to 1.

I was thinking about this problem many times but i can not 

I've made exam questions for students that they have to answer by doing some calculations in Maple.

I would like to let them copy the commands they used to a Maple TA text field.

However, the standard worksheet in our computer lab uses 2-D math. Copying this 2-D math to Maple TA works fine with "paste as plain text", but copying 1-D math also works with ctrl-v in Maple TA, which is more convenient for students under stress.

Since I am not allowed change...

Equation of a line (5)

January 29 2012 by toandhsp 25 Maple Maple T.A.

My problem: Write the equation of the line (Delta) passing the point A(-2;3;4), perpendicular to the line

(l): x = -t + 1, y = 2t, z = 3t + 1

and have a distance from the point B(1;2;-4) obtain

a) maximum;

b) minimum.

Can you write for me a code? Thank you.

Problem. Let A(-1,3,-2), B(-3,7,-18), C(2,-1,-3) be three points and (P):
2*x - y +z  + 1 = 0 be a plane. Find the coordinates of the point M lies on the plane (P) so that MA^2 + 2MB^2 + 3MC^2 obtain the minimum value.
This is my code.
restart: with(geom3d):
A:=<-1,3,2>: B:=<-3, 7, -18>: C:=<2,-1,-3>:
M:=<x,y,z>: o:=<0,0,0>:
eq:=solve([seq(o[i] = (A-M + 2*(B-M) + 3*(C-M))[i], i=1..3)]);
point(T, -1/6, 7/3, -43/6...

Equation of a line (3)

January 25 2012 by toandhsp 25 Maple Maple T.A.

Problem. Write the equation of the line Delta which parallel to the planes 

(P): 3x +12y -3z -5 = 0, (Q): 3x -4y +9z + 7 = 0

and cuts two the lines

(d1): x = 2t -5, y = -4t + 3, z = 3t -1

(d2): x = -2m + 3,  y = 3m  - 1, z = 4m + 2.

This is my idea.

1) Put A(2t -5, -4t + 3, 3t -1) and B(-2m + 3, 3m  - 1, 4m + 2).

2) Find coordinates of vector AB.

3) Because Delta parallel to the planes (P...

New versions of Maple T.A. and the Maple T.A. MAA Placement Test Suite are now available. Highlights include:

- Adaptive questions provide students another chance when they give an incorrect response. Knowing the student is having trouble, the question can be adapted to walk the student through the problem one step at a time, allow students to try a simpler version of the same question before retrying the original, or whatever the instructor feels is appropriate. 

Consider a "toy system" of floating-point arithmetic where each floating-point numberis of the form
x = (-1)s × (1 + m) × 2e-σ:


The mantissa is a binary number such that
m = 0:m1m2m3 (base 2) belongs to [0; 1)


and the exponent e is a binary integer such that
1 ≤ e = e3e2e1e0 (base 2) ≤ 14:


Each m

Hi!

 

Can anyone help me to write code that validates an answer to a equation of the sort a*x^2=cx.

There will be two solutions to the given equation and I don't know how to write it so it takes in and separates the two answers from the student and validates them.

 

Best

 

Mats

 

This should be astonishingly simple as a MapleGraded question but it stubbornly refuses to agree with me.  Everything is marked incorrect ... one wishes for some feedback from MapleTA as to what is going on.

Student enters a vector.  The goal is to have the dot product with <5,3,1> to be whatever value is chosen for $p, which is in the $ANSWER field:

 

$m:=<5,3,1>;
$d:=LinearAlgebra:-DotProduct($m,$RESPONSE);
is(($d-$p)=0);

We have MapleTA installed on our own server and would like to edit the Login page so that students realize they are on OUR MapleTA page ... students are not particularly observant (no, really!) and often try to login at any MapleTA site they find on the internet.  There is nothing in the UserGuide on editing either the Login or Class pages.

Thanks!

Russian content for Maple T.A.
http://webmath.exponenta.ru/bsd/mapler_test.html

Tests are learning, not just inspectors.

Hello.

After using many versions of TA over many years on our own servers, we are considering paying for Maplesoft to host TA. Can anyone offer any experience of using TA hosted on Maplesoft servers? We can think of many good reasons to change but are there any downsides? Is remoteness a problem, speed of access? We have a fairly typical university central computing service dept.

I understand that the way the hosting system works is that more than one server...

So i need to plot 4*x-x*y^2 = 5 and (1/3)*x^3+y^2 = 1 between x = -10 .. 10, y = -10 .. 10.

I tried:

> f := 4*x-x*y^2 = 5;

> g := (1/3)*x^3+y^2 = 1;

   > plot({f, g}, x = -10 .. 10, y = -10 .. 10)

What did i do wrong?

 

Thanks

Ive tried this for hours and can't get it to work. Any help would be greatly appreciated. I need to 

find a 10 significant figure approximation to the 10th derivative of

evaluated at x = -2.

Ive tried using this maple command:

evalf(subs(x=-2,diff((sin((x^2...

1 2 3 4 5 6 7 Last Page 1 of 13