Skip to content

Commit 0b99dcb

Browse files
Release Managervbraun
Release Manager
authored andcommitted
Trac #20475: Upgrade to Pynac-0.6.5
That Pynac version has: * fix for: `assume(x>0)` sets integer flag (#20456) * fix Maxima crashes by implementing fast Hermite (#20297) and Gegenbauer (#20428) polynomials in Pynac * some fixes to handling of elements of rings with positive characteristics (#20162) * Python 3 build fix * automatic trigonometric and log simplifications https://github.com/pynac/pynac/releases/download/pynac-0.6.5/pynac-0.6.5 .tar.bz2 URL: http://trac.sagemath.org/20475 Reported by: rws Ticket author(s): Ralf Stephan, Benjamin Hackl, Aaditya Thakkar Reviewer(s): Eric Gourgoulhon, Volker Braun
2 parents 67e4937 + 72d96a5 commit 0b99dcb

File tree

10 files changed

+103
-28
lines changed

10 files changed

+103
-28
lines changed

build/pkgs/pynac/checksums.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=pynac-VERSION.tar.bz2
2-
sha1=fb0c8f83159b1c9c92dcb335409f12250726a32d
3-
md5=593ac3752f8293199ffc097becbebfcf
4-
cksum=4163433737
2+
sha1=e43d1e78a3558d4bf1f8c1ca71cc95a2c4758868
3+
md5=5435ea1568cad643a490bd8cb8b6c1e2
4+
cksum=3626141660

build/pkgs/pynac/package-version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.6.4
1+
0.6.5

src/sage/functions/log.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def __init__(self):
4343
sage: exp(RDF('2.5'))
4444
12.182493960703473
4545
sage: exp(I*pi/12)
46-
1/12*sqrt(6)*(sqrt(3) + 3) - 1/12*I*sqrt(6)*(sqrt(3) - 3)
46+
(1/4*I + 1/4)*sqrt(6) - (1/4*I - 1/4)*sqrt(2)
4747
4848
To prevent automatic evaluation, use the ``hold`` parameter::
4949

src/sage/functions/orthogonal_polys.py

+41-17
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@
317317

318318

319319
from sage.symbolic.ring import SR, is_SymbolicVariable
320-
from sage.symbolic.function import BuiltinFunction
320+
from sage.symbolic.function import BuiltinFunction, GinacFunction
321321
from sage.symbolic.expression import Expression
322322
from sage.functions.other import factorial, binomial
323323
from sage.structure.all import parent
@@ -1238,7 +1238,7 @@ def gen_legendre_Q(n, m, x):
12381238
return ((n-m+1)*x*gen_legendre_Q(n,m-1,x)-(n+m-1)*gen_legendre_Q(n-1,m-1,x))/sqrt(1-x**2)
12391239

12401240

1241-
def hermite(n, x):
1241+
class Func_hermite(GinacFunction):
12421242
"""
12431243
Returns the Hermite polynomial for integers `n > -1`.
12441244
@@ -1263,7 +1263,7 @@ def hermite(n, x):
12631263
8*y^6 - 12*y^2
12641264
sage: w = var('w')
12651265
sage: hermite(3,2*w)
1266-
8*(8*w^2 - 3)*w
1266+
64*w^3 - 24*w
12671267
12681268
Check that :trac:`17192` is fixed::
12691269
@@ -1274,19 +1274,27 @@ def hermite(n, x):
12741274
sage: hermite(-1,x)
12751275
Traceback (most recent call last):
12761276
...
1277-
ValueError: n must be greater than -1, got n = -1
1277+
RuntimeError: hermite_eval: The index n must be a nonnegative integer
12781278
12791279
sage: hermite(-7,x)
12801280
Traceback (most recent call last):
12811281
...
1282-
ValueError: n must be greater than -1, got n = -7
1282+
RuntimeError: hermite_eval: The index n must be a nonnegative integer
12831283
"""
1284-
if not (n > -1):
1285-
raise ValueError("n must be greater than -1, got n = {0}".format(n))
1284+
def __init__(self):
1285+
r"""
1286+
Init method for the Hermite polynomials.
12861287
1287-
_init()
1288-
return sage_eval(maxima.eval('hermite(%s,x)'%ZZ(n)), locals={'x':x})
1288+
EXAMPLES::
1289+
1290+
sage: loads(dumps(hermite))
1291+
hermite
1292+
"""
1293+
GinacFunction.__init__(self, "hermite", nargs=2, latex_name=r"H",
1294+
conversions={'maxima':'hermite', 'mathematica':'HermiteH',
1295+
'maple':'HermiteH'}, preserved_arg=2)
12891296

1297+
hermite = Func_hermite()
12901298

12911299
def jacobi_P(n, a, b, x):
12921300
r"""
@@ -1381,7 +1389,7 @@ def legendre_Q(n, x):
13811389
return sage_eval(maxima.eval('legendre_q(%s,x)'%ZZ(n)), locals={'x':x})
13821390

13831391

1384-
def ultraspherical(n, a, x):
1392+
class Func_ultraspherical(GinacFunction):
13851393
"""
13861394
Returns the ultraspherical (or Gegenbauer) polynomial for integers
13871395
`n > -1`.
@@ -1394,6 +1402,8 @@ def ultraspherical(n, a, x):
13941402
13951403
EXAMPLES::
13961404
1405+
sage: ultraspherical(8, 101/11, x)
1406+
795972057547264/214358881*x^8 - 62604543852032/19487171*x^6...
13971407
sage: x = PolynomialRing(QQ, 'x').gen()
13981408
sage: ultraspherical(2,3/2,x)
13991409
15/2*x^2 - 3/2
@@ -1404,6 +1414,12 @@ def ultraspherical(n, a, x):
14041414
sage: t = PolynomialRing(RationalField(),"t").gen()
14051415
sage: gegenbauer(3,2,t)
14061416
32*t^3 - 12*t
1417+
sage: var('x')
1418+
x
1419+
sage: for N in range(100):
1420+
....: n = ZZ.random_element().abs() + 5
1421+
....: a = QQ.random_element().abs() + 5
1422+
....: assert ((n+1)*ultraspherical(n+1,a,x) - 2*x*(n+a)*ultraspherical(n,a,x) + (n+2*a-1)*ultraspherical(n-1,a,x)).expand().is_zero()
14071423
14081424
Check that :trac:`17192` is fixed::
14091425
@@ -1414,20 +1430,28 @@ def ultraspherical(n, a, x):
14141430
sage: ultraspherical(-1,1,x)
14151431
Traceback (most recent call last):
14161432
...
1417-
ValueError: n must be greater than -1, got n = -1
1433+
RuntimeError: gegenb_eval: The index n must be a nonnegative integer
14181434
14191435
sage: ultraspherical(-7,1,x)
14201436
Traceback (most recent call last):
14211437
...
1422-
ValueError: n must be greater than -1, got n = -7
1438+
RuntimeError: gegenb_eval: The index n must be a nonnegative integer
14231439
"""
1424-
if not (n > -1):
1425-
raise ValueError("n must be greater than -1, got n = {0}".format(n))
1440+
def __init__(self):
1441+
r"""
1442+
Init method for the ultraspherical polynomials.
14261443
1427-
_init()
1428-
return sage_eval(maxima.eval('ultraspherical(%s,%s,x)'%(ZZ(n),a)), locals={'x':x})
1444+
EXAMPLES::
1445+
1446+
sage: loads(dumps(ultraspherical))
1447+
gegenbauer
1448+
"""
1449+
GinacFunction.__init__(self, "gegenbauer", nargs=3, latex_name=r"C",
1450+
conversions={'maxima':'ultraspherical', 'mathematica':'GegenbauerC',
1451+
'maple':'GegenbauerC'})
14291452

1430-
gegenbauer = ultraspherical
1453+
ultraspherical = Func_ultraspherical()
1454+
gegenbauer = Func_ultraspherical()
14311455

14321456

14331457
class Func_laguerre(OrthogonalFunction):

src/sage/functions/trig.py

+23-4
Original file line numberDiff line numberDiff line change
@@ -47,35 +47,54 @@ def __init__(self):
4747
1/4*sqrt(-2*sqrt(6) - 2*sqrt(2) + 8)
4848
sage: sin(pi/30)
4949
-1/8*sqrt(5) + 1/4*sqrt(-3/2*sqrt(5) + 15/2) - 1/8
50+
sage: sin(104*pi/105)
51+
sin(1/105*pi)
5052
sage: cos(pi/8)
5153
1/2*sqrt(sqrt(2) + 2)
5254
sage: cos(pi/10)
53-
1/2*sqrt(1/2*sqrt(5) + 5/2)
55+
1/4*sqrt(2*sqrt(5) + 10)
5456
sage: cos(pi/12)
55-
1/12*sqrt(6)*(sqrt(3) + 3)
57+
1/4*sqrt(6) + 1/4*sqrt(2)
5658
sage: cos(pi/15)
5759
1/8*sqrt(5) + 1/4*sqrt(3/2*sqrt(5) + 15/2) - 1/8
5860
sage: cos(pi/24)
5961
1/4*sqrt(2*sqrt(6) + 2*sqrt(2) + 8)
62+
sage: cos(104*pi/105)
63+
-cos(1/105*pi)
6064
sage: tan(pi/5)
6165
sqrt(-2*sqrt(5) + 5)
6266
sage: tan(pi/8)
6367
sqrt(2) - 1
6468
sage: tan(pi/10)
65-
sqrt(-2/5*sqrt(5) + 1)
69+
1/5*sqrt(-10*sqrt(5) + 25)
6670
sage: tan(pi/16)
6771
-sqrt(2) + sqrt(2*sqrt(2) + 4) - 1
6872
sage: tan(pi/20)
69-
sqrt(5) - 1/2*sqrt(8*sqrt(5) + 20) + 1
73+
sqrt(5) - sqrt(2*sqrt(5) + 5) + 1
7074
sage: tan(pi/24)
7175
sqrt(6) - sqrt(3) + sqrt(2) - 2
76+
sage: tan(104*pi/105)
77+
-tan(1/105*pi)
78+
sage: cot(104*pi/105)
79+
-cot(1/105*pi)
80+
sage: sec(104*pi/105)
81+
-sec(1/105*pi)
82+
sage: csc(104*pi/105)
83+
csc(1/105*pi)
7284
7385
sage: all(sin(rat*pi).n(200)-sin(rat*pi,hold=True).n(200) < 1e-30 for rat in [1/5,2/5,1/30,7/30,11/30,13/30,1/8,3/8,1/24,5/24,7/24,11/24])
7486
True
7587
sage: all(cos(rat*pi).n(200)-cos(rat*pi,hold=True).n(200) < 1e-30 for rat in [1/10,3/10,1/12,5/12,1/15,2/15,4/15,7/15,1/8,3/8,1/24,5/24,11/24])
7688
True
7789
sage: all(tan(rat*pi).n(200)-tan(rat*pi,hold=True).n(200) < 1e-30 for rat in [1/5,2/5,1/10,3/10,1/20,3/20,7/20,9/20,1/8,3/8,1/16,3/16,5/16,7/16,1/24,5/24,7/24,11/24])
7890
True
91+
92+
Check that :trac:`20456` is fixed::
93+
94+
sage: assume(x>0)
95+
sage: sin(pi*x)
96+
sin(pi*x)
97+
sage: forget()
7998
"""
8099
GinacFunction.__init__(self, "sin", latex_name=r"\sin",
81100
conversions=dict(maxima='sin',mathematica='Sin'))

src/sage/modular/modform_hecketriangle/hecke_triangle_groups.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ def dvalue(self):
541541
sage: HeckeTriangleGroup(6).dvalue()
542542
1/108
543543
sage: HeckeTriangleGroup(10).dvalue()
544-
e^(2*euler_gamma - 2*pi/sqrt(1/2*sqrt(5) + 5/2) + psi(4/5) + psi(7/10))
544+
e^(2*euler_gamma - 4*pi/sqrt(2*sqrt(5) + 10) + psi(4/5) + psi(7/10))
545545
sage: HeckeTriangleGroup(infinity).dvalue()
546546
1/64
547547
"""

src/sage/modular/modform_hecketriangle/readme.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
sage: G.is_arithmetic()
3838
False
3939
sage: G.dvalue()
40-
e^(2*euler_gamma - 2*sqrt(6)*pi/(sqrt(3) + 3) + psi(19/24) + psi(17/24))
40+
e^(2*euler_gamma - 4*pi/(sqrt(6) + sqrt(2)) + psi(19/24) + psi(17/24))
4141
sage: AA(G.lam())
4242
1.9318516525781...?
4343

src/sage/symbolic/expression.pyx

+16
Original file line numberDiff line numberDiff line change
@@ -3605,6 +3605,22 @@ cdef class Expression(CommutativeRingElement):
36053605
sage: latex(ex)
36063606
\left(e^{\sqrt{x}}\right)^{x}
36073607
3608+
Test simplification of powers involving the reciprocal
3609+
logarithm of the (positive) base::
3610+
3611+
sage: 2^(1/log(2))
3612+
e
3613+
sage: 2^(x/log(2))
3614+
e^x
3615+
sage: 2^(-x^2/2/log(2))
3616+
e^(-1/2*x^2)
3617+
sage: x^(x/log(x))
3618+
x^(x/log(x))
3619+
sage: assume(x > 0)
3620+
sage: x^(x/log(x))
3621+
e^x
3622+
sage: forget()
3623+
36083624
Test base a Python numeric type::
36093625
36103626
sage: int(2)^x

src/sage/symbolic/pynac.pyx

+8
Original file line numberDiff line numberDiff line change
@@ -1100,6 +1100,14 @@ cdef bint py_is_real(object a) except +:
11001100
if type(a) is int or isinstance(a, Integer) or\
11011101
type(a) is long or type(a) is float:
11021102
return True
1103+
try:
1104+
P = parent_c(a)
1105+
if P.is_field() and P.is_finite():
1106+
return False
1107+
except NotImplementedError:
1108+
return False
1109+
except AttributeError:
1110+
pass
11031111
return py_imag(a) == 0
11041112

11051113
cdef bint py_is_prime(object n) except +:

src/sage/symbolic/ring.pyx

+8
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,14 @@ cdef class SymbolicRing(CommutativeRing):
293293
3*x^5*log(y)
294294
sage: t.operator(), t.operands()
295295
(<function mul_vararg at 0x...>, [x^5, log(y), 3])
296+
297+
Check that :trac:`20162` is fixed::
298+
299+
sage: k.<a> = GF(9)
300+
sage: SR(a).is_real()
301+
False
302+
sage: SR(a).is_positive()
303+
False
296304
"""
297305
cdef GEx exp
298306
if is_Expression(x):

0 commit comments

Comments
 (0)