symbolic expression
how to write symbolic expression over finite field
add a comment
how to write symbolic expression over finite field
You can not define, say a cosinus over a finite field, but you can define polynomials as follows:
sage: K = GF(7)
sage: K
Finite Field of size 7
sage: R.<x,y> = K[]
sage: R
Multivariate Polynomial Ring in x, y over Finite Field of size 7
sage: P = 1+x^2+x*y^3
sage: P
x*y^3 + x^2 + 1
sage: P.parent()
Multivariate Polynomial Ring in x, y over Finite Field of size 7
sage: P(2,3)
3
sage: P(2,10)
3
sage: P(2,10).parent()
Finite Field of size 7
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2019-12-31 04:01:00 +0100
Seen: 564 times
Last updated: Dec 31 '19