Questions tagged [magma-cas]

Magma is a computer algebra system distributed by the University of Sydney, and designed for solving problems in algebra, number theory, geometry and combinatorics.

Magma is a computer algebra system distributed by the Computational Algebra Group at the University of Sydney. It is designed for solving problems in algebra, number theory, geometry and combinatorics. It is named after the algebraic structure magma.

187 questions
0
votes
1 answer

How do i substitute a value into a polynomial in Magma (CAS)?

I have the following code R := PolynomialRing( Integers() ); i:=2^6-1; a:=Intseq(i,2); f:=Polynomial(a); f; //resulting in X^5 + X^4 + X^3 + X^2 + X + 1 I would like to replace the terms of the polynomial X with an integer, let's say 3…
-1
votes
1 answer

Regarding "hidden work" of MAGMA Order function

The computational algebra system MAGMA has a function called Order. What it does is find the multiplicative order of its argument, which must be a nonzero element of a field. This question is asking about how this order is calculated. Can anyone…
MickG
  • 8,645
1
2