Unanswered Questions

This page lists MaplePrimes questions that have not yet received an answer

Well,

Basically I know that.

I just hoped there is some walkaround this problem.

It seems now there is not.

The problem I am trying to solve is how I can construct an iterative procedure where function is computed from numerical solution of the ODE system (done) and then this very function is used to recalculate the solution of this ODE system.

This is my attempt to impement some sort of  gradient projection method to the optimal...

Dear all,
Some time ago I asked a question on maple primes concerning handling the numeric solutions of dsolve procedure.

They sent me to the discussion on option remember and indeed this helped a lot.
However there is another issue.

The method I am trying to implement requires iterative calls to dsolve/numeric with one of the functions defined from the previous...

Let A(-5,-3,-3), B(0,1,-2) be two points and

(d): x = t - 3, y = 2*t, z = t+2.

Find the coordinates the point M on (d) so that the area of the triangle ABM obtain minimum value.

 

This is my code.

restart; with(LinearAlgebra):

A:=: B:=: M:=:

u:=A-B: v:=A-M:

T:=CrossProduct(u,v):

S:=minimize(1/2*Norm(T,2), location = 'true');

M:=subs(op(1,op(1, S[2])),M);

 

Let A(-2, -1, 3), B(0, 1, 4) be two point and

(d): x = -t-2, y = t+1, z = -t-1 be a line.

Find coordinates point M lies on (d) so that area of the triangle ABM equal to 3*sqrt(5).

This is my code

restart; with(LinearAlgebra):

A:=: B:=: M:=:

u:=A-B: v:=A-M:

T:=CrossProduct(u,v):

sol:=solve(1/2*Norm(T,2)=3*sqrt(5),{t});

for i from 1 to 2 do print('M'[i]=(subs(op(sol[i]), M[1]), subs(op(sol[i]), M[2]),subs(op(sol[i]), M[3]))) end do;

Hello,

 

I have created a MapleSim model including a few custom components. When I try to run the simulation, I receive the following error:

cannot resolve function `Main.'Typesetting:-mambiguous'`; there is no function `'Typesetting:-mambiguous'` visible in model `Main`

 

How do I know where the source of the error is?

 

Thank you,

Behzad

Problem. Write the equation of the plane passing the point H(1,1,1) and cut the coordinates axes Ox, Oy, Oz at A, B, C respectively so that H is centre of the circumscribed of the trianlge ABC.

This is my code.

restart:

with(geom3d):

with(LinearAlgebra):

A:=:

B:=:

C:=:

H:=:

f:=(x,y,z)->x/a + y/b +z/c-1:

solve([f(H[1],H[2],H[3]) = 0, Norm(H - A, 2) = Norm(H - B, 2), Norm(H - A, 2) = Norm(H - C, 2)],{a,b,c}): assign(%):

Problem. Write the equation of the plane passing the point H(2, 1, 1) and cuts the coordinates Ox, oy, oz at A, B, C respectively so that H is orthocenter of the triangle.

This is my code.

restart:

with(geom3d):

with(LinearAlgebra):

A:= <a,0,0>:

B:=<0,b,0>:

C:=<0,0,c>:

H:=<2,1,1>:

f:=(x,y,z)->x/a + y/b +z/c-1:

eq:=solve([f(H[1],H[2],H[3]) = 0,DotProduct(B-C, A-H, conjugate = false...

Simply using display(array) we can create larger zoomed sized plots that I think some people would like but only for 2d but what about 3d plots ? - read on. 

Now this expands only the width of the plot and works for all 2d plots.
a:=plot(sin(x)):
display(array([a]))  # displays plot at screen width size

What I think most people want is an easy way to adjust plot sizes from the default Maple install without having to load any special packages ...

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...

Am i undestand right that all GUI-changed properties of plot are not accessable via command-line because with already pictured plot there are no binded variables and no method to bind? For example after manual streching and moving i need to work in interest area of graph i.e. includding new textplots there and so on. See only way to work with via DocumentTools component and it events to get e.g. xrange  and yrange. Is there better way?

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:=: B:=: C:=:
M:=: o:=:
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); # put T by my hand
plane(P,2*x - y +z + 1 = 0,[x,y,z]):

Hi!

how I import maple code in matalb for matlab simulink?

 

Hi,  I have and integral its results contains Beta function and hypergeometric function.
I found a difficulty to program the hypergeometric function with Maple 13. is any one can solve this problem
where

 

∫₀^{(π/2)}((sin^{α}xcos^{β}x)/(√(1-k²sin²x)))dx=(1/2)B(((α+1)/2),((β+1)/2))F(((α+1)/2),(1/2);((α+β+2)/2);k²),α>-1,β>-1,∣k∣<1

The problem in written...

Problem. Let (P): 2x -y +2z + 9 = 0 be a plane and two points A(3,-1,2), B(1,-5,0). Find coordinates of the point M lies on (P) such that scalar product of two vectors MA and MB obtain  the minimum value. 

First 312 313 314 315 316 317 318 Last Page 314 of 361