Ask Your Question
1

stuck with numerical integration

asked 4 years ago

polka125 gravatar image

When I try something like

integral_numerical(bessel_I(0, x), (x, 0, 1))

I get

TypeError: Cannot evaluate symbolic expression to a numeric value.

So my question is: how to integrate numerically special functions?

Preview: (hide)

3 Answers

Sort by » oldest newest most voted
2

answered 4 years ago

Sébastien gravatar image

According to the documentation of integral_numerical, the correct syntax is:

sage: integral_numerical(bessel_I(0,x), 0, 1)
(1.0865210970235897, 1.206280738656573e-14)
Preview: (hide)
link

Comments

Thank you! This answers my question. I have to read the documentation more carefully

polka125 gravatar imagepolka125 ( 4 years ago )
1

answered 4 years ago

slelievre gravatar image

Using a lambda function also works:

sage: integral_numerical(lambda x: bessel_I(0, x), (0, 1))
(1.0865210970235897, 1.206280738656573e-14)

Besides numerical integration, lambda functions are often helpful for plotting.

Preview: (hide)
link
1

answered 4 years ago

Juanjo gravatar image

In addition to integral_numerical, it is possible to use the nintegrate method:

sage: bessel_I(0,x).nintegrate(x, 0, 1)
(1.08652109702359, 1.206280738656574e-14, 21, 0)

The output provides the value of the integral, an error estimate, the times that the function is evaluated and an error code (0 means "no problem encountered"). Write

sage: sage.calculus.calculus.nintegral?

for more information.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 4 years ago

Seen: 363 times

Last updated: May 03 '20