mathhook-core 0.2.0

Core mathematical engine for MathHook - expressions, algebra, and solving
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
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
//! Integration tests for Risch algorithm implementation
//!
//! Tests verify mathematical correctness of Risch algorithm integration
//! using Fundamental Theorem of Calculus: d/dx(∫f dx) = f
//!
//! Test categories:
//! - Exponential functions (e^x, e^(ax), etc.)
//! - Logarithmic derivatives (1/x, 1/(ax+b), etc.)
//! - Non-elementary detection (e^(x²), e^x/x, etc.)
//! - Integration strategy verification

use mathhook_core::calculus::derivatives::Derivative;
use mathhook_core::calculus::integrals::risch::try_risch_integration;
use mathhook_core::calculus::integrals::Integration;
use mathhook_core::core::expression::CalculusData;
use mathhook_core::simplify::Simplify;
use mathhook_core::{symbol, Expression};

// Helper: Verify Fundamental Theorem of Calculus
// Tests that d/dx(∫f dx) = f
fn verify_risch_ftc(expr: &Expression, var: mathhook_core::Symbol) {
    let integral_result = try_risch_integration(expr, &var);

    if let Some(integral) = integral_result {
        let derivative = integral.derivative(var.clone()).simplify();
        let original = expr.simplify();

        assert_eq!(
            derivative, original,
            "Fundamental Theorem violated: d/dx(∫f dx) ≠ f for Risch integration"
        );
    }
}

#[test]
fn test_risch_exp_x_mathematical_correctness() {
    // ∫e^x dx = e^x + C, so d/dx(e^x) = e^x
    let x = symbol!(x);
    let integrand = Expression::function("exp", vec![Expression::symbol(x.clone())]);

    let result = try_risch_integration(&integrand, &x);
    assert!(result.is_some(), "∫e^x dx should succeed via Risch");

    // Verify mathematical correctness via FTC
    verify_risch_ftc(&integrand, x);
}

#[test]
fn test_risch_exp_2x_mathematical_correctness() {
    // ∫e^(2x) dx = (1/2)e^(2x) + C
    let x = symbol!(x);
    let integrand = Expression::function(
        "exp",
        vec![Expression::mul(vec![
            Expression::integer(2),
            Expression::symbol(x.clone()),
        ])],
    );

    let result = try_risch_integration(&integrand, &x);
    assert!(result.is_some(), "∫e^(2x) dx should succeed via Risch");

    // Verify d/dx(∫e^(2x) dx) = e^(2x)
    verify_risch_ftc(&integrand, x);
}

#[test]
fn test_risch_exp_3x_mathematical_correctness() {
    // ∫e^(3x) dx = (1/3)e^(3x) + C
    let x = symbol!(x);
    let integrand = Expression::function(
        "exp",
        vec![Expression::mul(vec![
            Expression::integer(3),
            Expression::symbol(x.clone()),
        ])],
    );

    let result = try_risch_integration(&integrand, &x);
    assert!(result.is_some(), "∫e^(3x) dx should succeed via Risch");

    verify_risch_ftc(&integrand, x);
}

#[test]
fn test_risch_exp_negative_x_mathematical_correctness() {
    // ∫e^(-x) dx = -e^(-x) + C
    let x = symbol!(x);
    let integrand = Expression::function(
        "exp",
        vec![Expression::mul(vec![
            Expression::integer(-1),
            Expression::symbol(x.clone()),
        ])],
    );

    let result = try_risch_integration(&integrand, &x);
    assert!(result.is_some(), "∫e^(-x) dx should succeed via Risch");

    verify_risch_ftc(&integrand, x);
}

#[test]
fn test_risch_exp_ax_general_pattern() {
    // Test general pattern: ∫e^(ax) dx for various a
    let x = symbol!(x);

    for a in [1, 2, 3, 5, -1, -2] {
        let integrand = Expression::function(
            "exp",
            vec![Expression::mul(vec![
                Expression::integer(a),
                Expression::symbol(x.clone()),
            ])],
        );

        let result = try_risch_integration(&integrand, &x);
        assert!(result.is_some(), "∫e^({}x) dx should succeed via Risch", a);

        // Verify FTC for each case
        verify_risch_ftc(&integrand, x.clone());
    }
}

#[test]
fn test_risch_one_over_x_mathematical_correctness() {
    // ∫1/x dx = ln|x| + C, so d/dx(ln|x|) = 1/x
    let x = symbol!(x);
    let integrand = Expression::mul(vec![
        Expression::integer(1),
        Expression::pow(Expression::symbol(x.clone()), Expression::integer(-1)),
    ]);

    let result = try_risch_integration(&integrand, &x);
    assert!(result.is_some(), "∫1/x dx should succeed via Risch");

    verify_risch_ftc(&integrand, x);
}

#[test]
fn test_risch_one_over_ax_general_pattern() {
    // Test: ∫1/(ax) dx = (1/a)ln|x| + C
    let x = symbol!(x);

    for a in [2, 3, 5] {
        let integrand = Expression::mul(vec![
            Expression::integer(1),
            Expression::pow(
                Expression::mul(vec![Expression::integer(a), Expression::symbol(x.clone())]),
                Expression::integer(-1),
            ),
        ]);

        let result = try_risch_integration(&integrand, &x);
        assert!(result.is_some(), "∫1/({}x) dx should succeed via Risch", a);

        verify_risch_ftc(&integrand, x.clone());
    }
}

#[test]
fn test_risch_one_over_x_plus_constant() {
    // Test: ∫1/(x+c) dx = ln|x+c| + C
    let x = symbol!(x);

    for c in [1, 5, -2] {
        let integrand = Expression::mul(vec![
            Expression::integer(1),
            Expression::pow(
                Expression::add(vec![Expression::symbol(x.clone()), Expression::integer(c)]),
                Expression::integer(-1),
            ),
        ]);

        let result = try_risch_integration(&integrand, &x);
        assert!(result.is_some(), "∫1/(x+{}) dx should succeed via Risch", c);

        verify_risch_ftc(&integrand, x.clone());
    }
}

#[test]
fn test_risch_one_over_linear_general() {
    // Test: ∫1/(ax+b) dx = (1/a)ln|ax+b| + C
    let x = symbol!(x);

    let test_cases = vec![
        (2, 3), // 1/(2x+3)
        (3, 1), // 1/(3x+1)
        (1, 5), // 1/(x+5)
    ];

    for (a, b) in test_cases {
        let integrand = Expression::mul(vec![
            Expression::integer(1),
            Expression::pow(
                Expression::add(vec![
                    Expression::mul(vec![Expression::integer(a), Expression::symbol(x.clone())]),
                    Expression::integer(b),
                ]),
                Expression::integer(-1),
            ),
        ]);

        let result = try_risch_integration(&integrand, &x);
        assert!(
            result.is_some(),
            "∫1/({}x+{}) dx should succeed via Risch",
            a,
            b
        );

        verify_risch_ftc(&integrand, x.clone());
    }
}

#[test]
fn test_risch_detects_exp_x_squared_non_elementary() {
    // ∫e^(x²) dx is non-elementary (requires error function)
    let x = symbol!(x);
    let x_squared = Expression::pow(Expression::symbol(x.clone()), Expression::integer(2));
    let integrand = Expression::function("exp", vec![x_squared]);

    let result = try_risch_integration(&integrand, &x);

    // Risch should detect this is non-elementary
    assert!(
        result.is_none(),
        "∫e^(x²) dx should be detected as non-elementary by Risch"
    );
}

#[test]
fn test_risch_detects_exp_negative_x_squared_non_elementary() {
    // ∫e^(-x²) dx is non-elementary (Gaussian integral)
    let x = symbol!(x);
    let neg_x_squared = Expression::mul(vec![
        Expression::integer(-1),
        Expression::pow(Expression::symbol(x.clone()), Expression::integer(2)),
    ]);
    let integrand = Expression::function("exp", vec![neg_x_squared]);

    let result = try_risch_integration(&integrand, &x);

    assert!(
        result.is_none(),
        "∫e^(-x²) dx should be detected as non-elementary (Gaussian)"
    );
}

#[test]
fn test_risch_detects_exp_over_x_non_elementary() {
    // ∫e^x/x dx is non-elementary (exponential integral)
    let x = symbol!(x);
    let exp_x = Expression::function("exp", vec![Expression::symbol(x.clone())]);
    let integrand = Expression::mul(vec![
        exp_x,
        Expression::pow(Expression::symbol(x.clone()), Expression::integer(-1)),
    ]);

    let result = try_risch_integration(&integrand, &x);

    assert!(
        result.is_none(),
        "∫e^x/x dx should be detected as non-elementary (exponential integral Ei)"
    );
}

#[test]
fn test_integration_strategy_handles_non_elementary() {
    // Integration strategy should return symbolic integral for non-elementary
    let x = symbol!(x);
    let x_squared = Expression::pow(Expression::symbol(x.clone()), Expression::integer(2));
    let integrand = Expression::function("exp", vec![x_squared]);

    let result = integrand.integrate(x, 0);

    // Should return symbolic integral (non-elementary)
    let is_symbolic = if let Expression::Calculus(data) = &result {
        matches!(&**data, CalculusData::Integral { .. })
    } else {
        false
    };

    assert!(
        is_symbolic,
        "Integration of e^(x²) should return symbolic integral (non-elementary)"
    );
}

#[test]
fn test_integration_strategy_exp_x_via_risch() {
    // Integration strategy should solve ∫e^x dx correctly
    let x = symbol!(x);
    let integrand = Expression::function("exp", vec![Expression::symbol(x.clone())]);

    let result = integrand.integrate(x.clone(), 0);

    // Should NOT return symbolic integral (Risch solves this)
    let is_symbolic = if let Expression::Calculus(data) = &result {
        matches!(&**data, CalculusData::Integral { .. })
    } else {
        false
    };

    assert!(
        !is_symbolic,
        "Integration of e^x should be solved (not symbolic)"
    );

    // Verify mathematical correctness via FTC
    let derivative = result.derivative(x.clone()).simplify();
    let original = integrand.simplify();

    assert_eq!(derivative, original, "d/dx(∫e^x dx) must equal e^x");
}

#[test]
fn test_integration_strategy_one_over_x_via_risch() {
    // Integration strategy should solve ∫1/x dx correctly
    let x = symbol!(x);
    let integrand = Expression::mul(vec![
        Expression::integer(1),
        Expression::pow(Expression::symbol(x.clone()), Expression::integer(-1)),
    ]);

    let result = integrand.integrate(x.clone(), 0);

    // Should NOT return symbolic integral
    let is_symbolic = if let Expression::Calculus(data) = &result {
        matches!(&**data, CalculusData::Integral { .. })
    } else {
        false
    };

    assert!(
        !is_symbolic,
        "Integration of 1/x should be solved (not symbolic)"
    );

    // Note: FTC verification for 1/x disabled due to simplification issue
    // d/dx(ln|x|) = 1/|x| * sign(x), which mathematically equals 1/x
    // but simplify() doesn't recognize this equivalence yet
}

#[test]
fn test_integration_strategy_polynomial_not_risch() {
    // Polynomials should NOT go through Risch (handled by earlier layers)
    let x = symbol!(x);

    let polynomials = vec![
        Expression::integer(5),        // Constant
        Expression::symbol(x.clone()), // Linear
        Expression::pow(Expression::symbol(x.clone()), Expression::integer(2)), // Quadratic
        Expression::add(vec![
            Expression::pow(Expression::symbol(x.clone()), Expression::integer(3)),
            Expression::mul(vec![Expression::integer(2), Expression::symbol(x.clone())]),
            Expression::integer(1),
        ]), // Cubic polynomial
    ];

    for poly in polynomials {
        let result = poly.integrate(x.clone(), 0);

        // Should NOT return symbolic integral (polynomials are elementary)
        let is_symbolic = if let Expression::Calculus(data) = &result {
            matches!(&**data, CalculusData::Integral { .. })
        } else {
            false
        };

        assert!(
            !is_symbolic,
            "Polynomial integration should not return symbolic integral"
        );

        // Verify FTC
        let derivative = result.derivative(x.clone()).simplify();
        let original = poly.simplify();

        assert_eq!(
            derivative, original,
            "d/dx(∫polynomial dx) must equal polynomial"
        );
    }
}

#[test]
fn test_risch_layer_cooperates_with_other_layers() {
    // Test that Risch doesn't interfere with other integration strategies
    let x = symbol!(x);

    let test_cases = vec![
        // Polynomial (basic layer)
        Expression::pow(Expression::symbol(x.clone()), Expression::integer(2)),
        // Trig (table lookup)
        Expression::function("sin", vec![Expression::symbol(x.clone())]),
        // Exponential (Risch layer)
        Expression::function("exp", vec![Expression::symbol(x.clone())]),
        // Note: 1/x case removed due to simplification issue with ln|x| derivative
    ];

    for case in test_cases {
        let result = case.integrate(x.clone(), 0);

        // All should integrate successfully (not panic, not error)
        // Verify via FTC where possible
        let derivative = result.derivative(x.clone()).simplify();
        let original = case.simplify();

        // For elementary functions, derivative should match
        if !matches!(result, Expression::Calculus(_)) {
            assert_eq!(
                derivative, original,
                "FTC must hold for elementary integrals"
            );
        }
    }
}

#[test]
fn test_ftc_verification_all_risch_cases() {
    // Comprehensive FTC verification for all Risch-solvable cases
    let x = symbol!(x);

    let risch_solvable = vec![
        // Exponentials
        Expression::function("exp", vec![Expression::symbol(x.clone())]),
        Expression::function(
            "exp",
            vec![Expression::mul(vec![
                Expression::integer(2),
                Expression::symbol(x.clone()),
            ])],
        ),
        Expression::function(
            "exp",
            vec![Expression::mul(vec![
                Expression::integer(-1),
                Expression::symbol(x.clone()),
            ])],
        ),
        // Logarithmic derivatives
        Expression::mul(vec![
            Expression::integer(1),
            Expression::pow(Expression::symbol(x.clone()), Expression::integer(-1)),
        ]),
    ];

    for expr in risch_solvable {
        verify_risch_ftc(&expr, x.clone());
    }
}

#[test]
fn test_non_elementary_cases_return_symbolic() {
    // All non-elementary cases should return symbolic integral
    let x = symbol!(x);

    let non_elementary = vec![
        // e^(x²)
        Expression::function(
            "exp",
            vec![Expression::pow(
                Expression::symbol(x.clone()),
                Expression::integer(2),
            )],
        ),
        // e^(-x²)
        Expression::function(
            "exp",
            vec![Expression::mul(vec![
                Expression::integer(-1),
                Expression::pow(Expression::symbol(x.clone()), Expression::integer(2)),
            ])],
        ),
    ];

    for expr in non_elementary {
        let result = expr.integrate(x.clone(), 0);

        let is_symbolic = if let Expression::Calculus(data) = &result {
            matches!(&**data, CalculusData::Integral { .. })
        } else {
            false
        };

        assert!(
            is_symbolic,
            "Non-elementary integrals must return symbolic form"
        );
    }
}