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
/*
* SPDX-License-Identifier: MIT
* Copyright (c) 2023 - 2026. The DeepCausality Authors and Contributors. All Rights Reserved.
*/
use crate::;
/// Represents a **Division Algebra** over a `Field`.
///
/// A division algebra is an algebra over a field where every non-zero element `a`
/// has a multiplicative inverse, `a⁻¹`. This means that division is well-defined
/// (though not necessarily commutative or associative).
///
/// This trait is particularly useful for representing number systems like
/// real numbers, complex numbers, and quaternions.
///
/// # Mathematical Definition
///
/// An algebra `A` is a division algebra if for any element `a` in `A` and any
/// non-zero element `b` in `A`, the equations `a = bx` and `a = yb` have unique
/// solutions for `x` and `y`.
///
/// This implies the existence of multiplicative inverses for all non-zero elements.
// Blanket implementation
/// Every `Float` is a division algebra over itself: the conjugate of a real number is
/// itself, the squared norm of `x` is `x*x`, and the inverse is `1/x` (`inf` at zero).
/// A new float type inherits this through `impl Float` — no per-type impl needed.