Ask Your Question

ZHANG's profile - activity

2020-02-24 07:36:37 +0200 received badge  Nice Question (source)
2018-06-10 20:38:51 +0200 received badge  Famous Question (source)
2018-06-10 20:38:51 +0200 received badge  Notable Question (source)
2018-06-10 20:38:51 +0200 received badge  Popular Question (source)
2017-12-10 19:26:39 +0200 received badge  Student (source)
2017-11-29 09:35:16 +0200 received badge  Famous Question (source)
2017-09-12 16:28:41 +0200 received badge  Notable Question (source)
2017-06-07 10:09:17 +0200 received badge  Popular Question (source)
2015-07-05 08:49:38 +0200 asked a question Can sage directly calculate the md5 or sha1

Like md5(message) or sha1(message),How to do in sage? Thank you.

2015-05-21 16:32:11 +0200 commented answer get the coefficients from the Polynomial

thank you! That's what i want

2015-05-21 07:39:40 +0200 asked a question get the coefficients from the Polynomial

Just like that

R.<x> = GF(2^4, 'a')[]

f=x^3+x+1

print f.coefficients()

it returns [1, 1, 1],but I want it to retun [1,0,1,1],that is i need all the coefficients of every term(x^3,x^2,x^1,x^0),what should i do? thanks