Solving Integration Problem in Mathematica 6 for Beginners

  • Context: Mathematica 
  • Thread starter Thread starter shehry1
  • Start date Start date
  • Tags Tags
    Mathematica
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 3K views
shehry1
Messages
39
Reaction score
0
A beginner to Mathematica's question:

I try to make the following integration in mathematica 6 and I get back the same expression with the integration symbol next to it. Why?
Integrate[exp[-k*z]*BesselJ[0, k*a]* BesselJ[1, k*a], {k, 0, Infinity}]

Integrate[Sin[k], {k, 0, 1}] however gives the correct answer.

Not that it matters, the equation comes in one of Jackson's problems and I have seen solutions on the net that seem to make a jump to the solution saying 'using Mathematica...'
 
Physics news on Phys.org
shehry1 said:
A beginner to Mathematica's question:

I try to make the following integration in mathematica 6 and I get back the same expression with the integration symbol next to it. Why?
Integrate[exp[-k*z]*BesselJ[0, k*a]* BesselJ[1, k*a], {k, 0, Infinity}]

Integrate[Sin[k], {k, 0, 1}] however gives the correct answer.

Not that it matters, the equation comes in one of Jackson's problems and I have seen solutions on the net that seem to make a jump to the solution saying 'using Mathematica...'

Try correcting the expression. In particular, the Mathematica command for [itex]e^x[/itex] is

Code:
Exp[x]

and not

Code:
exp[x]