Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

I want to solve numerically the nonlinear problem 

a*(diff(y(x), x, x))+2*(diff(y(x), x))+exp(y(x)) = 0, y(0) = 0, y(1) = 0

by defining my own method defined as 

yn+1=yn+2*h*(-2*yn+2*ln(2/(1+x))-(1/2)*a)^2/(a*(-4*yn+4*ln(2/(1+x))-a-h*(4*yn-4*ln(2/(1+x))+a+x+1)/a))

where h is the step-size. Please help me by letting me know how can I do this using Maple 11.

 

Hi evryone.

Does anyone have experience on what is the best format to export an entire worksheet (code and graphics) out of Maple. I tried all different formats but none comes even close to being publication quality.

thanks a lot

Hi all,

I have an array [1..2503] y-axis for different values,  x-axis [0..180], 

when I plot these two arrays its not possible.   but if I change x-axis [1..2503] then plot is ok... I want to plot x-axis [0..180] and y-axis [1..2503]

 

Regards

A.Q   Soton

Find the value of the integral I=∫√(tanx)dx

Hi,

I am really stuck in one more bit thats the least square problem.  leastsquare1.mw 

Hope someone can help me to solve this bit and get me out of this problem :(.

Least square method is successfuly implemented in MATLAB code (WRITTEN IN THIS MESSAGE AT THE END), but I couldn't do it in Maple.  I am having problem in the for loop section,  I am attaching Matlab code and  maple code ...

Hi everyone,

I guess the question I am asking is quite common, however I am still not able to figure it out. I have several (right now three) non-linear inequalities. Given these inequalities, I try to plot them in one graph and then color the different areas with different colors. It would be also ok, if just the area where all inequalities hold is plotted. To do this I have already tried several things. With implicitplot and transparency it is generally working, but...

So basically I'm trying to slice a tesseract, with a 3D surface but first want to be able to slice a cube, with a 2D plane. so I have a 3D plot of a polygon of a face (of a cube) and I want to find the intersection of that with a plane. intersectplot doesn't seem to be working for me, and I'm unsure of how to represent a finite face of a cube as a plane

 

Hi everyone,

I tried to solve the following system of equations with Maple 15:

 
You can copy paste the commands below to get the equations
pde1 := [diff(`#msub(mi("n"),mo("&uminus0;"))`(x, t), t) =
diff(`#msub(mi("n"),mo("&uminus0;"))`(x, t), x)+n[o](x, t)-`#msub(mi("n"),mo("&uminus0;"))`(x, t)]

 

pde2 := [diff(n[o](x, t), t) = 0.3139e-2*(diff(n[o](x, t), x, x))-2*n[o](x, t)+`#msub(mi("n"...

I am really struggeling with these 2 questions.. 
need to plot this in maple

Fourier: 


This is my last 2 questions on my school report that i need to deliver tomorrow


Can someone tell me how Maple coding written in worksheet mode can be fully transferred into a Word document taking all maple's commands, alignments and any section's arrows as they apper in worksheet mode? 

I found that after using "Export as" (tried everthing there), my worksheet appers to be abrupt, alignment of certain codings changed and all the arrows of sections removed.

Please tell me how to deal with this issue, I need to transfer my maple coding...

Problem. In the plane 2*x -3*y +3*z -17 = 0, find a point M such that the sum of its distances from the poits A(3, -4, 7) and B(-5, -14, 17) will have the least value.

First way.

restart:with(geom3d):

point(A,3,-4,7):

point(B,-5,-14,17):

plane(P,2*x - 3*y +3*z -17=0,[x,y,z]):

reflection(Q,A,P):

line(BQ,[B,Q]):

When using Maple 15, sometimes the pagackages and formulas that were previously defined seem to completely drop it.  I'll load packages and assign variables at the beginning of my project, yet after maybe 10 minutes or so, I have to redefine my variables and reload my pacakges.  I have noticed that it happens more often if I try to switch over to the "Text" tab and then back to "Math."  It's very intermittent, Maple will be working just fine churning out graphs,...

Hi,

I am trying to implement some numerical algorithm for an optimal control problem (still).

It involves double cycle. In the inner one two DE systems are solved sequentially and the result is used to update values of some objective function.

This part uses remeber option thanks to pagan  and is ok.

However, in the outer cycle I use the values of this objective function to obtain solution for yet another DE and update ICs for the inner cycle.

Hi,

   The error showed up whenever I tried to do the Maximum Likelihood Estimation with Global Optimization Toolbox.My objective (likelihood ) function f is defined as follows(A1 to A5 are intermediate variables; parameters  are x[1] to x[12]):

   f := 0;

   for j from 1 by 1 to 21 do

       A1 := exp(x[1]+x[2]*c[j]);

       A2 := exp(x[3]+x[4]*c[j]);

Problem. Let MNPQ be a square.  Find the other two vertices,  knowing that,  the vertices M(5; 3; -1), P(2; 3; -4) and N lies on the plane x + y - z  - 6 = 0.

This is my code

> restart:

with(LinearAlgebra):

M:=<5,3,-1>:

P:=<2,3,-4>:

N:=<x,y,z>:

A:=DotProduct(M-N,P-N,conjugate =false):

First 228 229 230 231 232 233 234 Last Page 230 of 2097