I am so new in maple . I want to execute this this function on my formula as you can see in the below image :
As you can see every operations return zero .why ?
I am so new in maple
I am so new in maple . I want to execute this this function on my formula as you can see in the below image :
As you can see every operations return zero .why ?
I am so new in maple
Which version? Here are the inputs/outputs for Maple V or Maple 7, they should work with yours too:
diff(BesselI(a, z*r),r);
> (BesselI(a+1,z*r)+a/z/r*BesselI(a,z*r))*z
diff(BesselI(0, z*r),r) -> BesselI(1,z*r)*z
– gammatester
Aug 26 '16 at 10:13
zrwhen you meant to typez*r. Maple does not do implicit multiplication like that. – Jacques Carette Aug 27 '16 at 17:07zris interpreted as the variable $zr$ and not $z\cdot r$. This is, however, a nice and intended feature as we are then not restricted to single-letter variables and functions. – Therkel Aug 29 '16 at 08:31