nicolasjulioflores / calculus-reasoner

Equational reasoner for calculus
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Some more laws #5

Open sjcjoosten opened 4 years ago

sjcjoosten commented 4 years ago

Here are some laws you could add:

0.0 - x = -x
a * (b / c) = (a * b) / c
(a ^ p) ^ q = a ^ (p*q)
a / (x ^ q) = x ^(-q)
x^p * x^q = x^(p+q)

I'm very impressed by the fact that you can actually calculate (your Transform rules).

Furthermore, don't worry if you can't simplify every possible expression. That would be a near impossible task.