Bessel functions appear commonly in problems with cylindrical geometry. For example the radial profile of normal vibrational modes of a drumhead is described by Bessel functions. Note that Maple knows this Bessel function as BesselJ(1,x).
When you are satisfied with your result, copy your answer from the Maple window to the file lab06. Please provide both input and output lines for the results you want to hand in.
There are two simple ways to do this. With the first way, select File->Export as Text to create a text file of your Maple session. You may then open the text file in emacs and edit it to your satisfaction. In the second way, just use your mouse to copy from the Maple window and paste into your emacs window. In the Maple window, use Ctrl-C to copy a highlighted region. You may need to copy input and output separately.
Hint: For this exercise you need to evaluate the derivative of the
Bessel function. Maple insists on being much more precise about this
procedure than most scientists are used to. First you have to find
the function that is the derivative of the Bessel function. Then you
have to evaluate the derivative function at the desired point. There
are two ways to do this in Maple, namely, with diff or
D for the derivative.
f := x -> BesselJ(1,x); g := x -> evalf( D(f)(x) );
or
f := x -> BesselJ(1,x); g := x -> evalf( subs(y=x, diff(BesselJ(1,y),y) ) );
You don't need to write a Maple procedure for this. Use the same
technique you used for the fixed point method, i.e. write an
assignment statement that gives the new Newton Raphson estimate
of x based on the old estimate. Then repeat by hand until you
are satisfied that it has converged.
In the answer file, show the Maple commands you used and the result you found.
Note that with fsolve, you can specify a range of x values in which to search for the root. Check it out with ?fsolve.