Christopher2222

5785 Reputation

24 Badges

16 years, 348 days

MaplePrimes Activity


These are answers submitted by Christopher2222

As a start, you mean something like this? 

restart``

with(stats):``

with(stats[statplots]):

a := [30, 30.5, 31, 31.5, 32, 32.5, 32.6, 33, 33.1, 33.3, 33.6, 34, 35, 36]:

h := histogram(a):

with(Statistics):

m := Statistics:-Mean(a):

s := Statistics:-StandardDeviation(a):

P := DensityPlot(RandomVariable(Normal(m, s))):

with(plots):

display(h, P)

 

``


 

Download distribution_graph.mw

Why did you change the date anyways?  Since Maple checks the date of your system it's flagged because your install date is ahead of the real date.

Try changing your date to a time ahead of the maple install files.

Based on the information you gave it sounds like it's more of a dropbox issue than a Maple issue.  Dropbox is a file hosting service, so it probably just picks the first file you saved to dropbox rather than the latest version file with the same name. 

I would suggest each time you save a file to dropbox, just give it a different name.

 

It appears the list in the help menu search results are limited to 200 elements.

I think the limit should be removed altogether.

 

I can't see your equations but look at the help page on geom3d.

Use a semilcolon with equals to assign values.

A:=(1,2,3)

 

perhaps this is what you would like


with(Statistics):

X := RandomVariable(Normal(0, 1))

_R

(1)

Y := RandomVariable(Normal(0, 2))

_R0

(2)

a := Statistics:-Sample(X, 10):

b := Statistics:-Sample(Y, 10):

``

NULL

while Correlation(a, b) < .8 do a := Sample(X, 10); b := Sample(Y, 10) end do; Correlation(a, b); c := a+b; combinat:-randcomb(convert(c, list), 1)

[HFloat(-0.4490512927180816)]

(3)

````


Download correlated_sample.mw

An alternate way although slightly unconventional, but we end up with the proper sequence

seq(op([1/j, -1/(2*j)^2]), j = 1 .. 10, 2)

      1, -1/4, 1/3, -1/36, 1/5, -1/100, 1/7, -1/196, 1/9, -1/324

 

 

 

What about just nops?

nops(x+2y)

                                2

 

There may be some discrepancies

a:=2*b+5*x*z-3*z+4-sqrt(8)

                         

nops(a)
                      5

nops(evalf(a))
                         4

 

If you wanted to force a new line on your own before getting to the end of the screen shift+enter would also continue the command.

Use www.mapleprimes.com/recent

This is the best way to view just the titles.

**edit added** ah yes, nevermind, I see you found it by clicking on the Recent button which I've never noticed.  I generally just type in the location above in the address bar and go directly to the list.  I rarely ever use the mapleprimes home page if ever. 

[seq(add(a[ .. i]), i = 1 .. nops(a))]
                         [ 1, 3, 6, 10]

Maple 2016.1a is now available at the Maplesoft website that fixes this issue.

 

Ok finally I managed to reproduce what you might be experiencing.

The issue has to do with using the greek letter Pi and then using the wordPi.

plot(cos(x),x=0..Pi)

going back deleting Pi and replacing it with ∏ or 2*∏ then again going back deleting and replacing it with Pi.

That's what I've been able to find. 

 

 

 

 

First 9 10 11 12 13 14 15 Last Page 11 of 47