Quiz 1 MCS 320 Friday 17 January 2003
1. Give the Maple commands to compute the square root of Pi with 17 decimal places.
Also give the numerical value you obtain.
> evalf(sqrt(Pi),17);
2. Consider the polynomial p(x) = x^3 + 8*x + 1.
Find the factorization of this polynomial 2^(13) - 1.
Write the maple factoring command and also list the result of this calculation:
> p := x^3 + 8*x + 1;
> Factor(p) mod (2^13-1);