Ask Your Question
0

Pb with an integer random draw

asked 4 years ago

Cyrille gravatar image

The following code do nearly what I expect : defining random numbers whose sum equal a given number. Unfortunately, if i change RR for ZZ it return an error --- and of course I need integers.

elec=100
candidats= 4 
nn=list([i for i in range(candidats-1)])
PP=([0 for i in nn])
PP[0]=RR.random_element(0,elec)
for k in nn:
    PP[k]=RR.random_element(0,elec-sum(PP[j]for j in nn[:k]))
show(PP)
show(sum(PP))

I do not understand my error since it was working at the beginning. Also the sum was nearly always equal to elec with some time a unit of difference. Also is there a command to shuffle the number inside the list.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 4 years ago

Cyrille gravatar image

I was persuaded that ZZ was defined by default as RR. In fact I must add ZZ = IntegerRing() and replace RR by ZZ.

Preview: (hide)
link

Comments

ZZ is defined by default:

sage: ZZ
Integer Ring

Maybe you overwrrote it ?

tmonteil gravatar imagetmonteil ( 4 years ago )

Certainly since at the begining my code was working. tmonteil thanks to always answer my studip questions.

Cyrille gravatar imageCyrille ( 4 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 4 years ago

Seen: 282 times

Last updated: Jun 01 '20