Return to computing page for the first course APMA0330
Return to computing page for the second course APMA0340
Return to Mathematica tutorial for the first course APMA0330
Return to Mathematica tutorial for the second course APMA0340
Return to Mathematica tutorial for the third course APMA0360
Return to the main page for the first course APMA0330
Return to the main page for the second course APMA0340
Return to the main page for the third course APMA0360
Return to Part VII of the course APMA0340
Introduction to Linear Algebra with Mathematica
Some differential equations encountered in engineering, despite of their similarity in appearance to Bessel's equations, are
not of the standard forms. Such differential equations can be solved after they are transformed into standard Bessel's
equations via proper variable substitutions. It is known that the general solutions of the standard Bessel's equation of order ν:
Example 3:
Let us consider the famous Airy's equation
\[
y'' - x\,y = 0 .
\]
We set y = uxδ, then we get
\[
x^2 u'' + 2\delta x\,u' - \left[ x^3 -\delta \left( \delta -1 \right) \right] u = 0 .
\]
If we set δ = ½, we reduce it to
\[
x^2 u'' + x\,u' + \left( x^3 + \frac{1}{4} \right) u = 0 .
\]
Next, we rewrite it as
\[
x^2 u'' + x\,u' + \left[ \left( {\bf j}\,x^{1/2} \right)^2 - \left( \frac{1}{2} \right)^2 \right] u = 0 ,
\]
where j is the imaginary unit on the complex plane ℂ, so j² = −1. The general solution of the Airy equation becomes
\[
y(x) = c_1 \sqrt{x} \, J_{1/3} \left( \frac{2}{3}\,{\bf j}\,x^{3/2} \right) + c_2 \sqrt{x} \, Y_{1/3} \left( \frac{2}{3}\,{\bf j}\,x^{3/2} \right)
\]
We check with Mathematica:
DSolve[y''[x] - x*y[x] == 0, y[x], x]
{{y[x] -> AiryAi[x] C[1] + AiryBi[x] C[2]}}
■
End of Example 3
Bowman, F., Introduction to Bessel Functions. Dover Publication Inc., New York, 1958.
Bayman, B. F., “A generalization of the spherical harmonic gradient formula”, J. Math. Phys. 19 (1978), 2558–2562
Watson, G.N., A Treatise on the Theory of Bessel Functions, Cambridge University Press; 2nd edition (August 1, 1995). ISBN-13 : 978-0521483919
Return to Mathematica page
Return to the main page (APMA0340)
Return to the Part 1 Matrix Algebra
Return to the Part 2 Linear Systems of Ordinary Differential Equations
Return to the Part 3 Non-linear Systems of Ordinary Differential Equations
Return to the Part 4 Numerical Methods
Return to the Part 5 Fourier Series
Return to the Part 6 Partial Differential Equations
Return to the Part 7 Special Functions