-
I wish someone can give me a hand on following application problems:
I couldn't build Quotient Ring like Quotient Group (2) Why Factors() doesn't work as expected on GaussianIntegers Ring ?
Based on Ring coefficients definition, Factors(x^2+1) should get: (3) Can I extract a Group structure from some existing Ring for its multiplication group?
How can I analyze some Ring's multiplication group independently? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi there! First, a meta remark: I took the liberty of editing your post a bit, it was very difficult to read due to your user of Regarding your first question: To get
Regarding your second question: the variable
Regarding the third point:
But of course we knew that: the unit group of a finite field is always a cyclic group. |
Beta Was this translation helpful? Give feedback.
Hi there!
First, a meta remark: I took the liberty of editing your post a bit, it was very difficult to read due to your user of
=====
as separators, which causes text to render in BIG BOLD LETTERS -- I've replaced those by triple backticks, which exist to render code, and the result looks better.Regarding your first question: To get
Z/nZ
, just writeIntegers mod n
. For primes, though, GAP will by default return the finite fieldGF(p)
:Regarding your second question: the variable
x
does not really store the coefficient domain. You need to pass the polynomial ring in which you want to factor to theFactors
function (…