MaplePrimes Questions

I want to plot a graph of different values of k=0.1,k=0.5, k=-0.1, the display should be like this

my codes are 

restart:

V := exp(-x)*y^3/eta^3:

eta:=1+k*x+sin(2*Pi*x):

x:=0.1:

k:=0.1:

p2:=plot(V, y = 0 ..eta):

tf:=plottools:-transform((x,y)->[y,x]):

tf(p2):

plots:-display(tf(p2),labels=["v","y"]);

I wanna solve a collection of linear systems Ax=b_i, i=1..n, with A an upper triangle matrix, parallelly with Maple. Is there anyone can give me some suggestions? Thanks lot.

Error, invalid input: PolynomialIdeals:-Quotient expects its 1st argument, J, to be of type Or(PolynomialIdeals:-PolynomialIdeal, radalgfun, list(radalgfun), set(radalgfun)), but received Vector(3, {(1) = 0, (2) = y^2-x-y, (3) = 0})

 

restart;

with(Groebner):

 

IsNullZero := proc(tau)

if assigned(tau) then

        return tau

else

        return 0

would like to draw the pdf, however after tried two methods, still can not draw it,

how to draw?

 

l := [binomial(349,20), binomial(349,8),binomial(349,22),binomial(349,38),binomial(349,49),binomial(349,36),

binomial(349,59),binomial(349,41),binomial(349,32),binomial(349,21),binomial(349,23)];

sl := gfun[listtoseries](l, x, egf);

g := convert(sl, ratpoly);

g := g - subs(x=0, g); 

How do I use the letter I as a variable, not an imaginary number (the square root of -1) ?

i invent a method to make use of gfun 

 

as i know series are the number of ways 

however, after i input the number of balls in each box

calculate into binomial and input into gfun, and plot the graph, the problem is value too big 

cannot plot 

however, if using the count directly as input, the graph can be ploted, however, this is not

the logic of my understanding

if input series are not binomial, what are they?

would like to normalize it, how to find x such as 5.6 in this example

 

l := [20,8,22,38,49,36,59,41,32,21,23];

sl := gfun[listtoseries](l, x, egf);

g := convert(sl, ratpoly); 

g := g - subs(x=0, g);

g := g/subs(x=5.6, g); 

i am very bad at English so you ignore my mistake

i am beginning start use Maple therefore i don't know use Maple.

Like title, i have a circuit CLR with transer function H=

One of those vexing things that should be easy:

I am reading in a data file using ImportMatrix. Since the file has one column with texual data I cannot use datatype=float since that bombs. I >can< ImportMatrix with datatype=string or anything.

I then extract columns using the appropriate command and want to do something numeric with them (only with those columns that have correct floating point numbers). That fails since my data are now not floats (even when using anything...

i have an ode,which its derivatives are with respect to time,i want to use the output as a function of time to use it in a loop ,what should i do ?!

A:=a*diff(x(t),t,t)+b*diff(x(t),t)+c*x(t);

B:=solve(A,diff(x(t),t,t));

at first how can i define B as a function of t here?
how can i define initial conditons for this ?
for example :
a0:=diff(x(t),t,t) at time 0 (x(0)), but i do not know how to define this?

i also can not use B in a loop of time,t

Hi,
How do I complete the integral below? I'm not sure what the resulting function looks like, but it will be a function of n where epsilon is a real constant. My ultimate goal is to graph the resulting function where epsilon is equal to -0.4.

Thank you.

 

Hi, 

in my programm I've got a maplet with 6 CheckBoxes, but I can't manage to get the true/false-values in a list to use them. I think I should define a list, I tried:

 

BoxRow(...

   GridLayout([

      [CheckBox['CB1](), "Box1"],

      ....for all 6 boxes...

])),

lstW:=['CB1','CB2',...for all 6 boxes];

 

But all I get is: Error, `:=`unexpected. 

Hello!

I have encountered a bizarre problem while trying to collect data from SQL table. Command

c:-ExecuteQuery(" SELECT QUERY HERE", 'output' = 'Array')

takes quite long time to execute. The data that I am trying to collect is not a big array (like 100x100). I have these felling that Maple cannot collect whole table at once. Command:

c:-ExecuteQuery("SELECT QUERY HERE", 'output' = 'result')

is immediate so it is not a problem of slow...

I have to vary two variables A & B. For a fixed A, if I vary B such that l1 and l2 is positive, then I need the min value of B for which ((l1>0) and (l2>0)) 

. In such a way I need the list of A & B.

restart; printlevel := 0 

for A  from .1 by .01 to 3 do  
 for B  from .1 by .01 to 3 do
l1:=(exp(B)-A)-1
l2:=(exp(B)-A/2)-1.5

end do

if ((l1>0) and (l2>0)) then print(A,min(B)) end if
First 1571 1572 1573 1574 1575 1576 1577 Last Page 1573 of 2427