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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
/*
* SPDX-License-Identifier: MIT
* Copyright (c) 2023 - 2026. The DeepCausality Authors and Contributors. All Rights Reserved.
*/
use crate::;
use ;
use ;
use ;
/// Implements the `Sum` trait for `Octonion`, allowing an iterator of octonions to be summed.
///
/// The sum is performed by iteratively adding each octonion in the iterator.
///
/// # Arguments
/// * `iter` - An iterator that yields `Octonion<F>` values.
///
/// # Returns
/// A single `Octonion` representing the sum of all octonions in the iterator.
/// If the iterator is empty, it returns the zero octonion.
///
/// # Examples
/// ```
/// use deep_causality_num::Octonion;
/// use deep_causality_num::Zero;
///
/// let o1 = Octonion::new(1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0);
/// let o2 = Octonion::new(2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0);
/// let o3 = Octonion::new(3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0);
/// let octonions = vec![o1, o2, o3];
/// let sum: Octonion<f64> = octonions.into_iter().sum();
/// assert_eq!(sum.s, 6.0);
/// assert_eq!(sum.e1, 6.0);
///
/// let empty_vec: Vec<Octonion<f64>> = Vec::new();
/// let empty_sum: Octonion<f64> = empty_vec.into_iter().sum();
/// assert_eq!(empty_sum, Octonion::zero());
/// ```
/// Implements the `Product` trait for `Octonion`, allowing an iterator of octonions to be multiplied.
///
/// The product is performed by iteratively multiplying each octonion in the iterator.
/// Due to non-associativity, the order of multiplication matters. This implementation
/// performs sequential left-to-right multiplication.
///
/// # Arguments
/// * `iter` - An iterator that yields `Octonion<F>` values.
///
/// # Returns
/// A single `Octonion` representing the product of all octonions in the iterator.
/// If the iterator is empty, it returns the identity octonion (1).
///
/// # Examples
/// ```
/// use deep_causality_num::Octonion;
/// use deep_causality_num::One;
///
/// let o_one = Octonion::one();
/// let e1 = Octonion::new(0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
/// let e2 = Octonion::new(0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0);
/// let e3 = Octonion::new(0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0);
///
/// let octonions = vec![o_one, e1, e2];
/// let product: Octonion<f64> = octonions.into_iter().product();
/// assert_eq!(product, e3); // (1 * e1) * e2 = e1 * e2 = e3
///
/// let empty_vec: Vec<Octonion<f64>> = Vec::new();
/// let empty_product: Octonion<f64> = empty_vec.into_iter().product();
/// assert_eq!(empty_product, Octonion::one());
/// ```
/// Implements the addition operator (`+`) for two `Octonion` numbers.
///
/// Octonion addition is performed component-wise:
/// `(s₁ + v₁) + (s₂ + v₂) = (s₁ + s₂) + (v₁ + v₂)`
///
/// # Arguments
/// * `self` - The left-hand side `Octonion`.
/// * `rhs` - The right-hand side `Octonion`.
///
/// # Returns
/// A new `Octonion` representing the sum of `self` and `rhs`.
///
/// # Examples
/// ```
/// use deep_causality_num::Octonion;
///
/// let o1 = Octonion::new(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0);
/// let o2 = Octonion::new(9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0);
/// let sum = o1 + o2;
/// assert_eq!(sum.s, 10.0);
/// assert_eq!(sum.e1, 12.0);
/// // ... and so on for other components
/// ```
/// Implements the addition assignment operator (`+=`) for two `Octonion` numbers.
///
/// Each component of `self` is added to the corresponding component of `other`.
/// `self = self + other`
///
/// # Arguments
/// * `self` - The left-hand side `Octonion` to be modified.
/// * `other` - The right-hand side `Octonion` to add.
///
/// # Examples
/// ```
/// use deep_causality_num::Octonion;
///
/// let mut o1 = Octonion::new(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0);
/// let o2 = Octonion::new(9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0);
/// o1 += o2;
/// assert_eq!(o1.s, 10.0);
/// assert_eq!(o1.e1, 12.0);
/// ```
/// Implements the subtraction operator (`-`) for two `Octonion` numbers.
///
/// Octonion subtraction is performed component-wise:
/// `(s₁ + v₁) - (s₂ + v₂) = (s₁ - s₂) + (v₁ - v₂)`
///
/// # Arguments
/// * `self` - The left-hand side `Octonion`.
/// * `rhs` - The right-hand side `Octonion`.
///
/// # Returns
/// A new `Octonion` representing the difference between `self` and `rhs`.
///
/// # Examples
/// ```
/// use deep_causality_num::Octonion;
///
/// let o1 = Octonion::new(9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0);
/// let o2 = Octonion::new(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0);
/// let diff = o1 - o2;
/// assert_eq!(diff.s, 8.0);
/// assert_eq!(diff.e1, 8.0);
/// // ... and so on for other components
/// ```
/// Implements the subtraction assignment operator (`-=`) for two `Octonion` numbers.
///
/// Each component of `other` is subtracted from the corresponding component of `self`.
/// `self = self - other`
///
/// # Arguments
/// * `self` - The left-hand side `Octonion` to be modified.
/// * `other` - The right-hand side `Octonion` to subtract.
///
/// # Examples
/// ```
/// use deep_causality_num::Octonion;
///
/// let mut o1 = Octonion::new(9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0);
/// let o2 = Octonion::new(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0);
/// o1 -= o2;
/// assert_eq!(o1.s, 8.0);
/// assert_eq!(o1.e1, 8.0);
/// ```
/// Implements the multiplication operator (`*`) for two `Octonion` numbers.
///
/// Octonion multiplication is non-commutative and non-associative, following
/// the rules of the Cayley-Dickson construction. The product is calculated
/// based on the Fano plane relationships between the imaginary units.
///
/// The formula for the product of two octonions `(s₁, e₁, e₂, e₃, e₄, e₅, e₆, e₇)`
/// and `(s₂, f₁, f₂, f₃, f₄, f₅, f₆, f₇)` is complex and involves all components.
///
/// # Arguments
/// * `self` - The left-hand side `Octonion`.
/// * `rhs` - The right-hand side `Octonion`.
///
/// # Returns
/// A new `Octonion` representing the product of `self` and `rhs`.
///
/// # Examples
/// ```
/// use deep_causality_num::Octonion;
/// use deep_causality_num::Zero;
///
/// let e1 = Octonion::new(0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
/// let e2 = Octonion::new(0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0);
/// let e3 = Octonion::new(0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0);
///
/// // Example of non-commutative multiplication
/// assert_eq!(e1 * e2, e3);
/// assert_eq!(e2 * e1, -e3);
///
/// // Example of an imaginary unit squared
/// let neg_one = Octonion::new(-1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
/// assert_eq!(e1 * e1, neg_one);
/// ```
/// Implements the multiplication assignment operator (`*=`) for an `Octonion` and another `Octonion`.
///
/// `self = self * other`
///
/// # Arguments
/// * `self` - The left-hand side `Octonion` to be modified.
/// * `other` - The right-hand side `Octonion` to multiply by.
///
/// # Examples
/// ```
/// use deep_causality_num::Octonion;
/// use deep_causality_num::Zero;
///
/// let mut o = Octonion::new(1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); // 1
/// let e1 = Octonion::new(0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
/// o *= e1; // o becomes e1
/// assert_eq!(o, e1);
/// ```
/// Implements scalar multiplication for an `Octonion` by a scalar of type `F`.
///
/// Each component of the octonion is multiplied by the scalar value.
/// `o * scalar = (s * scalar, e₁ * scalar, ..., e₇ * scalar)`
///
/// # Arguments
/// * `self` - The `Octonion` to be multiplied.
/// * `scalar` - The scalar value of type `F`.
///
/// # Returns
/// A new `Octonion` representing the product of `self` and `scalar`.
///
/// # Examples
/// ```
/// use deep_causality_num::Octonion;
///
/// let o = Octonion::new(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0);
/// let scalar = 2.0;
/// let prod = o * scalar;
/// assert_eq!(prod.s, 2.0);
/// assert_eq!(prod.e1, 4.0);
/// // ... and so on for other components
/// ```
/// Implements scalar multiplication assignment (`*=`) for an `Octonion` by a scalar of type `F`.
///
/// Each component of `self` is multiplied by the `scalar` value.
/// `self = self * scalar`
///
/// # Arguments
/// * `self` - The `Octonion` to be modified.
/// * `scalar` - The scalar value of type `F`.
///
/// # Examples
/// ```
/// use deep_causality_num::Octonion;
///
/// let mut o = Octonion::new(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0);
/// let scalar = 2.0;
/// o *= scalar;
/// assert_eq!(o.s, 2.0);
/// assert_eq!(o.e1, 4.0);
/// ```
/// Implements the division operator (`/`) for two `Octonion` numbers.
///
/// Octonion division is defined as multiplication by the inverse of the divisor:
/// `self / other = self * other.inverse()`.
///
/// Due to the non-associativity of octonions, there are distinct left and right
/// division operations. This implementation performs right division (equivalent to
/// `self * other⁻¹`).
///
/// # Arguments
/// * `self` - The dividend `Octonion`.
/// * `other` - The divisor `Octonion`.
///
/// # Returns
/// A new `Octonion` representing the quotient of `self` divided by `other`.
/// If `other` is a zero octonion, the result will have NaN components.
///
/// # Notes
/// The `clippy::suspicious_arithmetic_impl` lint is allowed here because the
/// implementation delegates to `Mul` and `inverse()`, which correctly handles
/// the complex nature of octonion division.
///
/// # Examples
/// ```
/// use deep_causality_num::Octonion;
/// use deep_causality_num::{One, Zero};
///
/// let o1 = Octonion::new(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0);
/// let o_one = Octonion::one(); // Identity octonion (1 + 0e1 + ...)
/// let result = o1 / o_one;
/// assert_eq!(result, o1);
///
/// // Division of imaginary units
/// let e1 = Octonion::new(0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
/// let e2 = Octonion::new(0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0);
/// let e3 = Octonion::new(0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0);
/// let neg_e3 = -e3;
/// assert_eq!(e1 / e2, neg_e3);
/// ```
/// Implements the division assignment operator (`/=`) for an `Octonion` and another `Octonion`.
///
/// `self = self / other` (right division)
///
/// # Arguments
/// * `self` - The left-hand side `Octonion` to be modified.
/// * `other` - The right-hand side `Octonion` to divide by.
///
/// # Examples
/// ```
/// use deep_causality_num::Octonion;
/// use deep_causality_num::{One, Zero};
///
/// let mut o = Octonion::one(); // 1
/// let e1 = Octonion::new(0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
/// let neg_e1 = -e1;
/// o /= e1; // o becomes 1 / e1 = -e1
/// assert_eq!(o, neg_e1);
/// ```
/// Implements scalar division for an `Octonion` by a scalar of type `F`.
///
/// Each component of the octonion is divided by the scalar value.
/// `o / scalar = (s / scalar, e₁ / scalar, ..., e₇ / scalar)`
///
/// # Arguments
/// * `self` - The `Octonion` to be divided.
/// * `scalar` - The scalar value of type `F`.
///
/// # Returns
/// A new `Octonion` representing the quotient of `self` divided by `scalar`.
/// If `scalar` is zero, the result will have infinite or NaN components.
///
/// # Examples
/// ```
/// use deep_causality_num::Octonion;
///
/// let o = Octonion::new(2.0, 4.0, 6.0, 8.0, 10.0, 12.0, 14.0, 16.0);
/// let scalar = 2.0;
/// let quot = o / scalar;
/// assert_eq!(quot.s, 1.0);
/// assert_eq!(quot.e1, 2.0);
/// // ... and so on for other components
/// ```
/// Implements scalar division assignment (`/=`) for an `Octonion` by a scalar of type `F`.
///
/// Each component of `self` is divided by the `scalar` value.
/// `self = self / scalar`
///
/// # Arguments
/// * `self` - The `Octonion` to be modified.
/// * `scalar` - The scalar value of type `F`.
///
/// # Examples
/// ```
/// use deep_causality_num::Octonion;
///
/// let mut o = Octonion::new(2.0, 4.0, 6.0, 8.0, 10.0, 12.0, 14.0, 16.0);
/// let scalar = 2.0;
/// o /= scalar;
/// assert_eq!(o.s, 1.0);
/// assert_eq!(o.e1, 2.0);
/// ```