File: rabmo.m2

package info (click to toggle)
macaulay2 1.21%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 133,096 kB
  • sloc: cpp: 110,377; ansic: 16,306; javascript: 4,193; makefile: 3,821; sh: 3,580; lisp: 764; yacc: 590; xml: 177; python: 140; perl: 114; lex: 65; awk: 3
file content (46 lines) | stat: -rw-r--r-- 1,287 bytes parent folder | download | duplicates (4)
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
export{"rabmo"}

rabmo = method()
rabmo (Ring) := kk -> (
	x := symbol x;
	R := kk[x_1..x_9];
	{ x_1 + x_3 + x_5 + 2*x_7 - 1,
	x_1*x_2 + x_3*x_4 + 2*x_5*x_6 + 2*x_7*x_8 + 2*x_7*x_9 - 2/3,
	x_1*x_2^2 + x_3*x_4^2 + 2*x_5*x_6^2 + 2*x_7*x_8^2 + 2*x_7*x_9^2 - 2/5,
	x_1*x_2^3 + x_3*x_4^3 + 2*x_5*x_6^3 + 2*x_7*x_8^3 + 2*x_7*x_9^3 - 2/7,
	x_1*x_2^4 + x_3*x_4^4 + 2*x_5*x_6^4 + 2*x_7*x_8^4 + 2*x_7*x_9^4 - 2/9,
	x_5*x_6^2 + 2*x_7*x_8*x_9 - 1/9,
	x_5*x_6^4 + 2*x_7*x_8^2*x_9^2 - 1/25,
	x_5*x_6^3 + x_7*x_8*x_9^2 + x_7*x_8^2*x_9 - 1/15,
	x_5*x_6^4 + x_7*x_8*x_9^3 + x_7*x_8^3*x_9 - 1/21 }
 )

beginDocumentation()

doc /// 
    Key
    	rabmo
	(rabmo,Ring)
    Headline
    	optimal multi-dimensional quadrature formulas
    Usage
	rabmo(kk)
    Inputs
	kk:Ring
		the coefficient ring
    Outputs
	:List
		of polynomials in the system
    Description
    	Text
	    This system was solved in May 2020, using @TO solveSystem@ in Macaulay2 v1.15
	     with an Intel(R) Core(TM) i5-5250U CPU at 1.60GHz.
	   
	    There were 58 solutions found in 1642.07 seconds (with a Bezout bound of 36000). 
	    
	    Reference: "Methods and applications of interval analysis" by Ramon E. Moore (p. 64).
	    
	    See also: http://homepages.math.uic.edu/~jan/Demo/rabmo.html.
    	Example
	    rabmo(QQ)
 ///