Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. Macaulay2, version 1.6.0.1
  2. with packages: ConwayPolynomials, Elimination, IntegralClosure, LLLBases, PrimaryDecomposition,
  3. ReesAlgebra, TangentCone
  4.  
  5. i1 : R=QQ[a,b,c]
  6.  
  7. o1 = R
  8.  
  9. o1 : PolynomialRing
  10.  
  11. i2 : i1=ideal(a+b+c-3,a^2+b^2+c^2-5,a^3+b^3+c^3-7)
  12.  
  13. 2 2 2 3 3 3
  14. o2 = ideal (a + b + c - 3, a + b + c - 5, a + b + c - 7)
  15.  
  16. o2 : Ideal of R
  17.  
  18. i3 : S=R/i1
  19.  
  20. o3 = S
  21.  
  22. o3 : QuotientRing
  23.  
  24. i4 : phi=map(S,R)
  25.  
  26. o4 = map(S,R,{- b - c + 3, b, c})
  27.  
  28. o4 : RingMap S <--- R
  29.  
  30. i6 : use R
  31.  
  32. o6 = R
  33.  
  34. o6 : PolynomialRing
  35.  
  36. i7 : phi(a^5+b^5+c^5)
  37.  
  38. 29
  39. o7 = --
  40. 3
  41.  
  42. o7 : S
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement