Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

Hi every one,

I am trying to find a way to plot a dependent variable against a parameter. 

The data I want to use for this ploting should be from the numerical results

obtained by using shooting method.

 

restart:ShootLib := "C:/MP/Shoot9/":
> libname := ShootLib, libname:
> with( Shoot ):
> with(plots):with(LinearAlgebra):
> A:=0:
> FNS:={ f(z), G(z), H(z)}:
> ODE:={diff(f(z),z) = G(z),

pick_pos.mw

Hey maple gurus

when i solve and equation with two real roots (1 positive and 1 negative roots), how do i automatically pick out the postive solution?

As you can see from the attached file, i used sort command to order it, and it works for examples1 and 2, but not for 3.

i guess i could use Abs cmd.....

I want to find the first term and the common difference of the arithmetic progression (un) with the following condintions u7 + u15 = 60 and (u4)^2 + (u12)^2 = 1170, but i can not the code. Please help me. Thank you.



given differntial equations with boundary conditions.

f'''(x)+f(x)f''(x)+1-[f'(x)]^2+A*{1-f'(x)-(x/2)*f''(x)}=0,
g''(x)+P*[f(x)*g'(x)-f'(x)*g(x)-A*{g(x)+(x/2)*g'(x)}]=0,

bc's

f(0)=k,  f'(0)=m, g(0)=1, 
f'(infinity)=1, g(infinity)=0

Dual solution exist in the given problem with shoot command i think. how we ll calculate them?

NOTE:

It is the first time  I post a Maple bug in MaplePrimes because I use to submit an SCR.
There is a serious reason to do so. Let us look at the output of
> with(plots):
> implicitplot(sqrt(x^2+y^2)-sqrt((x-4)^2+(y-3)^2) = 5, x = -20 .. 20, y = -20 .. 20,
numpoints = 10^6, thickness = 5, scaling = constrained);
(both in Maple 13 and in Maple 16)



I can not get any subscription in the forum for any topic. Activating the subscription link directs me to the page:

http://www.mapleprimes.com/controls/#


Without the subscription validity.

The goal is to find generating function of Hermit

Before i try, i try the gFun's paper's example, got error

with(gfun):
eq := {z^2*diff(y(z),z)+y(z)=z, (D(y))(0)=1};
eq2:=borel(eq,y(z),Y,'diffeq');
Error, (in gfun:-borel) invalid argument, Y

When try Hermit,

with(gfun):
eq := {t*diff(y(z),z$2)-z*diff(y(z),z)+y(z)=0,y(0)=1,y(-z)=y(z)};
dsolve(eq);

but have unknown constant coefficient, do not know whether missing initial condition

I was using "eliminate" to combine a set of equations removing some variables and getting a clearly wrong result. So I looked at the docs and the first example, and I find I don't understand its result either. Here is the example:

sol:=eliminate( {x^2+y^2-1=0, x^3-y^2*x+x*y-3=0}, x); # eliminate x from this set & leave one eqn of y

This returns:

Hi

I am trying to fit some data to a model.

The model is given by this equation.
y=a*(1-exp(b*x^c))

When I enter the command

Statistics[Fit](a*(1-exp(b*x^c)),X,Y,x);
this error message appears:
Error, (in Statistics:-Fit) SVD of estimated Jacobian could not be computed
 

 Does anyone know, why it appears? and why Maple cannot compute the SVD of the estimated Jabobian Matrix? 

Please help me with the next problem in Maple. When I try to find roots using solve command but
it throws the next message:
Warning, solutions may have been lost...
 
The procedure is performed as follows:
fx := (-(1/2)*(sqrt((x-x1)^2+(y-y1)^2)-m1)^2*(2*x-2*x1))*(1/(s1*sqrt((x-x1)^2+
(y-y1)^2)))+(-(1/2)*(sqrt((x-x2)^2+(y-y2)^2)-m2)^2*(2*x-2*x2))*
(1/(s2*sqrt((x-x2)^2+(y-y2)^2)))+(-(1/2)*(sqrt((x-x3)^2+(y-y3)^2)-m3)^2*...

Hi,

I have a table T where the indicies are pairs (a,b) of integers with 0<a,b<50. Is it possible to make a 3D plot with a point (a,b,T(a,b)) for each (a,b) in the domain of T?

1 Introduction

Three tanks are connected with two pipes. Each tank is initially filled to a different level. A valve in each pipe opens, and the liquid levels gradually reach equilibrium. Here, we model the system in MapleSim (including the influence of flow inertia), and also derive and solve the analytical equations in Maple.

How can I archive color coding? The two plots are colored the same, but I want them to be colored according to one common color scale, which means that each z value is assigned to a unique color for the 2 function plot.

f1 := proc (x, y) options operator, arrow; sin((1/2)*y+(1/2)*x) end proc;f2 := f1+2;
p1:=plot3d(f1, 0..10, 0..20, style=patch, color=proc(x,y) x*y end proc);p2:=plot3d(f2, 0..10, 0..20, style=patch, color=proc(x,y) x*y end proc);
plots[display](p1,p2);

Hi

I have .dat files that I want to use in integrating some function, say

f(x)=int(1/a(x),x),

where I have the numerical values of a(x) as "avalues.dat" file.

I am wondering if there is a command that does the integration numerically...

And also for  differentiating numerically: g(x)=diff(a(x),x)

Thanks in advance.

hello every one!

i have a pde problem( heat problem) i wanna plot it with maple and i know how can i solve it with maple but i wanna plot it and solve it with my boundry condition and initial condition then plot it

here my problem:

> with(PDEtools);
> PDE := diff(F(r, t), t)-.102*10^(-6)*(Diff(r*(diff(F(r, t), r)), r))/r = 0

First 1552 1553 1554 1555 1556 1557 1558 Last Page 1554 of 2224