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
//! Lambert W functions.
use crateReal;
/// Provides the principal and secondary branches of the [Lambert W function](https://en.wikipedia.org/wiki/Lambert_W_function).
/// These implementations have 50 bits of accuracy.
/// The principal branch of the Lambert W function.
///
/// It is the inverse of the function
///
/// ```math
/// f(w) = we^w
/// ```
///
/// when w >= -1.
///
/// # Arguments
///
/// * `self` >= 0.0
///
/// # Example
///
/// ```
/// use mathru::special::lambert_w::LambertW;
///
/// let x = 1.0;
/// let omega = x.lambert_w0();
/// ```
/// The secondary branch of the Lambert W funciton.
///
/// It is the inverse of
///
/// ```math
/// f(w) = we^w
/// ```
///
/// when w < -1.
///
/// # Arguments
///
/// * -1/e <= `self` < 0.0
///
/// # Example
///
/// ```
/// use mathru::special::lambert_w::LambertW;
///
/// let x = -f64::ln(2.0) / 2.0;
/// let minus_ln_4 = x.lambert_wm1();
/// ```