symbolica 2.1.0

A blazing fast computer algebra system
Documentation
1
2
3
4
5
6
7
8
9
10
11
use symbolica::prelude::*;

fn main() {
    let (x, y, f) = symbol!("x", "y", "f");

    let f = function!(f, x, y, 2);

    let xb = (-(y + x + 2) * y * 6).pow(5) / y * f / 4;

    println!("{xb}");
}