Skip to content

Commit

Permalink
Merge branch 'NumberFields' of github.com:Macaulay2/Workshop-2024-Uta…
Browse files Browse the repository at this point in the history
…h into NumberFields
  • Loading branch information
ToshiMowery committed Jun 26, 2024
2 parents fcc506c + a2c2375 commit 5e02256
Show file tree
Hide file tree
Showing 2 changed files with 316 additions and 51 deletions.
18 changes: 18 additions & 0 deletions NumberFields/KarlsTestingFile.m2
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
restart

uninstallPackage "NumberFields"
loadPackage "NumberFields"
installPackage "NumberFields"
check NumberFields

restart
loadPackage "NumberFields"

R = QQ[x]
f = x^3-2
K = (splittingField(f, Verbose=>true))
use R
g = x^5+x^4+x+3
K = (splittingField(g, Verbose=>true))

h = x^5-10*x+2
K = (splittingField(h, Verbose=>true))
h1 = x^5-10*x+2

R = QQ[x]/ideal(x^3-2)
S = R[y]/ideal(y^2+y+1)
remakeField S
Expand Down
Loading

0 comments on commit 5e02256

Please sign in to comment.