1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748
|
-- TODO: (topComponents, Module, ZZ)
doc ///
Node
Key
PrimaryDecomposition
Headline
primary decomposition and associated primes routines for ideals and modules
Description
Text
This package provides routines for computation involving components of ideals and modules,
including associated primes and primary decompositions.
The following simple example illustrates the use of @TO removeLowestDimension@, @TO topComponents@,
@TO "MinimalPrimes :: radical"@, @TO "MinimalPrimes :: minimalPrimes"@, @TO associatedPrimes@, and
@TO primaryDecomposition@.
Example
R = ZZ/32003[a..d];
I = monomialCurveIdeal(R,{1,3,4})
J = ideal(a^3,b^3,c^3-d^3)
I = intersect(I,J)
removeLowestDimension I
topComponents I
radical I
minimalPrimes I
associatedPrimes I
primaryDecomposition I
References
@UL {
TEX "Eisenbud-Huneke-Vasconcelos, {\\it Inventiones mathematicae}, 110 207--235 (1992)",
TEX "Shimoyama-Yokoyama, {\\it Journal of Symbolic Computation}, 22(3) 247--277 (1996)"
}@
-- Acknowledgement
Subnodes
associatedPrimes
"associated primes"
primaryDecomposition
"primary decomposition"
primaryComponent
localize
SeeAlso
"MinimalPrimes :: MinimalPrimes"
"Saturation :: Saturation"
Node
Key
"associated primes"
Description
Text
The function @TO associatedPrimes@ returns a list of the associated prime ideals for a given ideal @TT "I"@.
The associated prime ideals correspond to the irreducible components of the variety associated to @TT "I"@.
They are useful in many applications in commutative algebra, algebraic geometry and combinatorics.
-- For a tutorial about associated prime ideals and primary decomposition, see @TO "commutative algebra"@.
Example
R = ZZ/101[a..d];
I = ideal(a*b-c*d, (a*c-b*d)^2);
associatedPrimes I
Text
See @TO "primary decomposition"@ for more information about finding primary decompositions.
To find just the minimal prime ideals see @TO "MinimalPrimes :: minimal primes of an ideal"@.
Node
Key
"primary decomposition"
Description
Text
@SUBSECTION "Introduction"@
The function @TO primaryDecomposition@ applied to an ideal @TT "I"@ returns a list of ideals.
These ideals have two key features, first, their intersection is equal to the ideal @TT "I"@ and
second the ideals are primary. Therefore these ideals form a primary decomposition of the ideal.
Since the ideals are primary their corresponding varieties are irreducible. The decomposition
returned is irredundant, which means that the radicals of the ideals returned are distinct prime
ideals which are the associated prime ideals for @TT "I"@ (see @TO "associated primes"@).
@SUBSECTION "An example"@
Example
R = ZZ/101[a..d];
I = ideal(a*b-c*d, (a*c-b*d)^2);
primaryDecomposition I
Text
To obtain the associated prime ideals corresponding to the primary components returned by
@TT "primaryDecomposition"@ use the function @TO associatedPrimes@.
Each entry in the list given by @TT "associatedPrimes"@ is the radical of the respective entry
in the list given by @TT "primary decomposition"@.
Node
Key
primaryDecomposition
(primaryDecomposition, Ideal)
[primaryDecomposition, MinimalGenerators]
Headline
irredundant primary decomposition of an ideal
Usage
primaryDecomposition I
Inputs
I:Ideal
in a (quotient of a) polynomial ring @TT "R"@
MinimalGenerators=>Boolean
if false, the components will not be minimalized
Outputs
:List
containing a minimal list of primary ideals whose intersection is @TT "I"@
Description
Text
This routine returns an irredundant primary decomposition for the ideal @TT "I"@.
The specific algorithm used varies depending on the characteristics of the ideal,
and can also be specified using the @TT "Strategy"@ option. In all cases, the radical
of each entry of the output is equal to the corresponding entry of the output of @TO "associatedPrimes"@.
Primary decomposition algorithms are very sensitive to the input. Some algorithms work very well on certain
classes of ideals, but poorly on other classes. If this function seems to be taking too long, try another
algorithm using @TO [primaryDecomposition, Strategy]@.
Example
R = QQ[a..i];
I = permanents(2,genericMatrix(R,a,3,3))
C = primaryDecomposition I;
I == intersect C
#C
Text
Recall that @TO "Macaulay2Doc :: List / Function"@ applies a function to each element of a
list, returning the results as a list. This is often useful with lists of ideals,
such as the list @TT "C"@ of primary components.
Example
C / toString / print;
C / codim
C / degree
Text
The corresponding list of associated prime ideals is cached
and can be obtained by using @TO (associatedPrimes, Ideal)@.
Example
associatedPrimes I / print;
Caveat
-- FIXME
The ground ring must be a prime field.
SeeAlso
(primaryDecomposition, Module)
(associatedPrimes, Ideal)
radical
"MinimalPrimes :: minimalPrimes"
topComponents
removeLowestDimension
Node
Key
(primaryDecomposition, Module)
(primaryDecomposition, Ring)
Headline
irredundant primary decomposition of a module
Usage
primaryDecomposition M
Inputs
M:Module
in a (quotient of a) polynomial ring @TT "R"@
MinimalGenerators=>Boolean
if false, the components will not be minimalized
Outputs
:List
containing a minimal list of primary submodules of @TT "M"@ whose intersection is @TT "0"@
Description
Text
This routine returns a minimal primary decomposition for the zero submodule of @TT "M"@,
i.e. a minimal list of submodules @TT "Q_i"@ of @TT "M"@ such that the intersection of all
the @TT "Q_i"@ is @TT "0"@ and @TT "Ass(M/Q_i) = {p_i}"@ for some associated prime @TT "p_i"@ of @TT "M"@.
Here minimality means that the associated primes of the submodules are pairwise distinct,
and that the decomposition is irredundant, i.e. no submodule contains the intersection of the others.
The {\tt i}-th element of this output is primary to the {\tt i}-th element of @TT "associatedPrimes M"@.
The algorithm used is inspired by the Eisenbud-Huneke-Vasconcelos algorithm, modified to work for modules.
Example
R = QQ[x_0..x_3]
(I1,I2,I3) = ({1,2,3},{2,3},{4,5}) / monomialCurveIdeal_R
M = comodule I1 ++ comodule I2 ++ comodule I3
associatedPrimes M
C = primaryDecomposition M;
netList C
intersect C == 0 and all(C, isPrimary_M)
C / degree
Text
Recall that in Macaulay2, a module is commonly represented as a @TO2 {"subquotient", "subquotient"}@, which is
an ordered pair consisting of @TO generators@ and @TO relations@ represented as column matrices.
As submodules of @TT "M"@, each module in the output list has the same relations as @TT "M"@,
and has generators which are @TT "R"@-linear combinations of generators of @TT "M"@,
where @TT "R = ring M"@.
To obtain a primary decomposition of a submodule @TT "N"@, run this function on the quotient @TT "M/N"@.
Note that the @TT "/"@ command does not check whether @TT "N"@ is actually a submodule of @TT "M"@, and
a non-sensible result may be returned if this is not the case.
-- Example
-- N = coker map(M, R^1, transpose matrix{{1_R,1,1}}) -- coker of diagonal map
-- primaryDecomposition N
-- netList(oo/gens)
Text
This function generalizes primary decomposition of ideals (more precisely, cyclic modules),
as can be seen by calling @TT "primaryDecomposition comodule I"@ for an ideal @TT "I"@.
For convenience, one can also call @TT "primaryDecomposition R"@ for a ring @TT "R"@
(which is most useful when @TT "R"@ is a @TO "QuotientRing"@).
When computing primary decompositions of ideals with this function, remember to add back
the original ideal to obtain the desired primary ideals, as in the following example.
Example
I = intersect((ideal(x_0..x_3))^5, (ideal(x_0..x_2))^4, (ideal(x_0..x_1))^3)
S = R/I
associatedPrimes S
comps = primaryDecomposition S
apply(comps, Q -> ideal mingens(I + ideal gens Q))
I == intersect oo
Text
The results of the computation are stored inside @TT "M.cache"@,
as a @TO "MutableHashTable"@ whose keys are associated primes and values are the
corresponding primary components.
The list of all associated prime ideals is also cached, and can be obtained with @TT "associatedPrimes M"@.
The computation may be interrupted at any point, and can be resumed later without recomputing already
known primary components. To display detailed information throughout the computation, set the global variable
@TO "debugLevel"@ to a value greater than 0, e.g. @TT "debugLevel=1"@ (or @TT "debugLevel=2"@ for even more detail).
This function has one optional input @TT "Strategy"@, which accepts 3
possible values that determine the algorithm for finding embedded components.
-- FIXME
@UL {
{TT "Res", PARA {"This strategy is closest to the original Eisenbud-Huneke-Vasconcelos method."}},
{TT "Hom"},
{TT "Sat"},
}@
While the default (and typically fastest) strategy is @TT "Sat"@, it is recommended to try different
@TT "Strategy"@ values if the computation of a particular embedded component is taking too long.
One can start the computation with one strategy, and interrupt and resume with a different strategy
(even multiple times) if desired.
Caveat
Note that although isolated components (i.e. those corresponding to minimal primes) are unique,
embedded components are never unique, and thus specifying generators of an embedded component requires
non-canonical choices. For speed purposes, this algorithm searches for embedded components obtained by adding a
bracket power of the embedded prime, with exponent determined by the degrees of generators of the embedded
prime and @TT "ann M"@. In particular, the generators of an embedded component may not be of minimal possible degree.
SeeAlso
(primaryDecomposition, Ideal)
(associatedPrimes, Module)
isPrimary
topComponents
[primaryDecomposition, Strategy]
Node
Key
associatedPrimes
(associatedPrimes, Ring)
(associatedPrimes, Ideal)
(associatedPrimes, Module)
[associatedPrimes, Strategy]
[associatedPrimes, CodimensionLimit]
[associatedPrimes, MinimalGenerators]
Headline
find associated primes
Usage
associatedPrimes I
ass I
Inputs
I:{Ring,Ideal,Module}
a quotient ring, ideal, or module over a (quotient of a) polynomial ring @TT "R"@
CodimensionLimit => ZZ
stop after finding primes of codimension less than or equal to this value
MinimalGenerators=>Boolean
if false, the associated primes will not be minimalized
Outputs
:List
a list of the prime ideals in @TT "R"@ that are associated to @TT "I"@
Description
Text
{\tt ass} is an abbreviation for @TT "associatedPrimes"@.
This function computes the list of associated primes for a module @TT "M"@ using Ext modules:
the codimension {\tt i} associated primes of @TT "M"@ and $\mathrm{Ext}^i(M,R)$ are identical,
as shown in Eisenbud-Huneke-Vasconcelos, Invent. Math. 110 (1992) 207-235.
In some cases, @TO primaryDecomposition@ also computes the associated primes, in which case
calling @TO associatedPrimes@ requires no new computation and the list of associated primes
is in the same order as the list of primary components returned by @TO primaryDecomposition@.
Conversely, calling @TO associatedPrimes@ beforehand will speed up the process of @TO (primaryDecomposition, Module)@.
Example
R = QQ[a..d]
M = coker(transpose matrix{{1_R,1,1,1}} | diagonalMatrix vars R)
associatedPrimes M
Text
For an ideal @TT "I"@, @TT "associatedPrimes I"@ is mathematically equivalent to @TT "associatedPrimes comodule I"@.
Example
I = intersect(ideal(a^2,b), ideal(a,b,c^5), ideal(b^4,c^4))
associatedPrimes I
associatedPrimes comodule I
Text
For a quotient ring @TT "R"@, @TT "associatedPrimes R"@ is equivalent to @TT "associatedPrimes ideal R"@,
the associated primes of the defining ideal of @TT "R"@.
Example
R = QQ[x,y,z]/(x^2,x*y)
associatedPrimes R
Text
If the ideal is @ofClass MonomialIdeal@, then a more efficient strategy written by Greg Smith
and Serkan Hosten is used. The above comments about primary decomposition hold in this case too.
Example
R = QQ[a..f];
I = monomialIdeal ideal"abc,bcd,af3,a2cd,bd3d,adf,f5"
ass I
primaryDecomposition I
Text
The list of associated primes corresponds to the list of primary components of @TT "I"@:
the {\tt i}-th associated prime is the radical of the {\tt i}-th primary component.
If a value to the option @TT "CodimensionLimit"@ is provided, then only associated primes
of codimension at most this value are returned. This can save time if the big height
(that is, the maximal codimension of an associated prime) is less than the projective dimension.
This method stores the primes already found in a cache, and calling it with a different value
of @TT "CodimensionLimit"@ will only perform further computation if it is necessary.
There are three methods for computing associated primes in Macaulay2: If the ideal is a monomial
ideal, use code that Greg Smith and Serkan Hosten wrote. If a primary decomposition has already
been found, use the stashed associated primes found. If neither of these is the case, then use Ext
modules to find the associated primes (this is @TT "Strategy => 1"@).
Example
S = QQ[a,b,c,d,e];
I1 = ideal(a,b,c);
I2 = ideal(a,b,d);
I3 = ideal(a,e);
P = I1*I2*I3
L1 = associatedPrimes P
L2 = apply(associatedPrimes monomialIdeal P, J -> ideal J)
M1 = set apply(L1, I -> sort flatten entries gens I)
M2 = set apply(L2, I -> sort flatten entries gens I)
assert(M1 === M2)
Text
The method using Ext modules comes from Eisenbud-Huneke-Vasconcelos, Invent. Math 110 (1992) 207-235.
Original author (for ideals): @HREF {"http://faculty.mercer.edu/yackel_ca/", "C. Yackel"}@.
Updated for modules by J. Chen.
SeeAlso
(primaryDecomposition, Ideal)
(primaryDecomposition, Module)
"radical"
"MinimalPrimes :: minimalPrimes"
topComponents
removeLowestDimension
Node
Key
localize
(localize, Ideal, Ideal)
[localize, Strategy]
Headline
localize an ideal at a prime ideal
Usage
localize(I, P)
Inputs
I:Ideal
an ideal in a (quotient of a) polynomial ring @TT "R"@
P:Ideal
a prime ideal in the same ring
Outputs
:Ideal
the extension contraction ideal $I R_P \cap R$.
Description
Text
The result is the ideal obtained by first extending to the
localized ring and then contracting back to the original ring.
Example
R = ZZ/(101)[x,y];
I = ideal (x^2,x*y);
P1 = ideal (x);
localize(I,P1)
P2 = ideal (x,y);
localize(I,P2)
Example
R = ZZ/31991[x,y,z];
I = ideal(x^2,x*z,y*z);
P1 = ideal(x,y);
localize(I,P1)
P2 = ideal(x,z);
localize(I,P2)
Text
The strategy option value should be one of the following, with default value 1.
@UL{
LI (TT "Strategy => 0", " -- Uses the algorithm of Eisenbud-Huneke-Vasconcelos",
PARA {
"This strategy does not require the calculation of the assassinator, but can
require the computation of high powers of ideals. The method appears in
Eisenbud-Huneke-Vasconcelos, Invent. Math. 110 (1992) 207-235."}),
LI (TT "Strategy => 1", " -- Uses a separator to find the localization",
PARA {
"This strategy uses a separator polynomial - a polynomial in all of the associated primes
of {\tt I} but {\tt P} and those contained in {\tt P}.
In this strategy, the assassinator of the ideal will be recalled, or recomputed using ",
TO2 {[associatedPrimes, Strategy], TT "Strategy => 1"}, " if unknown. The separator
polynomial method is described in Shimoyama-Yokoyama, J. Symbolic computation, 22(3) 247-277 (1996).
This is the same as ", TT "Strategy => 1", " except that, if unknown, the assassinator
is computed using ", TO2 {[associatedPrimes, Strategy], TT "Strategy => 2"}, "."}),
LI (TT "Strategy => 2", " -- Uses a separator to find the localization")
}@
Authored by @HREF {"http://faculty.mercer.edu/yackel_ca", "C. Yackel"}@. Last modified June, 2000.
Caveat
The ideal {\tt P} is not checked to be prime.
SeeAlso
(primaryDecomposition, Ideal)
radical
"MinimalPrimes :: minimalPrimes"
topComponents
removeLowestDimension
Node
Key
primaryComponent
(primaryComponent, Ideal, Ideal)
[primaryComponent, Strategy]
[primaryComponent, Increment]
Increment
Headline
find a primary component corresponding to an associated prime
Usage
Q = primaryComponent(I, P)
Inputs
I:Ideal
an ideal in a (quotient of a) polynomial ring {\tt R}
P:Ideal
an associated prime of {\tt I}
Outputs
Q:Ideal
a {\tt P}-primary ideal of {\tt I}
Description
Text
The output {\tt Q} is @TT "topComponents(I + P^m)"@ for sufficiently large {\tt m}.
The criterion that {\tt Q} is primary is given in Eisenbud-Huneke-Vasconcelos,
Invent. Math. 110 (1992) 207-235. However, we use @TO (localize, Ideal, Ideal)@.
The @TT "Strategy"@ option value sets the strategy option for @TO localize@, and should be one of the following:
-- TODO: The default value is 2.
@UL{
LI ("Strategy => 0", " -- Uses ", TT "localize", " Strategy 0"),
LI ("Strategy => 1", " -- Uses ", TT "localize", " Strategy 1"),
LI ("Strategy => 2", " -- Uses ", TT "localize", " Strategy 2")
}@
The @TT "Increment"@ option value should be an integer. The algorithm given in
Eisenbud-Huneke-Vasconcelos, Invent. Math. 110 (1992) 207-235, relies on @TT "topComponents(I + P^m)"@
for $m$ sufficiently large. The algorithm begins with $m = 1$, and increases $m$ by the value
of the @TT "Increment"@ option until @TT "m"@ is sufficiently large. The default value is 1.
Authored by @HREF {"http://faculty.mercer.edu/yackel_ca", "C. Yackel"}@. Last modified June, 2000.
SeeAlso
(associatedPrimes, Ideal)
(primaryDecomposition, Ideal)
radical
"MinimalPrimes :: minimalPrimes"
topComponents
removeLowestDimension
Node
Key
isPrimary
(isPrimary, Ideal)
(isPrimary, Ideal, Ideal)
(isPrimary, Module, Module)
[isPrimary, Strategy]
Headline
determine whether a submodule is primary
Usage
isPrimary Q
isPrimary(Q, P)
isPrimary(M, Q)
Inputs
Q:{Ideal,Module}
the submodule or ideal to be checked for being primary
P:Ideal
the @TO "MinimalPrimes :: radical"@ of @TT "Q"@
M:Module
the ambient module
Strategy=>Thing
See @TO [associatedPrimes, Strategy]@ and @TO "MinimalPrimes :: isPrime(Ideal, Strategy => ...)"@
Outputs
:Boolean
true if @TT "Q"@ is primary, false otherwise
Description
Text
Checks to see if a given submodule @TT "Q"@ of a module @TT "M"@ is primary,
i.e. whether or not @TT "M/Q"@ has exactly one associated prime (which is equivalent for finitely
generated modules over Noetherian rings). If the input is a single ideal, then the ambient module
is taken to be the ring (i.e. the free module of rank 1), and does not need to be specified.
Example
Q = ZZ/101[x,y,z]
isPrimary ideal(y^6)
isPrimary(ideal(y^6), ideal(y))
isPrimary ideal(x^4, y^7)
isPrimary ideal(x*y, y^2)
SeeAlso
(primaryDecomposition, Ideal)
(primaryDecomposition, Module)
associatedPrimes
Node
Key
"strategies for computing primary decomposition"
[primaryDecomposition, Strategy]
EisenbudHunekeVasconcelos
ShimoyamaYokoyama
Hybrid
GTZ
Description
Text
@HEADER2 "Primary Decomposition of Modules"@
In this case, the only available strategy is similar to the Eisenbud-Huneke-Vasconcelos strategy
and is implemented by Justin Chen. Optionally, it is possible to specify the strategy for finding
the embedded components by passing
Pre
Strategy => Hybrid{strategy for getEmbeddedComponents}
Text
where the strategy is one of @TT format "Hom"@, @TT format "Sat"@, or @TT format "Res"@.
See @TO (primaryDecomposition, Module)@ for more information.
Text
@HEADER2 "Primary Decomposition of Ideals"@
In this case, the strategy option value should be one of the following:
@UL {
("Monomial", " -- uses Alexander duality of a monomial ideal"),
("Binomial", " -- finds a cellular resolution of a binomial ideal (see ", TO "Binomials :: binomialPrimaryDecomposition",")"),
("Hybrid"," -- uses parts of the above two algorithms"),
("ShimoyamaYokoyama", " -- uses the algorithm of Shimoyama-Yokoyama"),
("EisenbudHunekeVasconcelos", " -- uses the algorithm of Eisenbud-Huneke-Vasconcelos"),
("GTZ", " -- uses the algorithm of Gianni-Trager-Zacharias", BOLD " (NOT YET IMPLEMENTED)"),
}@
The strategies are implemented as @TO2 {"Macaulay2Doc :: using hooks", "hooks"}@, meaning that
each strategy is attempted in the reverse order in which it was added until one is successful.
Example
hooks(primaryDecomposition, Ideal)
Text
@SUBSECTION "Strategy => Monomial"@
This strategy only works for monomial ideals, and is automatically used for such ideals.
See the chapter on "Monomial Ideals" in the Macaulay2 book.
Example
Q = QQ[a..d]
I = ideal(a^2*b,a*c^2,b*d,c*d^2);
primaryDecomposition(I, Strategy => Monomial)
Text
@SUBSECTION "Strategy => EisenbudHunekeVasconcelos"@
See {\it Direct methods for primary decomposition} by Eisenbud, Huneke, and Vasconcelos, Invent. Math. 110, 207-235 (1992).
Example
primaryDecomposition(I, Strategy => EisenbudHunekeVasconcelos)
Text
@SUBSECTION "Strategy => ShimoyamaYokoyama"@
This strategy is the default for non-monomial ideals.
See {\it Localization and Primary Decomposition of Polynomial ideals} by Shimoyama and Yokoyama, J. Symb. Comp. 22, 247-277 (1996).
Example
primaryDecomposition(I, Strategy => ShimoyamaYokoyama)
Text
@SUBSECTION "Strategy => Hybrid{associated primes strategy, localize strategy}"@
Uses a hybrid of the Eisenbud-Huneke-Vasconcelos and Shimoyama-Yokoyama strategies.
To use this strategy, the field @TT "Strategy"@ should be a list of two integers, indicating the
strategy to use for finding associated primes and localizing, respectively.
{\bf Warning:} Setting the second parameter to 1 works only if the ideal is homogeneous and equidimensional.
Example
Q = QQ[x,y];
I = intersect(ideal(x^2), ideal(y^2))
primaryDecomposition(I, Strategy => Hybrid{1,1})
primaryDecomposition(I, Strategy => Hybrid{1,2})
primaryDecomposition(I, Strategy => Hybrid{2,1})
primaryDecomposition(I, Strategy => Hybrid{2,2})
Node
Key
irreducibleDecomposition
(irreducibleDecomposition, MonomialIdeal)
Headline
express a monomial ideal as an intersection of irreducible monomial ideals
Usage
irreducibleDecomposition I
Inputs
I:Ideal
Outputs
:List
containing the irreducible monomial ideals whose intersection is @TT "I"@
Description
Example
R = QQ[x..z];
I = monomialIdeal (x*y^3, x*y^2*z)
w = irreducibleDecomposition I
assert( I == intersect w )
Node
Key
kernelOfLocalization
(kernelOfLocalization, Module, Ideal)
Headline
the kernel of the localization map
Usage
kernelOfLocalization(M, P)
Inputs
M:Module
P:Ideal
the prime ideal to localize at
Outputs
:Module
the kernel of the localization map @TT "M -> M_P"@
Description
Text
This method computes the kernel of the natural map from a module to its localization at a given prime ideal.
The efficiency of this method is intimately tied to the efficiency of computation of associated primes for
the module - if the associated primes of @TT "M"@ have previously been computed, then this method should
finish quickly.
Example
R = QQ[x_0..x_3]
(I1,I2,I3) = monomialCurveIdeal_R \ ({1,2,3},{2,3},{4,5})
M = comodule I1 ++ comodule I2 ++ comodule I3
elapsedTime kernelOfLocalization(M, I1)
elapsedTime kernelOfLocalization(M, I2)
elapsedTime kernelOfLocalization(M, I3)
SeeAlso
(associatedPrimes, Module)
(primaryDecomposition, Module)
Node
Key
regSeqInIdeal
(regSeqInIdeal, Ideal)
(regSeqInIdeal, Ideal, ZZ)
(regSeqInIdeal, Ideal, ZZ, ZZ, ZZ)
[regSeqInIdeal,Strategy]
Headline
a regular sequence contained in an ideal
Usage
regSeqInIdeal I
regSeqInIdeal(I, n)
regSeqInIdeal(I, n, c, t)
Inputs
I:Ideal
n:ZZ
the length of the regular sequence returned
c:ZZ
the codimension of @TT "I"@ if known
t:ZZ
a limit on the time spent (in seconds) for each trial
Outputs
:Ideal
generated by a regular sequence of length @TT "n"@ contained in @TT "I"@
Description
Text
This method computes a regular sequence of length @TT "n"@ contained in a given ideal @TT "I"@.
It attempts to do so by first trying "sparse" combinations of the generators, i.e. elements which
are either generators or sums of two generators. If a sparse regular sequence is not found, then
dense combinations of generators will be tried.
If the length @TT "n"@ is either unspecified or greater than the codimension of @TT "I"@ then it
is silently replaced with the codimension of @TT "I"@. The ideal @TT "I"@ should be in a polynomial
(or at least Cohen-Macaulay) ring, so that @TT "codim I = grade I"@.
Example
R = QQ[x_0..x_7]
I = intersect(ideal(x_0,x_1,x_2,x_3), ideal(x_4,x_5,x_6,x_7), ideal(x_0,x_2,x_4,x_6), ideal(x_1,x_3,x_5,7))
elapsedTime regSeqInIdeal I
Text
If @TT "I"@ is the unit ideal, then an ideal of variables of the ring is returned.
If the codimension of @TT "I"@ is already known, then one can specify this, along with a time limit
for each trial (normally this is taken from the length of time for computing codim I).
This can result in a significant speedup:
in the following example, @TT "codim I"@ takes more than a minute to complete.
Example
R = QQ[h,l,s,x,y,z]
I = ideal(h*l-l^2-4*l*s+h*y,h^2*s-6*l*s^3+h^2*z,x*h^2-l^2*s-h^3,h^8,l^8,s^8)
isSubset(I, ideal(s,l,h)) -- implies codim I == 3
elapsedTime regSeqInIdeal(I, 3, 3, 1)
SeeAlso
"MinimalPrimes :: radical"
--- author(s): Giulio
Node
Key
topComponents
(topComponents, Ideal)
(topComponents, Module)
Headline
compute top dimensional component of an ideal or module
Usage
topComponents M
Inputs
M:{Ideal,Module}
Outputs
:{Ideal,Module}
the intersection of the primary components of the input with the greatest Krull dimension
Description
Text
The method used is that of Eisenbud-Huneke-Vasconcelos, in their 1993 Inventiones Mathematicae paper.
Example
R = ZZ/32003[a..c];
I = intersect(ideal(a,b), ideal(b,c), ideal(c,a), ideal(a^2,b^3,c^4));
topComponents I
Text
If $M$ is a module in a polynomial ring $R$, then the implementations of @TT "topComponents"@ and
@TO removeLowestDimension@ are based on the following observations:
@UL {
TEX "$codim Ext^d(M,R) \\ge d$ for all $d$",
TEX "If $P$ is an associated prime of $M$ of codimension $d := codim P > codim M$,
then $codim Ext^d(M,R) = d$ and the annihilator of $Ext^d(M,R)$ is contained in $P$",
TEX "If $codim Ext^d(M,R) = d$, then there really is an associated prime of codimension $d$.",
TEX "If $M$ is $R/I$, then $topComponents(I) = ann Ext^c(R/I,R)$, where $c = codim I$"
}@
SeeAlso
removeLowestDimension
"Saturation :: saturate"
"Saturation :: Ideal : Ideal"
"MinimalPrimes :: radical"
Node
Key
removeLowestDimension
(removeLowestDimension, Ideal)
(removeLowestDimension, Module)
Headline
remove components of lowest dimension
Usage
removeLowestDimension M
Inputs
M:{Ideal,Module}
Outputs
:{Ideal,Module}
Description
Text
This function yields the intersection of the primary components of @TT "M"@ except those of
lowest dimension, and thus returns the ambient free module of @TT "M"@ (or unit ideal) if @TT "M"@
is pure dimensional. For a very brief description of the method used, see @TO "topComponents"@.
As an example we remove the lowest dimensional component of an ideal {\tt I}:
Example
R = ZZ/32003[a..d];
I = intersect(ideal(a*b+a^2,b^2), ideal(a^2,b^2,c^2), ideal(b^3,c^3,d^3))
removeLowestDimension I
SeeAlso
topComponents
"Saturation :: saturate"
"Saturation :: Ideal : Ideal"
"MinimalPrimes :: radical"
"MinimalPrimes :: minimalPrimes"
///
|