Christopher2222

5785 Reputation

24 Badges

16 years, 354 days

MaplePrimes Activity


These are questions asked by Christopher2222

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 seem to recall some code that converted 2d math into an easier readable format in modified 1d ascii text?  Can anyone direct me to such a post I can't find it nor can I recall how it was done?

I am not referring to lprint.

For example g^2/5*a should be shown as

     2
  g
-------
 5 * a


It's a pain to have to type it out by hand.

is(sum( (1+i)(k-1), k = 1 .. 8) = sum( (1+i)(k-1), k = 8 .. 1))
                                                       false

Is that a bug in sum that got fixed in a newer Maple or maybe I missed something?...

Something simple enough, I want show (g^n) / (g^n -1) = 1 / 1 - g^(-n) step by step in maple. 

The problem I'm having is getting maple to freeze the terms.  Maple likes to simplify before I can have it do what I want.  I suppose I could make everything a name and show it manually but I would like to force maple to do it. 

first setting

h:=g^n/(g^n-1)

so first multiply the numerator and denominator by g^(-n)

How can I replace/substitute a combination of variables with a new variable?

For example, if ...

h:=(1+i)^2+(1+i)^3*A+(1+i)^4*B

I want to assign the value g:=1+i

so that h returns g^2+g^3*A+g^4*B

Do I have to change the 1+i to a name? or can it be done as it is?

First 52 53 54 55 56 57 58 Last Page 54 of 94