#8321: numerical integration with arbitrary precision
----------------------------------------------+-----------------------------
Reporter: burcin | Owner:
Type: defect | Status: needs_work
Priority: major | Milestone: sage-5.0
Component: symbolics | Resolution:
Keywords: numerics,integration, sd32 | Work issues:
Report Upstream: N/A | Reviewers:
Authors: Stefan Reiterer | Merged in:
Dependencies: | Stopgaps:
----------------------------------------------+-----------------------------
Comment (by zimmerma):
Sage 4.8 can now integrate the formula in this ticket, thus I propose to
change it to:
{{{
sage: h = integral(sin(sin(x)), (x, 1, 2)); h
integrate(sin(sin(x)), x, 1, 2)
sage: h.n()
0.81644995512331231
sage: h.n(digits=14)
0.81644995512331231
sage: h.n(digits=600)
0.81644995512331231
sage: h.n(digits=600) == h.n(digits=14)
True
sage: h.n(prec=50) == h.n(prec=1000)
True
}}}
Paul
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/8321#comment:51>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.