Mathematica: Integration of Bessel Function & Exponent Function & Trigonometric Function

Cici

I have an integral with the form

Int[k_]:=Integrate[Exp[-x]xSin[x]BesselJ[0,k*x],{x,0,10}]

where BesselJ[0,kr] is the modified Bessel function of the first kind.

Now i can't get the directly answer from Mathematica..

I want to get the curve of Int[k], maybe a approximate is also acceptable..What can I do then?

vsoftco

Since the function doesn't have an antiderivative, your best bet is to numerically integrate. Example:

Int[k_] := NIntegrate[Exp[-x] x Sin[x] BesselJ[0, k x], {x, 0, 10}]
Plot[Int[k], {k, -5, 5}]

enter image description here

PS: I have edited your question, as you had some typos. You cannot use I as the symbol (it messes the complex i), and also when defining a function have to use := instead of =.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Mathematica: Integration of Bessel Function & Exponent Function & Trigonometric Function

From Dev

Vectorization - Sum and Bessel function

From Dev

Integrating bessel function with 2 variables

From Dev

Natural Logarithm of Bessel Function, Overflow

From Dev

Creating a Fast Exponent Function

From Dev

Using boost multiprecision with trigonometric function

From Dev

Which trigonometric function is most appropriate?

From Dev

finding function by points Mathematica

From Dev

Table and Sum function in Mathematica

From Dev

Compound Expressions in a Function in Mathematica

From Dev

Plotting sigmoid function in mathematica

From Java

Julia: How to change the type of an argument in the Bessel function?

From Dev

high order bessel function computation with large variables

From Dev

Matlab custom spherical bessel function NaN at 0

From Dev

Precision of calculations after exponent function

From Dev

Matlab - product-like simplification of trigonometric function

From Dev

Cost function based on inverse trigonometric functions

From Dev

Is it meaningful to store the result of a trigonometric function call?

From Dev

Trigonometric Function Graphing with python turtle.

From Dev

How to calculate trigonometric function sin & cos in xslt

From Dev

MapThread function from Mathematica in R

From Dev

Define function in Mathematica with previous output

From Dev

Wolfram Mathematica -- "For" Loop and Pure Function

From Dev

Max function for complex matrix in Mathematica

From Dev

Define function in Mathematica with previous output

From Dev

MapThread function from Mathematica in R

From Dev

Can not put the result of Bessel function into numpy's array

From Dev

How to solve a zero order Bessel function equation in Matlab?

From Dev

Error when instantiating bessel functions with Sympy lambdify function

Related Related

  1. 1

    Mathematica: Integration of Bessel Function & Exponent Function & Trigonometric Function

  2. 2

    Vectorization - Sum and Bessel function

  3. 3

    Integrating bessel function with 2 variables

  4. 4

    Natural Logarithm of Bessel Function, Overflow

  5. 5

    Creating a Fast Exponent Function

  6. 6

    Using boost multiprecision with trigonometric function

  7. 7

    Which trigonometric function is most appropriate?

  8. 8

    finding function by points Mathematica

  9. 9

    Table and Sum function in Mathematica

  10. 10

    Compound Expressions in a Function in Mathematica

  11. 11

    Plotting sigmoid function in mathematica

  12. 12

    Julia: How to change the type of an argument in the Bessel function?

  13. 13

    high order bessel function computation with large variables

  14. 14

    Matlab custom spherical bessel function NaN at 0

  15. 15

    Precision of calculations after exponent function

  16. 16

    Matlab - product-like simplification of trigonometric function

  17. 17

    Cost function based on inverse trigonometric functions

  18. 18

    Is it meaningful to store the result of a trigonometric function call?

  19. 19

    Trigonometric Function Graphing with python turtle.

  20. 20

    How to calculate trigonometric function sin & cos in xslt

  21. 21

    MapThread function from Mathematica in R

  22. 22

    Define function in Mathematica with previous output

  23. 23

    Wolfram Mathematica -- "For" Loop and Pure Function

  24. 24

    Max function for complex matrix in Mathematica

  25. 25

    Define function in Mathematica with previous output

  26. 26

    MapThread function from Mathematica in R

  27. 27

    Can not put the result of Bessel function into numpy's array

  28. 28

    How to solve a zero order Bessel function equation in Matlab?

  29. 29

    Error when instantiating bessel functions with Sympy lambdify function

HotTag

Archive