hisab 1.4.0

Higher mathematics library — linear algebra, geometry, calculus, and numerical methods for Rust
Documentation
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
//! Interval arithmetic for verified numerics.
//!
//! An [`Interval`] represents a closed range `[lo, hi]`. Arithmetic operations
//! propagate bounds correctly, guaranteeing that the true result is always
//! contained within the computed interval.

use std::ops;

/// A closed interval `[lo, hi]`.
///
/// All operations maintain the invariant `lo <= hi`.
///
/// # Examples
///
/// ```
/// use hisab::interval::Interval;
///
/// let a = Interval::new(1.0, 3.0);
/// let b = Interval::new(2.0, 4.0);
/// let sum = a + b;
/// assert!((sum.lo() - 3.0).abs() < 1e-12);
/// assert!((sum.hi() - 7.0).abs() < 1e-12);
/// ```
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Interval {
    lo: f64,
    hi: f64,
}

impl Interval {
    /// Create a new interval. Swaps bounds if `lo > hi`.
    #[must_use]
    #[inline]
    pub fn new(a: f64, b: f64) -> Self {
        if a <= b {
            Self { lo: a, hi: b }
        } else {
            Self { lo: b, hi: a }
        }
    }

    /// Create a point interval `[x, x]`.
    #[must_use]
    #[inline]
    pub fn point(x: f64) -> Self {
        Self { lo: x, hi: x }
    }

    /// Lower bound.
    #[must_use]
    #[inline]
    pub fn lo(self) -> f64 {
        self.lo
    }

    /// Upper bound.
    #[must_use]
    #[inline]
    pub fn hi(self) -> f64 {
        self.hi
    }

    /// Width of the interval.
    #[must_use]
    #[inline]
    pub fn width(self) -> f64 {
        self.hi - self.lo
    }

    /// Midpoint of the interval.
    #[must_use]
    #[inline]
    pub fn midpoint(self) -> f64 {
        (self.lo + self.hi) * 0.5
    }

    /// Whether the interval contains a value.
    #[must_use]
    #[inline]
    pub fn contains(self, x: f64) -> bool {
        x >= self.lo && x <= self.hi
    }

    /// Whether this interval overlaps with another.
    #[must_use]
    #[inline]
    pub fn overlaps(self, other: Self) -> bool {
        self.lo <= other.hi && other.lo <= self.hi
    }

    /// Intersection of two intervals, or `None` if disjoint.
    #[must_use]
    #[inline]
    pub fn intersect(self, other: Self) -> Option<Self> {
        let lo = self.lo.max(other.lo);
        let hi = self.hi.min(other.hi);
        if lo <= hi {
            Some(Self { lo, hi })
        } else {
            None
        }
    }

    /// Union (hull) of two intervals — smallest interval containing both.
    #[must_use]
    #[inline]
    pub fn hull(self, other: Self) -> Self {
        Self {
            lo: self.lo.min(other.lo),
            hi: self.hi.max(other.hi),
        }
    }

    /// Whether the interval contains zero.
    #[must_use]
    #[inline]
    pub fn contains_zero(self) -> bool {
        self.lo <= 0.0 && self.hi >= 0.0
    }

    /// Absolute value of the interval.
    #[must_use]
    #[inline]
    pub fn abs(self) -> Self {
        if self.lo >= 0.0 {
            self
        } else if self.hi <= 0.0 {
            Self {
                lo: -self.hi,
                hi: -self.lo,
            }
        } else {
            Self {
                lo: 0.0,
                hi: self.lo.abs().max(self.hi.abs()),
            }
        }
    }

    /// Square of the interval.
    #[must_use]
    #[inline]
    pub fn sqr(self) -> Self {
        if self.lo >= 0.0 {
            Self {
                lo: self.lo * self.lo,
                hi: self.hi * self.hi,
            }
        } else if self.hi <= 0.0 {
            Self {
                lo: self.hi * self.hi,
                hi: self.lo * self.lo,
            }
        } else {
            Self {
                lo: 0.0,
                hi: self.lo.abs().max(self.hi.abs()).powi(2),
            }
        }
    }

    /// Square root of the interval (clamps lo to 0).
    #[must_use]
    #[inline]
    pub fn sqrt(self) -> Self {
        Self {
            lo: self.lo.max(0.0).sqrt(),
            hi: self.hi.max(0.0).sqrt(),
        }
    }
}

impl ops::Add for Interval {
    type Output = Self;
    #[inline]
    fn add(self, rhs: Self) -> Self {
        Self {
            lo: self.lo + rhs.lo,
            hi: self.hi + rhs.hi,
        }
    }
}

impl ops::Sub for Interval {
    type Output = Self;
    #[inline]
    fn sub(self, rhs: Self) -> Self {
        Self {
            lo: self.lo - rhs.hi,
            hi: self.hi - rhs.lo,
        }
    }
}

impl ops::Mul for Interval {
    type Output = Self;
    #[inline]
    fn mul(self, rhs: Self) -> Self {
        let products = [
            self.lo * rhs.lo,
            self.lo * rhs.hi,
            self.hi * rhs.lo,
            self.hi * rhs.hi,
        ];
        let lo = products.iter().copied().fold(f64::INFINITY, f64::min);
        let hi = products.iter().copied().fold(f64::NEG_INFINITY, f64::max);
        Self { lo, hi }
    }
}

impl ops::Div for Interval {
    type Output = Self;
    #[inline]
    fn div(self, rhs: Self) -> Self {
        if rhs.contains_zero() {
            // Division by interval containing zero → [-∞, ∞]
            Self {
                lo: f64::NEG_INFINITY,
                hi: f64::INFINITY,
            }
        } else {
            let inv = Interval::new(1.0 / rhs.hi, 1.0 / rhs.lo);
            self * inv
        }
    }
}

impl ops::Neg for Interval {
    type Output = Self;
    #[inline]
    fn neg(self) -> Self {
        Self {
            lo: -self.hi,
            hi: -self.lo,
        }
    }
}

impl From<f64> for Interval {
    #[inline]
    fn from(val: f64) -> Self {
        Self::point(val)
    }
}

impl std::fmt::Display for Interval {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "[{}, {}]", self.lo, self.hi)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    const EPSILON: f64 = 1e-12;

    fn approx(a: f64, b: f64) -> bool {
        (a - b).abs() < EPSILON
    }

    #[test]
    fn interval_add() {
        let a = Interval::new(1.0, 3.0);
        let b = Interval::new(2.0, 4.0);
        let r = a + b;
        assert!(approx(r.lo(), 3.0));
        assert!(approx(r.hi(), 7.0));
    }

    #[test]
    fn interval_sub() {
        let a = Interval::new(1.0, 3.0);
        let b = Interval::new(2.0, 4.0);
        let r = a - b;
        assert!(approx(r.lo(), -3.0));
        assert!(approx(r.hi(), 1.0));
    }

    #[test]
    fn interval_mul() {
        let a = Interval::new(-2.0, 3.0);
        let b = Interval::new(1.0, 4.0);
        let r = a * b;
        assert!(approx(r.lo(), -8.0));
        assert!(approx(r.hi(), 12.0));
    }

    #[test]
    fn interval_div() {
        let a = Interval::new(1.0, 4.0);
        let b = Interval::new(2.0, 8.0);
        let r = a / b;
        assert!(approx(r.lo(), 0.125));
        assert!(approx(r.hi(), 2.0));
    }

    #[test]
    fn interval_div_by_zero() {
        let a = Interval::new(1.0, 2.0);
        let b = Interval::new(-1.0, 1.0);
        let r = a / b;
        assert!(r.lo().is_infinite());
        assert!(r.hi().is_infinite());
    }

    #[test]
    fn interval_contains() {
        let i = Interval::new(1.0, 5.0);
        assert!(i.contains(3.0));
        assert!(i.contains(1.0));
        assert!(i.contains(5.0));
        assert!(!i.contains(0.0));
        assert!(!i.contains(6.0));
    }

    #[test]
    fn interval_width_midpoint() {
        let i = Interval::new(2.0, 8.0);
        assert!(approx(i.width(), 6.0));
        assert!(approx(i.midpoint(), 5.0));
    }

    #[test]
    fn interval_intersect() {
        let a = Interval::new(1.0, 5.0);
        let b = Interval::new(3.0, 7.0);
        let r = a.intersect(b).unwrap();
        assert!(approx(r.lo(), 3.0));
        assert!(approx(r.hi(), 5.0));

        let c = Interval::new(6.0, 7.0);
        assert!(a.intersect(c).is_none());
    }

    #[test]
    fn interval_hull() {
        let a = Interval::new(1.0, 3.0);
        let b = Interval::new(5.0, 7.0);
        let r = a.hull(b);
        assert!(approx(r.lo(), 1.0));
        assert!(approx(r.hi(), 7.0));
    }

    #[test]
    fn interval_neg() {
        let i = Interval::new(2.0, 5.0);
        let r = -i;
        assert!(approx(r.lo(), -5.0));
        assert!(approx(r.hi(), -2.0));
    }

    #[test]
    fn interval_abs() {
        let i = Interval::new(-3.0, 5.0);
        let r = i.abs();
        assert!(approx(r.lo(), 0.0));
        assert!(approx(r.hi(), 5.0));

        let neg = Interval::new(-5.0, -2.0);
        let r2 = neg.abs();
        assert!(approx(r2.lo, 2.0));
        assert!(approx(r2.hi, 5.0));
    }

    #[test]
    fn interval_sqr() {
        let i = Interval::new(-3.0, 2.0);
        let r = i.sqr();
        assert!(approx(r.lo(), 0.0));
        assert!(approx(r.hi(), 9.0));
    }

    #[test]
    fn interval_sqrt() {
        let i = Interval::new(4.0, 16.0);
        let r = i.sqrt();
        assert!(approx(r.lo(), 2.0));
        assert!(approx(r.hi(), 4.0));
    }

    #[test]
    fn interval_point() {
        let p = Interval::point(3.0);
        assert!(approx(p.width(), 0.0));
        assert!(p.contains(3.0));
    }

    #[test]
    fn interval_display() {
        let i = Interval::new(1.0, 2.0);
        assert_eq!(format!("{i}"), "[1, 2]");
    }

    #[test]
    fn interval_from_f64() {
        let i: Interval = 5.0.into();
        assert!(approx(i.lo(), 5.0));
        assert!(approx(i.hi(), 5.0));
    }

    #[test]
    fn interval_overlaps() {
        let a = Interval::new(1.0, 5.0);
        let b = Interval::new(3.0, 7.0);
        assert!(a.overlaps(b));
        let c = Interval::new(6.0, 8.0);
        assert!(!a.overlaps(c));
    }

    #[test]
    fn interval_swaps_bounds() {
        let i = Interval::new(5.0, 1.0);
        assert!(approx(i.lo(), 1.0));
        assert!(approx(i.hi(), 5.0));
    }
}