Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/sage/interacts/calculus.py
4045 views
1
"""
2
Interacts for Calculus
3
4
AUTHORS:
5
6
- Harald Schilly (2011-01-16): initial version (#9623) partially based on work by Lauri Ruotsalainen
7
8
"""
9
10
#*****************************************************************************
11
# Copyright (C) 2011 Harald Schilly <[email protected]>
12
#
13
# Distributed under the terms of the GNU General Public License (GPL)
14
# as published by the Free Software Foundation; either version 2 of
15
# the License, or (at your option) any later version.
16
# http://www.gnu.org/licenses/
17
#*****************************************************************************
18
19
from library import taylor_polynomial
20
from library import definite_integral
21
from library import function_derivative, difference_quotient, quadratic_equation
22
from library import trigonometric_properties_triangle
23
from library import secant_method, newton_method, trapezoid_integration, simpson_integration, bisection_method
24
from library import riemann_sum
25
from library import function_tool
26
27