next up previous contents
Next: Substitutions - pattern matching Up: Analytical operations Previous: Integration

Ordinary differential equations

 

In Axiom

For comparison with other CAS choose from: Derive Macsyma Maple Mathematica Reduce


inputs outputs

    y:= operator('y);
                                                          Type: BasicOperator

solve(D(y(x), x) + y(x) * sin x/cos x - 1/cos x = 0, y, x)

    [particular= sin(x),basis= [cos(x)]]
Type: Union(Record(particular: Expression Integer,basis: List Expression Integer),...)


Richard Liska