Bessel function derivative in sum

In summary, the conversation was about an issue with using the modified Bessel function and its derivative in a sum. The error was caused by a typo and a delayed definition. Once the delayed definition was changed to an immediate one, the issue was resolved.
  • #1
member 428835
Hi PF!

I'm trying to put the first derivative of the modified Bessel function of the first kind evaluated at some point say ##\alpha## in a sum where the ##ith## function is part of the index. What I have so far is
Code:
n=3;
alpha = 2;
DBesselI[L_, x_] := D[BesselI[L, x], {x, 1}]
Sum[BesselI[L, alpha], {L, 1, n}]
But I don't think this is working. Any help would be awesome!
 
Physics news on Phys.org
  • #2
You are using the modified Bessel function, not its derivative that you defined in the previous line, in the sum ...
 
  • #3
Ahh shoot,
Orodruin said:
You are using the modified Bessel function, not its derivative that you defined in the previous line, in the sum ...
Shoot, this is a typo on my part copying into PF. Instead if I use
Code:
n=3;
alpha = 2;
DBesselI[L_, x_] := D[BesselI[L, x], {x, 1}]
Sum[DBesselI[L, alpha], {L, 1, n}]
I still get an error. In fact, even if I simply try evaluating
Code:
DBesselI[1, alpha]
I receive an error. Any ideas?
 
  • #4
It might help if you quote the error message.
 
  • #5
Orodruin said:
It might help if you quote the error message.
It reads "2 is not a valid variable." and then iterates "##\partial_{\{2,1\}}BesselI[1,3]##". Any ideas?
 
  • #6
Last edited:
  • Like
Likes member 428835
  • #7
Thanks so much! This actually makes a lot of sense!
 

1. What is a Bessel function derivative in sum?

A Bessel function derivative in sum is a mathematical expression that involves the derivative of a Bessel function, which is a special type of mathematical function that appears in many areas of science and engineering. The sum refers to the summation of multiple terms in the expression.

2. What is the purpose of using a Bessel function derivative in sum?

The Bessel function derivative in sum is useful for solving differential equations that involve Bessel functions. It can also be used for approximating other functions and for studying the behavior of physical systems.

3. How do you calculate the Bessel function derivative in sum?

The Bessel function derivative in sum can be calculated using a series expansion, which involves summing an infinite number of terms. This can be done manually or using computer software such as Mathematica or MATLAB.

4. What are some real-world applications of Bessel function derivative in sum?

Bessel function derivative in sum has many applications in physics and engineering. It is used in the study of wave phenomena, such as sound and electromagnetic waves, as well as in solving problems related to heat transfer and fluid dynamics.

5. Are there any limitations or special considerations when using Bessel function derivative in sum?

One limitation of using Bessel function derivative in sum is that the series expansion may not converge for certain values of the input parameters. Additionally, caution must be taken when dealing with complex numbers, as the Bessel function can have complex values. Special techniques, such as the use of contour integration, may be needed in these cases.

Similar threads

Replies
2
Views
1K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
8
Views
1K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
2
Views
1K
Replies
3
Views
2K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
10
Views
2K
  • Calculus and Beyond Homework Help
Replies
8
Views
1K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
7
Views
2K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
5
Views
2K
  • Calculus
Replies
1
Views
1K
Back
Top