MaplePrimes Questions

I want to plot a graph of the following sequence

x[n]=p*x[n-1]+q*x[n-2] where x[0]=0 and x[1]=1. Also p & q are independ random variables with values +1 or -1.

This is what i've done so far

restart:
> with(Statistics):
> x[0]:=0: x[1]:= 1:
> for n from 2 to 10 do
> S:=Sample(Bernoulli(0.5),2):
> p:=S[1]: q:=S[2]:
> x[n]:=p*x[k-1]+q*x[k-2]: od;
 

But the output is not tallying up the x[n]'s. Also i just realised my code selects +1 or 0 for p & q......

Hi everyone!

Say I have a simple expression in command line Maple that would become a float as soon as it is executed, e.g., 2^(.5). Is there any way I can keep this in symbolic representation by somehow suppressing the seemingly-automatic conversion to a full float? What I'm really looking for is something that would allow me to do this:

input: u := 2^(.5): convert(u,rational);

output: 2^(1/2)

Thanks for your time!

Is there any way to show the page limits in my document!?!? simple question

I would really need it!!!

 

Thanks a lot!

Can somebody please help me with this. I cannot figure out how to make this work? I keep getting the following error: Error, (in treach) cannot determine if this expression is true or false: 17

in maple 11, i have two problems with simplification of powers of "negative" variables.

 

problem i: A^(1/2) *A^2 <> A^(-3/2)*A^4

the two following expressions should be equal but differ by a minus sign:

 

f:=proc ()
local s;
s := time();
FileTools[Text][WriteString]('default', "a");
FileTools[Flush]('default');
while time() < s+20 do  end do
end proc;
f();

 

In the codes above, I intended that the string "a" is outputed immediately after the function FileTools[Text][WriteString] is called.  But in execution, the output does not appear until 20 seconds elapse.

How can I force the output appear immediately?

hi im a new user to maple 12 and i am having some trouble evaluating limits.

The forum is on "How do I ...", and my question is

"How do I get MapleTA to be reliable in marking symbolic answers?"

 

It is OK at marking wrong answers wrong. The difficulty I'm having is that too many equivalent correct answers are also marked wrong.

The class sizes are around 500 students, and it is very tedious checking their grumbles about mismarking.

 

Examples:

 -------------

I had an instance, using MapleSoft's IntroToCalcUnit1 questions, where

Hi i'm working on a simulation and have got stuck. The simulation is for cyclists cycling on a circular track. There is a section of track which is treacherous and all cyclists who pass through this point must observe a certain maximum speed until they have cleared this area and can continue round the track as fast as they can although keeping a safe distance behind the cyclist in front. It is assumed for simplicity that cyclists cannot overtake each other. These are my workings so far: >bicycle := (pl,sl,len) -> (pl+sl) mod len: > >vel:= proc(pl,len,vmax) > local n;

For the set of functions
   compiletable - create lookup table
   tablelook - perform table lookup
   insertpattern - append to lookup table

I observe these behaviors:
1. The function tablelook( ) only seems to work when the table has been been intiailized with compiletable( ).
2. The function insertpattern( )  nevers seems to work.

Hi...

I'm trying to write the following lines in a more "decent" way, but I don'tknow how to

I don't know how to start or what should I use, can someone give me a tip????

Thanks a lot!!

So today I'm trying to play around with matrix norm until I've come across this "bug" (I assume)... with(LinearAlgebra): r:=Matrix([2*x,x^2,x^3/3]); dr:=Matrix(map(diff, r, x)); MatrixNorm(r,2); MatrixNorm(dr,2); My question is that why does Maple spit out "x" and "xbar" while obviously, it should all be "x". And what's the command to make it just in terms of "x"

Hi I have been given an example of a iteration exercise for my course however with very little accompaning rescources to solve it. I have tried numerous methods and most vary around my most recent attempt but still to no avail. None of my fellow students and myself combined still can't manage to solve this. I was wondering if you could give some insight as to what we need to do differently from what we are currently.

The question is as follows:

I am trying to plot a 3d curve using the "plot3d" command.  When I type in this command along with a function and x,y bountries (x=-5..5,y=-5..5) the x and y axis do not range from -5 to 5.  How do you fix this?  Also, is it possible for the z axis to be scaled?

Thanks

How do I fix this? i have to hand this assignment in by tuesday x_x. so far maple11 isn't giving me a decimal answer because it thinks e is also a variable. I was also having trouble trying to make composite functions but i found a little way around it so it isn't that much of a deal for me, however if you can point out my mistake to me and what i should have done instead, i will greatly appreciate it.

here's an image of my question+what i've done so far.

First 2206 2207 2208 2209 2210 2211 2212 Last Page 2208 of 2434