clifford 0.3.0

Geometric Algebra (Clifford Algebra) for Rust: rotors, motors, PGA for 3D rotations and rigid transforms
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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
//! Domain-specific extensions for Complex number types.
//!
//! This module adds transcendental functions and convenience methods
//! to the generated Complex type that are essential for complex analysis.

use super::generated::types::Complex;
use crate::scalar::Float;
use std::ops::Div;

// ============================================================================
// Complex extensions
// ============================================================================

impl<T: Float> Complex<T> {
    /// Creates the multiplicative identity (1 + 0i).
    ///
    /// # Example
    ///
    /// ```
    /// use clifford::specialized::complex::Complex;
    ///
    /// let one = Complex::<f64>::one();
    /// assert_eq!(one.real(), 1.0);
    /// assert_eq!(one.imag(), 0.0);
    /// ```
    #[inline]
    pub fn one() -> Self {
        Self::new(T::one(), T::zero())
    }

    /// Creates a purely real complex number.
    ///
    /// # Example
    ///
    /// ```
    /// use clifford::specialized::complex::Complex;
    ///
    /// let z = Complex::from_real(3.0);
    /// assert_eq!(z.real(), 3.0);
    /// assert_eq!(z.imag(), 0.0);
    /// ```
    #[inline]
    pub fn from_real(real: T) -> Self {
        Self::new(real, T::zero())
    }

    /// Creates a purely imaginary complex number.
    ///
    /// # Example
    ///
    /// ```
    /// use clifford::specialized::complex::Complex;
    ///
    /// let z = Complex::from_imag(3.0);
    /// assert_eq!(z.real(), 0.0);
    /// assert_eq!(z.imag(), 3.0);
    /// ```
    #[inline]
    pub fn from_imag(imag: T) -> Self {
        Self::new(T::zero(), imag)
    }

    /// Creates the imaginary unit i.
    ///
    /// # Example
    ///
    /// ```
    /// use clifford::specialized::complex::Complex;
    ///
    /// let i = Complex::<f64>::i();
    /// assert_eq!(i.real(), 0.0);
    /// assert_eq!(i.imag(), 1.0);
    /// ```
    #[inline]
    pub fn i() -> Self {
        Self::new(T::zero(), T::one())
    }

    /// Creates a complex number from polar coordinates.
    ///
    /// `z = r * (cos(theta) + i*sin(theta)) = r * e^(i*theta)`
    ///
    /// # Example
    ///
    /// ```
    /// use clifford::specialized::complex::Complex;
    /// use approx::assert_relative_eq;
    /// use std::f64::consts::FRAC_PI_4;
    ///
    /// let z = Complex::from_polar(2.0, FRAC_PI_4);
    /// assert_relative_eq!(z.norm(), 2.0, epsilon = 1e-10);
    /// assert_relative_eq!(z.arg(), FRAC_PI_4, epsilon = 1e-10);
    /// ```
    #[inline]
    pub fn from_polar(r: T, theta: T) -> Self {
        Self::new(r * theta.cos(), r * theta.sin())
    }

    /// Returns the complex conjugate (a - bi for a + bi).
    ///
    /// # Example
    ///
    /// ```
    /// use clifford::specialized::complex::Complex;
    ///
    /// let z = Complex::new(3.0, 4.0);
    /// let conj = z.conjugate();
    /// assert_eq!(conj.real(), 3.0);
    /// assert_eq!(conj.imag(), -4.0);
    /// ```
    #[inline]
    pub fn conjugate(&self) -> Self {
        Self::new(self.real(), -self.imag())
    }

    /// Returns the argument (phase angle) in radians.
    ///
    /// Returns the angle theta such that z = |z| * e^(i*theta).
    /// The result is in the range (-pi, pi].
    ///
    /// # Example
    ///
    /// ```
    /// use clifford::specialized::complex::Complex;
    /// use std::f64::consts::FRAC_PI_4;
    /// use approx::assert_relative_eq;
    ///
    /// let z = Complex::new(1.0, 1.0);
    /// assert_relative_eq!(z.arg(), FRAC_PI_4, epsilon = 1e-10);
    /// ```
    #[inline]
    pub fn arg(&self) -> T {
        self.imag().atan2(self.real())
    }

    /// Returns the complex exponential e^z.
    ///
    /// For z = a + bi: e^z = e^a * (cos(b) + i*sin(b))
    ///
    /// # Example
    ///
    /// ```
    /// use clifford::specialized::complex::Complex;
    /// use approx::assert_relative_eq;
    /// use std::f64::consts::PI;
    ///
    /// // Euler's identity: e^(i*pi) = -1
    /// let z = Complex::new(0.0, PI);
    /// let result = z.exp();
    /// assert_relative_eq!(result.real(), -1.0, epsilon = 1e-10);
    /// assert_relative_eq!(result.imag(), 0.0, epsilon = 1e-10);
    /// ```
    #[inline]
    pub fn exp(&self) -> Self {
        let exp_real = self.real().exp();
        Self::new(exp_real * self.imag().cos(), exp_real * self.imag().sin())
    }

    /// Returns the principal natural logarithm.
    ///
    /// For z = r * e^(i*theta): ln(z) = ln(r) + i*theta
    ///
    /// Note: This is the principal branch with imaginary part in (-pi, pi].
    ///
    /// # Example
    ///
    /// ```
    /// use clifford::specialized::complex::Complex;
    /// use approx::assert_relative_eq;
    ///
    /// let z = Complex::new(1.0, 0.0);
    /// let result = z.ln();
    /// assert_relative_eq!(result.real(), 0.0, epsilon = 1e-10);
    /// assert_relative_eq!(result.imag(), 0.0, epsilon = 1e-10);
    /// ```
    #[inline]
    pub fn ln(&self) -> Self {
        Self::new(self.norm().ln(), self.arg())
    }

    /// Returns the complex sine.
    ///
    /// sin(z) = (e^(iz) - e^(-iz)) / (2i)
    ///
    /// For z = a + bi:
    /// sin(z) = sin(a)*cosh(b) + i*cos(a)*sinh(b)
    ///
    /// # Example
    ///
    /// ```
    /// use clifford::specialized::complex::Complex;
    /// use approx::assert_relative_eq;
    /// use std::f64::consts::FRAC_PI_2;
    ///
    /// let z = Complex::new(FRAC_PI_2, 0.0);
    /// let result = z.sin();
    /// assert_relative_eq!(result.real(), 1.0, epsilon = 1e-10);
    /// assert_relative_eq!(result.imag(), 0.0, epsilon = 1e-10);
    /// ```
    #[inline]
    pub fn sin(&self) -> Self {
        Self::new(
            self.real().sin() * self.imag().cosh(),
            self.real().cos() * self.imag().sinh(),
        )
    }

    /// Returns the complex cosine.
    ///
    /// cos(z) = (e^(iz) + e^(-iz)) / 2
    ///
    /// For z = a + bi:
    /// cos(z) = cos(a)*cosh(b) - i*sin(a)*sinh(b)
    ///
    /// # Example
    ///
    /// ```
    /// use clifford::specialized::complex::Complex;
    /// use approx::assert_relative_eq;
    ///
    /// let z = Complex::new(0.0, 0.0);
    /// let result = z.cos();
    /// assert_relative_eq!(result.real(), 1.0, epsilon = 1e-10);
    /// assert_relative_eq!(result.imag(), 0.0, epsilon = 1e-10);
    /// ```
    #[inline]
    pub fn cos(&self) -> Self {
        Self::new(
            self.real().cos() * self.imag().cosh(),
            -self.real().sin() * self.imag().sinh(),
        )
    }

    /// Returns the principal square root.
    ///
    /// For z = r * e^(i*theta): sqrt(z) = sqrt(r) * e^(i*theta/2)
    ///
    /// # Example
    ///
    /// ```
    /// use clifford::specialized::complex::Complex;
    /// use approx::assert_relative_eq;
    ///
    /// let z = Complex::new(0.0, 1.0); // i
    /// let result = z.sqrt();
    /// // sqrt(i) = (1 + i) / sqrt(2) = 1/sqrt(2) + i/sqrt(2)
    /// let expected = std::f64::consts::FRAC_1_SQRT_2;
    /// assert_relative_eq!(result.real(), expected, epsilon = 1e-10);
    /// assert_relative_eq!(result.imag(), expected, epsilon = 1e-10);
    /// ```
    #[inline]
    pub fn sqrt(&self) -> Self {
        let r = self.norm();
        let theta = self.arg();
        Self::from_polar(r.sqrt(), theta / T::TWO)
    }

    /// Returns z raised to an integer power.
    ///
    /// # Example
    ///
    /// ```
    /// use clifford::specialized::complex::Complex;
    /// use approx::assert_relative_eq;
    ///
    /// let z = Complex::new(0.0, 1.0); // i
    /// let result = z.powi(2);
    /// // i^2 = -1
    /// assert_relative_eq!(result.real(), -1.0, epsilon = 1e-10);
    /// assert_relative_eq!(result.imag(), 0.0, epsilon = 1e-10);
    /// ```
    #[inline]
    pub fn powi(&self, n: i32) -> Self {
        if n == 0 {
            return Self::one();
        }

        let mut result = Self::one();
        let mut base = *self;
        let mut exp = n.unsigned_abs();

        while exp > 0 {
            if exp & 1 == 1 {
                result = result * base;
            }
            base = base * base;
            exp >>= 1;
        }

        if n < 0 { Self::one() / result } else { result }
    }
}

impl<T: Float> Div for Complex<T> {
    type Output = Self;

    /// Divides two complex numbers.
    ///
    /// z1 / z2 = z1 * conj(z2) / |z2|^2
    ///
    /// # Example
    ///
    /// ```
    /// use clifford::specialized::complex::Complex;
    /// use approx::assert_relative_eq;
    ///
    /// let z1 = Complex::new(2.0, 3.0);
    /// let z2 = Complex::new(1.0, 1.0);
    /// let result = z1 / z2;
    /// // (2 + 3i) / (1 + i) = (2 + 3i)(1 - i) / 2 = (5 + i) / 2
    /// assert_relative_eq!(result.real(), 2.5, epsilon = 1e-10);
    /// assert_relative_eq!(result.imag(), 0.5, epsilon = 1e-10);
    /// ```
    #[inline]
    fn div(self, other: Self) -> Self::Output {
        let denom = other.norm_squared();
        let conj = other.conjugate();
        let numer = self * conj;
        Self::new(numer.real() / denom, numer.imag() / denom)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use approx::assert_relative_eq;
    use std::f64::consts::{E, FRAC_PI_2, FRAC_PI_4, PI};

    #[test]
    fn test_one() {
        let one = Complex::<f64>::one();
        assert_eq!(one.real(), 1.0);
        assert_eq!(one.imag(), 0.0);
    }

    #[test]
    fn test_from_polar() {
        let z = Complex::from_polar(2.0, FRAC_PI_4);
        assert_relative_eq!(z.norm(), 2.0, epsilon = 1e-10);
        assert_relative_eq!(z.arg(), FRAC_PI_4, epsilon = 1e-10);
    }

    #[test]
    fn test_conjugate() {
        let z = Complex::new(3.0, 4.0);
        let conj = z.conjugate();
        assert_eq!(conj.real(), 3.0);
        assert_eq!(conj.imag(), -4.0);
    }

    #[test]
    fn test_arg() {
        let z = Complex::new(1.0, 1.0);
        assert_relative_eq!(z.arg(), FRAC_PI_4, epsilon = 1e-10);

        let z2 = Complex::new(-1.0, 0.0);
        assert_relative_eq!(z2.arg(), PI, epsilon = 1e-10);
    }

    #[test]
    fn test_exp_euler() {
        // e^(i*pi) = -1
        let z = Complex::new(0.0, PI);
        let result = z.exp();
        assert_relative_eq!(result.real(), -1.0, epsilon = 1e-10);
        assert_relative_eq!(result.imag(), 0.0, epsilon = 1e-10);
    }

    #[test]
    fn test_exp_real() {
        // e^1 = e
        let z = Complex::new(1.0, 0.0);
        let result = z.exp();
        assert_relative_eq!(result.real(), E, epsilon = 1e-10);
        assert_relative_eq!(result.imag(), 0.0, epsilon = 1e-10);
    }

    #[test]
    fn test_ln() {
        let z = Complex::new(E, 0.0);
        let result = z.ln();
        assert_relative_eq!(result.real(), 1.0, epsilon = 1e-10);
        assert_relative_eq!(result.imag(), 0.0, epsilon = 1e-10);
    }

    #[test]
    fn test_sin() {
        let z = Complex::new(FRAC_PI_2, 0.0);
        let result = z.sin();
        assert_relative_eq!(result.real(), 1.0, epsilon = 1e-10);
        assert_relative_eq!(result.imag(), 0.0, epsilon = 1e-10);
    }

    #[test]
    fn test_cos() {
        let z = Complex::new(0.0, 0.0);
        let result = z.cos();
        assert_relative_eq!(result.real(), 1.0, epsilon = 1e-10);
        assert_relative_eq!(result.imag(), 0.0, epsilon = 1e-10);
    }

    #[test]
    fn test_sqrt() {
        // sqrt(4) = 2
        let z = Complex::new(4.0, 0.0);
        let result = z.sqrt();
        assert_relative_eq!(result.real(), 2.0, epsilon = 1e-10);
        assert_relative_eq!(result.imag(), 0.0, epsilon = 1e-10);
    }

    #[test]
    fn test_sqrt_negative() {
        // sqrt(-1) = i
        let z = Complex::new(-1.0, 0.0);
        let result = z.sqrt();
        assert_relative_eq!(result.real(), 0.0, epsilon = 1e-10);
        assert_relative_eq!(result.imag(), 1.0, epsilon = 1e-10);
    }

    #[test]
    fn test_powi() {
        let z = Complex::new(0.0, 1.0); // i
        let result = z.powi(2);
        assert_relative_eq!(result.real(), -1.0, epsilon = 1e-10);
        assert_relative_eq!(result.imag(), 0.0, epsilon = 1e-10);

        let result4 = z.powi(4);
        assert_relative_eq!(result4.real(), 1.0, epsilon = 1e-10);
        assert_relative_eq!(result4.imag(), 0.0, epsilon = 1e-10);
    }

    #[test]
    fn test_division() {
        let z1 = Complex::new(2.0, 3.0);
        let z2 = Complex::new(1.0, 1.0);
        let result = z1 / z2;
        assert_relative_eq!(result.real(), 2.5, epsilon = 1e-10);
        assert_relative_eq!(result.imag(), 0.5, epsilon = 1e-10);
    }
}