Spaces:
Sleeping
Sleeping
File size: 13,969 Bytes
b66f126 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 | .. _calculus:
==========
Calculus
==========
This section covers how to do basic calculus tasks such as derivatives,
integrals, limits, and series expansions in SymPy. If you are not familiar
with the math of any part of this section, you may safely skip it.
>>> from sympy import *
>>> x, y, z = symbols('x y z')
>>> init_printing(use_unicode=True)
.. _tutorial-derivatives:
Derivatives
===========
To take derivatives, use the :func:`~sympy.core.function.diff` function.
>>> diff(cos(x), x)
-sin(x)
>>> diff(exp(x**2), x)
โ 2โ
โx โ
2โ
xโ
โฏ
:func:`~sympy.core.function.diff` can take multiple derivatives at once. To
take multiple derivatives, pass the variable as many times as you wish to
following find the third derivative of `x^4`.
>>> diff(x**4, x, x, x)
24โ
x
>>> diff(x**4, x, 3)
24โ
x
You can also take derivatives with respect to many variables at once. Just
pass each derivative in order, using the same syntax as for single variable
derivatives. For example, each of the following will compute
`\frac{\partial^7}{\partial x\partial y^2\partial z^4} e^{x y z}`.
>>> expr = exp(x*y*z)
>>> diff(expr, x, y, y, z, z, z, z)
3 2 โ 3 3 3 2 2 2 โ xโ
yโ
z
x โ
y โ
โx โ
y โ
z + 14โ
x โ
y โ
z + 52โ
xโ
yโ
z + 48โ โ
โฏ
>>> diff(expr, x, y, 2, z, 4)
3 2 โ 3 3 3 2 2 2 โ xโ
yโ
z
x โ
y โ
โx โ
y โ
z + 14โ
x โ
y โ
z + 52โ
xโ
yโ
z + 48โ โ
โฏ
>>> diff(expr, x, y, y, z, 4)
3 2 โ 3 3 3 2 2 2 โ xโ
yโ
z
x โ
y โ
โx โ
y โ
z + 14โ
x โ
y โ
z + 52โ
xโ
yโ
z + 48โ โ
โฏ
:func:`~sympy.core.function.diff` can also be called as a method. The two ways
of calling :func:`~sympy.core.function.diff` are exactly the same, and are
provided only for convenience.
>>> expr.diff(x, y, y, z, 4)
3 2 โ 3 3 3 2 2 2 โ xโ
yโ
z
x โ
y โ
โx โ
y โ
z + 14โ
x โ
y โ
z + 52โ
xโ
yโ
z + 48โ โ
โฏ
To create an unevaluated derivative, use the ``Derivative`` class. It has the
same syntax as :func:`~sympy.core.function.diff`.
>>> deriv = Derivative(expr, x, y, y, z, 4)
>>> deriv
7
โ โ xโ
yโ
zโ
โโโโโโโโโโโโฏ โ
4 2
โz โy โx
To evaluate an unevaluated derivative, use the
:func:`~sympy.core.basic.Basic.doit` method.
>>> deriv.doit()
3 2 โ 3 3 3 2 2 2 โ xโ
yโ
z
x โ
y โ
โx โ
y โ
z + 14โ
x โ
y โ
z + 52โ
xโ
yโ
z + 48โ โ
โฏ
These unevaluated objects are useful for delaying the evaluation of the
derivative, or for printing purposes. They are also used when SymPy does not
know how to compute the derivative of an expression (for example, if it
contains an undefined function, which are described in the :ref:`Solving
Differential Equations <tutorial-dsolve>` section).
Derivatives of unspecified order can be created using tuple ``(x, n)`` where
``n`` is the order of the derivative with respect to ``x``.
>>> m, n, a, b = symbols('m n a b')
>>> expr = (a*x + b)**m
>>> expr.diff((x, n))
n
โ โ mโ
โโโโ(aโ
x + b) โ
n
โx
Integrals
=========
To compute an integral, use the :func:`~sympy.integrals.integrals.integrate`
function. There are two kinds of integrals, definite and indefinite. To
compute an indefinite integral, that is, an antiderivative, or primitive, just
pass the variable after the expression.
>>> integrate(cos(x), x)
sin(x)
Note that SymPy does not include the constant of integration. If you want it,
you can add one yourself, or rephrase your problem as a differential equation
and use :func:`~sympy.solvers.ode.dsolve` to solve it, which does add the
constant (see :ref:`tutorial-dsolve`).
.. sidebar:: Quick Tip
`\infty` in SymPy is ``oo`` (that's the lowercase letter "oh" twice). This
is because ``oo`` looks like `\infty`, and is easy to type.
To compute a definite integral, pass the argument ``(integration_variable,
lower_limit, upper_limit)``. For example, to compute
.. math::
\int_0^\infty e^{-x}\,dx,
we would do
>>> integrate(exp(-x), (x, 0, oo))
1
As with indefinite integrals, you can pass multiple limit tuples to perform a
multiple integral. For example, to compute
.. math::
\int_{-\infty}^{\infty}\int_{-\infty}^{\infty} e^{- x^{2} - y^{2}}\, dx\, dy,
do
>>> integrate(exp(-x**2 - y**2), (x, -oo, oo), (y, -oo, oo))
ฯ
If :func:`~sympy.integrals.integrals.integrate` is unable to compute an
integral, it returns an unevaluated ``Integral`` object.
>>> expr = integrate(x**x, x)
>>> print(expr)
Integral(x**x, x)
>>> expr
โ
โฎ x
โฎ x dx
โก
As with ``Derivative``, you can create an unevaluated integral using
``Integral``. To later evaluate this integral, call
:func:`~sympy.integrals.integrals.Integral.doit`.
>>> expr = Integral(log(x)**2, x)
>>> expr
โ
โฎ 2
โฎ log (x) dx
โก
>>> expr.doit()
2
xโ
log (x) - 2โ
xโ
log(x) + 2โ
x
:func:`~sympy.integrals.integrals.integrate` uses powerful algorithms that are
always improving to compute both definite and indefinite integrals, including
heuristic pattern matching type algorithms, a partial implementation of the
`Risch algorithm <https://en.wikipedia.org/wiki/Risch_algorithm>`_, and an
algorithm using
`Meijer G-functions <https://en.wikipedia.org/wiki/Meijer_g-function>`_ that is
useful for computing integrals in terms of special functions, especially
definite integrals. Here is a sampling of some of the power of
:func:`~sympy.integrals.integrals.integrate`.
>>> integ = Integral((x**4 + x**2*exp(x) - x**2 - 2*x*exp(x) - 2*x -
... exp(x))*exp(x)/((x - 1)**2*(x + 1)**2*(exp(x) + 1)), x)
>>> integ
โ
โฎ โ 4 2 x 2 x xโ x
โฎ โx + x โ
โฏ - x - 2โ
xโ
โฏ - 2โ
x - โฏ โ โ
โฏ
โฎ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ dx
โฎ 2 2 โ x โ
โฎ (x - 1) โ
(x + 1) โ
โโฏ + 1โ
โก
>>> integ.doit()
x
โ x โ โฏ
logโโฏ + 1โ + โโโโโโ
2
x - 1
>>> integ = Integral(sin(x**2), x)
>>> integ
โ
โฎ โ 2โ
โฎ sinโx โ dx
โก
>>> integ.doit()
โโ2โ
xโ
3โ
โ2โ
โฯโ
Sโโโโโโโ
ฮ(3/4)
โ โฯ โ
โโโโโโโโโโโโโโโโโโโโโโ
8โ
ฮ(7/4)
>>> integ = Integral(x**y*exp(-x), (x, 0, oo))
>>> integ
โ
โ
โฎ y -x
โฎ x โ
โฏ dx
โก
0
>>> integ.doit()
โง ฮ(y + 1) for re(y) > -1
โช
โชโ
โชโ
โจโฎ y -x
โชโฎ x โ
โฏ dx otherwise
โชโก
โช0
โฉ
This last example returned a ``Piecewise`` expression because the integral
does not converge unless `\Re(y) > -1.`
Numeric Integration
===================
Numeric integration is a method employed in mathematical analysis to estimate
the definite integral of a function across a simplified range. SymPy not only
facilitates symbolic integration but also provides support for
numeric integration. It leverages the precision capabilities of the ``mpmath``
library to enhance the accuracy of numeric integration calculations.
>>> from sympy import Integral, Symbol, sqrt
>>> x = Symbol('x')
>>> integral = Integral(sqrt(2)*x, (x, 0, 1))
>>> integral
1
โ
โฎ โ2โ
x dx
โก
0
>>> integral.evalf()
0.707106781186548
To compute the integral with a specified precision:
>>> integral.evalf(50)
0.70710678118654752440084436210484903928483593768847
Numeric integration becomes a viable approach in situations where symbolic
integration is impractical or impossible. This method allows for the
computation of integrals through numerical techniques, even when dealing with
infinite intervals or integrands:
>>> Integral(exp(-(x ** 2)), (x, -oo, oo)).evalf()
1.77245385090552
>>> Integral(1 / sqrt(x), (x, 0, 1)).evalf()
2.00000000000000
Limits
======
SymPy can compute symbolic limits with the :func:`~sympy.core.expr.Expr.limit`
function. The syntax to compute
.. math::
\lim_{x\to x_0} f(x)
is ``limit(f(x), x, x0)``.
>>> limit(sin(x)/x, x, 0)
1
:func:`~sympy.core.expr.Expr.limit` should be used instead of
:func:`~sympy.core.basic.Basic.subs` whenever the point of evaluation is a
singularity. Even though SymPy has objects to represent `\infty`, using them
for evaluation is not reliable because they do not keep track of things like
rate of growth. Also, things like `\infty - \infty` and
`\frac{\infty}{\infty}` return `\mathrm{nan}` (not-a-number). For example
>>> expr = x**2/exp(x)
>>> expr.subs(x, oo)
nan
>>> limit(expr, x, oo)
0
Like ``Derivative`` and ``Integral``, :func:`~sympy.core.expr.Expr.limit`
has an unevaluated counterpart, ``Limit``. To evaluate it, use
:func:`~sympy.series.limits.Limit.doit`.
>>> expr = Limit((cos(x) - 1)/x, x, 0)
>>> expr
โcos(x) - 1โ
lim โโโโโโโโโโโโ
xโโ0โบโ x โ
>>> expr.doit()
0
To evaluate a limit at one side only, pass ``'+'`` or ``'-'`` as a fourth
argument to :func:`~sympy.core.expr.Expr.limit`. For example, to compute
.. math::
\lim_{x\to 0^+}\frac{1}{x},
do
>>> limit(1/x, x, 0, '+')
โ
As opposed to
>>> limit(1/x, x, 0, '-')
-โ
Series Expansion
================
SymPy can compute asymptotic series expansions of functions around a point. To
compute the expansion of `f(x)` around the point `x = x_0` terms of order
`x^n`, use ``f(x).series(x, x0, n)``. ``x0`` and ``n`` can be omitted, in
which case the defaults ``x0=0`` and ``n=6`` will be used.
>>> expr = exp(sin(x))
>>> expr.series(x, 0, 4)
2
x โ 4โ
1 + x + โโ + Oโx โ
2
The `O\left(x^4\right)` term at the end represents the Landau order term at
`x=0` (not to be confused with big O notation used in computer science, which
generally represents the Landau order term at `x` where `x \rightarrow \infty`)
. It means that all x terms with power greater than or equal to `x^4` are
omitted. Order terms can be created and manipulated outside of ``series``.
They automatically absorb higher order terms.
>>> x + x**3 + x**6 + O(x**4)
3 โ 4โ
x + x + Oโx โ
>>> x*O(1)
O(x)
If you do not want the order term, use the
:func:`~sympy.core.expr.Expr.removeO` method.
>>> expr.series(x, 0, 4).removeO()
2
x
โโ + x + 1
2
The ``O`` notation supports arbitrary limit points (other than 0):
>>> exp(x - 6).series(x, x0=6)
2 3 4 5
(x - 6) (x - 6) (x - 6) (x - 6) โ 6 โ
-5 + โโโโโโโโ + โโโโโโโโ + โโโโโโโโ + โโโโโโโโ + x + Oโ(x - 6) ; x โ 6โ
2 6 24 120
.. _calculus-finite-differences:
Finite differences
==================
So far we have looked at expressions with analytic derivatives
and primitive functions respectively. But what if we want to have an
expression to estimate a derivative of a curve for which we lack a
closed form representation, or for which we don't know the functional
values for yet. One approach would be to use a finite difference
approach.
The simplest way the differentiate using finite differences is to use
the :func:`~sympy.calculus.finite_diff.differentiate_finite` function:
>>> f, g = symbols('f g', cls=Function)
>>> differentiate_finite(f(x)*g(x))
-f(x - 1/2)โ
g(x - 1/2) + f(x + 1/2)โ
g(x + 1/2)
If you already have a ``Derivative`` instance, you can use the
:func:`~sympy.core.function.Derivative.as_finite_difference` method to generate
approximations of the derivative to arbitrary order:
>>> f = Function('f')
>>> dfdx = f(x).diff(x)
>>> dfdx.as_finite_difference()
-f(x - 1/2) + f(x + 1/2)
here the first order derivative was approximated around x using a
minimum number of points (2 for 1st order derivative) evaluated
equidistantly using a step-size of 1. We can use arbitrary steps
(possibly containing symbolic expressions):
>>> f = Function('f')
>>> d2fdx2 = f(x).diff(x, 2)
>>> h = Symbol('h')
>>> d2fdx2.as_finite_difference([-3*h,-h,2*h])
f(-3โ
h) f(-h) 2โ
f(2โ
h)
โโโโโโโ - โโโโโ + โโโโโโโโ
2 2 2
5โ
h 3โ
h 15โ
h
If you are just interested in evaluating the weights, you can do so
manually:
>>> finite_diff_weights(2, [-3, -1, 2], 0)[-1][-1]
[1/5, -1/3, 2/15]
note that we only need the last element in the last sublist
returned from ``finite_diff_weights``. The reason for this is that
the function also generates weights for lower derivatives and
using fewer points (see the documentation of ``finite_diff_weights``
for more details).
If using ``finite_diff_weights`` directly looks complicated, and the
:func:`~sympy.core.function.Derivative.as_finite_difference` method of
``Derivative`` instances is not flexible enough, you can use
``apply_finite_diff`` which takes ``order``, ``x_list``, ``y_list`` and ``x0``
as parameters:
>>> x_list = [-3, 1, 2]
>>> y_list = symbols('a b c')
>>> apply_finite_diff(1, x_list, y_list, 0)
3โ
a b 2โ
c
- โโโ - โ + โโโ
20 4 5
|