Imported Upstream version 1.51.0
[platform/upstream/boost.git] / libs / math / doc / sf_and_dist / bessel_introduction.qbk
1
2 [section:bessel_over Bessel Function Overview]
3
4 [h4 Ordinary Bessel Functions]
5
6 Bessel Functions are solutions to Bessel's ordinary differential
7 equation:
8
9 [equation bessel1]
10
11 where [nu][space] is the /order/ of the equation, and may be an arbitrary
12 real or complex number, although integer orders are the most common occurrence.
13
14 This library supports either integer or real orders.
15
16 Since this is a second order differential equation, there must be two
17 linearly independent solutions, the first of these is denoted J[sub v][space]
18 and known as a Bessel function of the first kind:
19
20 [equation bessel2]
21
22 This function is implemented in this library as __cyl_bessel_j.
23
24 The second solution is denoted either Y[sub v][space] or N[sub v][space]
25 and is known as either a Bessel Function of the second kind, or as a
26 Neumann function:
27
28 [equation bessel3]
29
30 This function is implemented in this library as __cyl_neumann.
31
32 The Bessel functions satisfy the recurrence relations:
33
34 [equation bessel4]
35
36 [equation bessel5]
37
38 Have the derivatives:
39
40 [equation bessel6]
41
42 [equation bessel7]
43
44 Have the Wronskian relation:
45
46 [equation bessel8]
47
48 and the reflection formulae:
49
50 [equation bessel9]
51
52 [equation bessel10]
53
54
55 [h4 Modified Bessel Functions]
56
57 The Bessel functions are valid for complex argument /x/, and an important
58 special case is the situation where /x/ is purely imaginary: giving a real
59 valued result.  In this case the functions are the two linearly 
60 independent solutions to the modified Bessel equation:
61
62 [equation mbessel1]
63
64 The solutions are known as the modified Bessel functions of the first and 
65 second kind (or occasionally as the hyperbolic Bessel functions of the first
66 and second kind).  They are denoted I[sub v][space] and K[sub v][space]
67 respectively:
68
69 [equation mbessel2]
70
71 [equation mbessel3]
72
73 These functions are implemented in this library as __cyl_bessel_i and
74 __cyl_bessel_k respectively.
75
76 The modified Bessel functions satisfy the recurrence relations:
77
78 [equation mbessel4]
79
80 [equation mbessel5]
81
82 Have the derivatives:
83
84 [equation mbessel6]
85
86 [equation mbessel7]
87
88 Have the Wronskian relation:
89
90 [equation mbessel8]
91
92 and the reflection formulae:
93
94 [equation mbessel9]
95
96 [equation mbessel10]
97
98 [h4 Spherical Bessel Functions]
99
100 When solving the Helmholtz equation in spherical coordinates by 
101 separation of variables, the radial equation has the form:
102
103 [equation sbessel1]
104
105 The two linearly independent solutions to this equation are called the 
106 spherical Bessel functions j[sub n][space] and y[sub n][space], and are related to the 
107 ordinary Bessel functions J[sub n][space] and Y[sub n][space] by:
108
109 [equation sbessel2]
110
111 The spherical Bessel function of the second kind y[sub n][space]
112 is also known as the spherical Neumann function n[sub n].
113
114 These functions are implemented in this library as __sph_bessel and
115 __sph_neumann.
116
117 [endsect]
118
119 [/ 
120   Copyright 2006 John Maddock, Paul A. Bristow and Xiaogang Zhang.
121   Distributed under the Boost Software License, Version 1.0.
122   (See accompanying file LICENSE_1_0.txt or copy at
123   http://www.boost.org/LICENSE_1_0.txt).
124 ]