Ticket #1168 (closed defect: fixed)

Opened 6 years ago

Last modified 5 years ago

asinh/acosh/atanh are only partially known to sage

Reported by: zimmerma Owned by: mhansen
Priority: major Milestone: sage-2.8.15
Component: calculus Keywords:
Cc: Work issues:
Report Upstream: Reviewers:
Authors: Merged in:
Dependencies: Stopgaps:

Description

sage: asinh(1)
<type 'exceptions.NameError'>: name 'asinh' is not defined
sage: asinh(x)
<type 'exceptions.NameError'>: name 'asinh' is not defined

but:

sage: integrate(1/sqrt(9+x^2), x)
asinh(x/3)
sage: (1.0).asinh()
0.881373587019543

The same holds for acosh and atanh.

Change History

comment:1 Changed 5 years ago by mhansen

  • Owner changed from was to mhansen
  • Status changed from new to assigned
  • Milestone changed from sage-2.9 to sage-2.8.15

This was fixed in an earlier patch.

sage: asinh(1)
asinh(1)
sage: asinh(x)
asinh(x)
sage: acosh(x)
acosh(x)
sage: atanh(x)
atanh(x)

comment:2 Changed 5 years ago by mhansen

  • Status changed from assigned to closed
  • Resolution set to fixed
Note: See TracTickets for help on using tickets.