Ask Your Question

humfrey305's profile - activity

2017-10-11 09:23:17 +0200 answered a question irreducibility using factor function()

sage: R.<x> = IntegerModRing(5)[] sage: k = x^3 -3*x + 4 sage: K = k.factor(); K sage: k.is_irreducible()

b. the rationals

sage: R.<x> = CC[] sage: p = x^3 -3*x + 4 sage: P = p.factor(); P sage: p.is_irreducible()

c. the complex numbers

sage: R.<x> = CC[] sage: p = x^3 -3*x + 4 sage: P = p.factor(); P sage: p.is_irreducible()

2017-10-11 01:35:53 +0200 asked a question What are the following commands telling us? R=Integers() [R.ideal([a,b]) == R.ideal([gcd(a,b)]) for a in range(1,20) for b in range(1,20)]

What are the following commands telling us?

R=Integers()
[R.ideal([a,b]) == R.ideal([gcd(a,b)]) for a in range(1,20) for b in range(1,20)]
2017-10-10 01:26:49 +0200 asked a question Another way to determine if a polynomial is irreducible over a ring, is to check if the zeros of the polynomial are in the ring, ie, does p have a linear factor.

Another way to determine if a polynomial is irreducible over a ring, is to check if the zeros of the polynomial are in the ring, ie, does p have a linear factor.

For Z_5, write a "for" loop to check if p evaluated at every element of Z_5 is zero.

2017-10-08 05:31:31 +0200 asked a question irreducibility using factor function()

Consider the polynomial p=x^3-3*x+4. Use the factor() function to determine if p is irreducible over:

a. finite field Z_5

b. the rationals

c. the complex numbers