Skip to content

Commit d7afc85

Browse files
Release Managervbraun
Release Manager
authored andcommitted
Trac #19336: typo in lambert_w._print_latex_()
From https://groups.google.com/forum/?hl=en#!topic/sage- support/bjrk5270wEE LaTeX output is defect. this is probably {{{ diff --git a/src/sage/functions/log.py b/src/sage/functions/log.py index cc59437..17241ad 100644 --- a/src/sage/functions/log.py +++ b/src/sage/functions/log.py @@ -766,8 +766,8 @@ class Function_lambert_w(BuiltinFunction): \operatorname{W_{1}}(x) """ if n == 0: - return r"\operatorname{W_0}(%s)" % z + return r"\operatorname{W_0}({%s})" % z else: - return r"\operatorname{W_{%s}}(%s)" % (n, z) + return r"\operatorname{W_{%s}}({%s})" % (n, z) lambert_w = Function_lambert_w() }}} URL: http://trac.sagemath.org/19336 Reported by: rws Ticket author(s): Frédéric Chapoton Reviewer(s): Ralf Stephan
2 parents 4e1ab69 + a87b149 commit d7afc85

File tree

1 file changed

+26
-18
lines changed

1 file changed

+26
-18
lines changed

src/sage/functions/log.py

+26-18
Original file line numberDiff line numberDiff line change
@@ -565,8 +565,10 @@ def __init__(self):
565565
0.567143290409784
566566
"""
567567
BuiltinFunction.__init__(self, "lambert_w", nargs=2,
568-
conversions={'mathematica':'ProductLog',
569-
'maple':'LambertW'})
568+
conversions={'mathematica': 'ProductLog',
569+
'maple': 'LambertW',
570+
'matlab': 'lambertw',
571+
'maxima': 'generalized_lambert_w'})
570572

571573
def __call__(self, *args, **kwds):
572574
r"""
@@ -718,21 +720,25 @@ def _maxima_init_evaled_(self, n, z):
718720
sage: lambert_w(0, x)._maxima_()
719721
lambert_w(_SAGE_VAR_x)
720722
sage: lambert_w(1, x)._maxima_()
721-
Traceback (most recent call last):
722-
...
723-
NotImplementedError: Non-principal branch lambert_w[1](x) is not implemented in Maxima
723+
generalized_lambert_w(1,_SAGE_VAR_x)
724+
725+
TESTS::
726+
727+
sage: lambert_w(x)._maxima_()._sage_()
728+
lambert_w(x)
729+
sage: lambert_w(2, x)._maxima_()._sage_()
730+
lambert_w(2, x)
724731
"""
732+
if isinstance(z, str):
733+
maxima_z = z
734+
elif hasattr(z, '_maxima_init_'):
735+
maxima_z = z._maxima_init_()
736+
else:
737+
maxima_z = str(z)
725738
if n == 0:
726-
if isinstance(z,str):
727-
maxima_z=z
728-
elif hasattr(z,'_maxima_init_'):
729-
maxima_z=z._maxima_init_()
730-
else:
731-
maxima_z=str(z)
732739
return "lambert_w(%s)" % maxima_z
733740
else:
734-
raise NotImplementedError("Non-principal branch lambert_w[%s](%s) is not implemented in Maxima" % (n, z))
735-
741+
return "generalized_lambert_w(%s,%s)" % (n, maxima_z)
736742

737743
def _print_(self, n, z):
738744
"""
@@ -759,15 +765,17 @@ def _print_latex_(self, n, z):
759765
EXAMPLES::
760766
761767
sage: latex(lambert_w(1))
762-
\operatorname{W_0}(1)
768+
\operatorname{W}({1})
763769
sage: latex(lambert_w(0,x))
764-
\operatorname{W_0}(x)
770+
\operatorname{W}({x})
765771
sage: latex(lambert_w(1,x))
766-
\operatorname{W_{1}}(x)
772+
\operatorname{W_{1}}({x})
773+
sage: latex(lambert_w(1,x+exp(x)))
774+
\operatorname{W_{1}}({x + e^{x}})
767775
"""
768776
if n == 0:
769-
return r"\operatorname{W_0}(%s)" % z
777+
return r"\operatorname{W}({%s})" % z._latex_()
770778
else:
771-
return r"\operatorname{W_{%s}}(%s)" % (n, z)
779+
return r"\operatorname{W_{%s}}({%s})" % (n, z._latex_())
772780

773781
lambert_w = Function_lambert_w()

0 commit comments

Comments
 (0)