1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
//! Gaussian quadrature rules for numerical integration.
//!
//! Gaussian quadrature approximates $\int f(x)\\,w(x)\\,dx$ by evaluating $f$ at $n$
//! carefully chosen nodes $x_i$ and forming a weighted sum $\sum_{i=1}^n w_i f(x_i)$.
//! The nodes are zeros of the corresponding orthogonal polynomial; the weights are derived
//! from the Golub-Welsch algorithm (eigenvalues of the Jacobi tridiagonal matrix).
use ;
use ;
use crate;
/// Shared skeleton for fixed-domain Gauss quadrature rules.
///
/// Validates `n`, computes nodes/weights via `roots_fn`, then returns
/// $\sum_i w_i f(x_i)$.
/// Approximate $\int_a^b f(x)\\,dx$ using $n$-point Gauss-Legendre quadrature.
///
/// The integral is mapped to $[-1, 1]$ via the linear change of variables
/// $x = \frac{b-a}{2}\\,t + \frac{b+a}{2}$, giving
///
/// $$\int_a^b f(x)\\,dx = \frac{b-a}{2}\int_{-1}^{1} f\left(\tfrac{b-a}{2}t+\tfrac{b+a}{2}\right)dt \approx \frac{b-a}{2}\sum_{i=1}^{n} w_i\\, g(t_i)$$
///
/// where $t_i$ and $w_i$ are the Gauss-Legendre nodes and weights on $[-1, 1]$.
///
/// # Arguments
///
/// * `func` - Integrand $f$, a function of a single variable.
/// * `lower_limit` - Lower limit of integration $a$.
/// * `upper_limit` - Upper limit of integration $b$.
/// * `n` - Number of quadrature points (polynomial order).
///
/// # Examples
///
/// ```
/// use integrate::gauss_quadrature::legendre_rule;
///
/// let square = |x: f64| x * x;
///
/// let a = 0.0;
/// let b = 1.0;
///
/// let num_steps: usize = 1_000_000;
///
/// let integral = legendre_rule(square, a, b, num_steps);
/// ```
///
/// # Resources
///
/// - Davis, P. J. & Rabinowitz, P., *Methods of Numerical Integration*, 2nd ed., Academic Press (1984).
/// - Press et al., *Numerical Recipes in C*, Chapter 4.
/// Approximate $\int_0^\infty f(x)\\,e^{-x}\\,dx$ using $n$-point Gauss-Laguerre quadrature.
///
/// $$\int_0^\infty f(x)\\,e^{-x}\\,dx \approx \sum_{i=1}^{n} w_i\\, f(x_i)$$
///
/// where $x_i$ are the zeros of the $n$-th Laguerre polynomial $L_n(x)$ and the
/// weights are
///
/// $$w_i = \frac{x_i}{(n+1)^2 \left[L_{n+1}(x_i)\right]^2}$$
///
/// # Arguments
///
/// * `func` - Integrand $f$, a function of a single variable. The weight $e^{-x}$ is
/// absorbed into the quadrature rule; pass $f$ without it.
/// * `n` - Number of quadrature points (polynomial order).
///
/// # Panics
///
/// Panics if `n == 0` (via internal argument check).
///
/// # Examples
///
/// ```
/// use integrate::gauss_quadrature::gauss_laguerre_rule;
///
/// let f = |x: f64| 1.0;
///
/// let n: usize = 100;
///
/// let integral = gauss_laguerre_rule(f, n);
/// ```
///
/// # Resources
///
/// - [Wikipedia: Gauss-Laguerre quadrature](https://en.wikipedia.org/wiki/Gauss%E2%80%93Laguerre_quadrature)
/// Approximate $\int_{-\infty}^{+\infty} f(x)\\,e^{-x^2}\\,dx$ using $n$-point Gauss-Hermite quadrature.
///
/// The $n$-th Hermite polynomial is defined as
///
/// $$H_n(x) = (-1)^n\\, e^{x^2}\\, \frac{\partial^n e^{-x^2}}{\partial x^n}$$
///
/// The quadrature weights evaluated at node $x_i$ (a zero of $H_n$) are
///
/// $$A_i = \frac{2^{n+1}\\, n!\\, \sqrt{\pi}}{\left[H_{n-1}(x_i)\right]^2}$$
///
/// giving the approximation
///
/// $$\int_{-\infty}^{+\infty} f(x)\\,e^{-x^2}\\,dx \approx \sum_{i=1}^{n} A_i\\, f(x_i)$$
///
/// Because $H_n$ is either even or odd, if $x$ is a zero then $-x$ is also a zero
/// and both share the same weight.
///
/// > **Note:** For large $n$ some weights may underflow to zero. Check `stderr` for
/// > any warnings emitted by the node/weight computation.
///
/// # Arguments
///
/// * `func` - Integrand $f$, a function of a single variable. The Gaussian weight
/// $e^{-x^2}$ is absorbed into the rule; pass $f$ without it.
/// * `n` - Number of quadrature points (polynomial order).
///
/// # Panics
///
/// Panics if `n == 0` (via internal argument check).
///
/// # Examples
///
/// ```
/// use integrate::gauss_quadrature::gauss_hermite_rule;
///
/// let f = |x: f64| 1.0;
///
/// let n: usize = 100;
///
/// let integral = gauss_hermite_rule(f, n);
/// ```
///
/// # Resources
///
/// - [Wikipedia: Gauss-Hermite quadrature](https://en.wikipedia.org/wiki/Gauss%E2%80%93Hermite_quadrature)
/// Approximate $\int_{-1}^{1} \frac{f(x)}{\sqrt{1-x^2}}\\,dx$ using $n$-point
/// Gauss-Chebyshev quadrature of the first kind.
///
/// The nodes and weights are
///
/// $$x_i = \cos\left(\frac{(2i-1)\pi}{2n}\right), \qquad w_i = \frac{\pi}{n}$$
///
/// giving the approximation
///
/// $$\int_{-1}^{1} \frac{f(x)}{\sqrt{1-x^2}}\\,dx \approx \frac{\pi}{n}\sum_{i=1}^{n} f(x_i)$$
///
/// All $n$ weights are equal to $\pi/n$.
///
/// # Arguments
///
/// * `func` - Integrand $f$, a function of a single variable. The weight
/// $1/\sqrt{1-x^2}$ is absorbed into the rule; pass $f$ without it.
/// * `n` - Number of quadrature points (polynomial order).
///
/// # Panics
///
/// Panics if `n == 0` (via internal argument check).
///
/// # Examples
///
/// ```
/// use integrate::gauss_quadrature::gauss_first_kind_chebyshev_rule;
///
/// let f = |x: f64| 1.0;
///
/// let n: usize = 100;
///
/// let integral = gauss_first_kind_chebyshev_rule(f, n);
/// ```
/// Approximate $\int_{-1}^{1} f(x)\sqrt{1-x^2}\\,dx$ using $n$-point
/// Gauss-Chebyshev quadrature of the second kind.
///
/// The nodes and weights are
///
/// $$x_i = \cos\left(\frac{i\pi}{n+1}\right), \qquad w_i = \frac{\pi}{n+1}\sin^2\left(\frac{i\pi}{n+1}\right)$$
///
/// giving the approximation
///
/// $$\int_{-1}^{1} f(x)\sqrt{1-x^2}\\,dx \approx \sum_{i=1}^{n} w_i\\, f(x_i)$$
///
/// # Arguments
///
/// * `func` - Integrand $f$, a function of a single variable. The weight
/// $\sqrt{1-x^2}$ is absorbed into the rule; pass $f$ without it.
/// * `n` - Number of quadrature points (polynomial order).
///
/// # Panics
///
/// Panics if `n == 0` (via internal argument check).
///
/// # Examples
///
/// ```
/// use integrate::gauss_quadrature::gauss_second_kind_chebyshev_rule;
///
/// fn f(x: f64) -> f64 {
/// 1.0
/// }
///
/// let n: usize = 100;
///
/// let integral = gauss_second_kind_chebyshev_rule(f, n);
/// ```